gecko/toolkit/xre
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
..
test Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted 2012-08-04 20:26:44 +02:00
CreateAppData.cpp Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
EventTracer.cpp Bug 720778 - Important threads should have a name for better debugability, r=bsmith, sr=bsmedberg+glandium 2012-06-12 19:06:20 +02:00
EventTracer.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
glxtest.cpp Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
MacApplicationDelegate.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
MacApplicationDelegate.mm Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
MacAutoreleasePool.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
MacAutoreleasePool.mm Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
MacLaunchHelper.h Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
MacLaunchHelper.mm Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
MacQuirks.h Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
make-platformini.py Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
Makefile.in Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted 2012-08-04 20:26:44 +02:00
MozMeegoAppService.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsAndroidStartup.cpp Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
nsAppRunner.cpp Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
nsAppRunner.h Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
nsCommandLineServiceMac.cpp Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsCommandLineServiceMac.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsConsoleWriter.cpp Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
nsEmbedFunctions.cpp Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
nsINativeAppSupport.idl Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsIWinAppHelper.idl Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsNativeAppSupportBase.cpp Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsNativeAppSupportBase.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsNativeAppSupportCocoa.mm Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
nsNativeAppSupportDefault.cpp Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsNativeAppSupportOS2.cpp Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
nsNativeAppSupportOS2.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsNativeAppSupportQt.cpp Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
nsNativeAppSupportQt.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsNativeAppSupportUnix.cpp Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
nsNativeAppSupportWin.cpp Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
nsNativeAppSupportWin.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsQAppInstance.cpp Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsQAppInstance.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsSigHandlers.cpp Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
nsSigHandlers.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsUpdateDriver.cpp Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
nsUpdateDriver.h Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
nsWindowsDllBlocklist.cpp Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
nsWindowsDllInterceptor.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsWindowsRestart.cpp Bug 307181 - Stage Firefox updates in the background after they're downloaded, and replace the application directory on restart; r=rstrong,bbondy 2012-05-22 10:50:04 -04:00
nsWindowsWMain.cpp Bug 658848 - Clean up XRE_WANT_DLL_BLOCKLIST. r=bsmedberg 2012-05-22 08:46:17 +02:00
nsX11ErrorHandler.cpp Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
nsX11ErrorHandler.h Bug 716478 - update licence to MPL 2. 2012-05-21 12:12:37 +01:00
nsXREDirProvider.cpp Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg 2012-08-22 11:56:38 -04:00
nsXREDirProvider.h Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
ProfileReset.cpp Bug 777292 part 2 - Change all nsnull to nullptr 2012-07-30 17:20:58 +03:00
ProfileReset.h Bug 749930 - Replace uses of nsILocalFile with nsIFile (compiled code only); r=bsmedberg 2012-06-06 14:08:30 +12:00