Ehsan Akhgari
|
e368dc9c85
|
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 |
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
Ehsan Akhgari
|
d0798fee41
|
Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (startupcache parts); r=jrmuizel
|
2012-06-19 23:45:32 -04:00 |
Geoff Lankow
|
5cefea8480
|
Bug 749930 - Replace uses of nsILocalFile with nsIFile (compiled code only); r=bsmedberg
|
2012-06-06 14:08:30 +12:00 |
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
Nathan Froyd
|
512a941bbe
|
Bug 711297 - add recordAgesAlways method to nsIStartupCache; r=mwu
|
2012-02-22 14:07:18 -05:00 |
Nathan Froyd
|
5a474e9e60
|
Bug 711297 - report age of startup cache via telemetry; r=taras
|
2012-02-22 14:03:52 -05:00 |
Vladan Djeric
|
54ef9cac4b
|
Backed out aef22bc75f1f (bug 711297) - wrong comment in commit
|
2012-02-22 14:02:02 -05:00 |
Nathan Froyd
|
8440bcee3d
|
Bug 711297 - add recordAgesAlways method to nsIStartupCache; r=mwu
|
2012-02-22 13:45:56 -05:00 |
Nicholas Nethercote
|
7559a70a04
|
Bug 715453 - Remove computedSize from nsMallocSizeOfFun. r=jlebar,bhackett.
--HG--
extra : rebase_source : a65039a407daab45360a5b375b53cbf1bc05b7f6
|
2012-01-25 00:52:51 -08:00 |
Nicholas Nethercote
|
9dc2c72bd7
|
Bug 697335 - Another memory reporter for the startup cache. r=taras.
|
2011-12-18 16:20:36 -08:00 |
Mike Hommey
|
cd155f464b
|
Bug 695843 part 1 - Add Refcounting on nsZipArchives. r=mwu
|
2011-12-08 11:03:36 +01:00 |
Nicholas Nethercote
|
0ee9052aba
|
Bug 696690 - Memory reporter for the startup cache. r=tglek.
|
2011-10-24 17:50:47 -07:00 |
Michael Wu
|
d2b70213ac
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
|
2011-09-28 23:19:26 -07:00 |
Taras Glek
|
76cf7b4738
|
Bug 586859: Move startup cache writing off main thread r=cjones a=blocking-final
|
2011-01-07 10:56:15 -08:00 |
Taras Glek
|
79248ff22d
|
Bug 586859: prepare startup cache for off-main thread writing r=dwitte a=blocking-final
|
2011-01-07 10:55:14 -08:00 |
bhsieh@mozilla.com
|
df2049724f
|
bug 520309, startupcache core r=dwitte sr=bsmedberg a=bsmedberg
|
2010-08-12 12:37:44 -07:00 |