Ehsan Akhgari
|
8c296bbcd4
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
|
Boris Zbarsky
|
6eb7534148
|
Bug 753517 part 1. Make GetParentObject() on CSS declarations return a useful nsINode if possible. r=peterv,dbaron
|
2012-08-05 22:14:52 -04:00 |
|
Cameron McCormack
|
78727e2c15
|
Bug 649740 - Implement @supports. r=dbaron,bz
|
2012-08-02 10:32:12 +10:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Gervase Markham
|
87620f5676
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Nicholas Nethercote
|
4f29e66f41
|
Bug 671299 (part 3) - Add style sheet memory reporters. r=dbaron.
|
2012-01-02 18:19:14 -08:00 |
|
Matheus Kerschbaum ext:(%2C%20L.%20David%20Baron%20%3Cdbaron%40dbaron.org%3E)
|
6469811981
|
Bug 664924 - Remove MOZ_CSS_ANIMATIONS ifdefs. r=dbaron
|
2011-06-20 16:47:09 -07:00 |
|
Craig Topper
|
17b6db1001
|
Bug 648925 - Part 4: DeCOMtaminate GetDOMRule and GetDOMRuleWeak. r=bzbarsky
|
2011-04-07 23:36:09 -07:00 |
|
Craig Topper
|
94aa5754fd
|
Bug 648925 - Part 3: Factor some common method bodies into css::Rule. r=bzbarsky
|
2011-04-11 19:46:35 -07:00 |
|
Craig Topper
|
6cca47869f
|
Bug 648925 - Part 2: Make several css::Rule methods non-virtual and inline. r=bzbarsky
|
2011-04-07 20:51:25 -07:00 |
|
Craig Topper
|
cc15a2a6e3
|
Bug 648925 - Part 1: Change uses of nsICSSRule to css::Rule. r=bzbarsky
|
2011-04-07 18:23:46 -07:00 |
|
Craig Topper
|
a32fd499a0
|
Bug 577976 - Part 5: Remove AddRef from GetStyleSheet, r=bzbarsky
|
2010-08-07 22:33:15 -07:00 |
|
Craig Topper
|
a5784bd2e2
|
Bug 577976 - Part 4: Move AddRef/Release back to nsCSSRule, r=bzbarsky
|
2011-03-17 22:18:08 -07:00 |
|
Craig Topper
|
f9a52c2641
|
Bug 577976 - Part 3: Rename nsCSSRule and put in css namespace, r=bzbarsky
--HG--
rename : layout/style/nsCSSRule.h => layout/style/Rule.h
|
2011-03-06 19:59:03 -08:00 |
|