Ehsan Akhgari
|
243c878d26
|
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
|
8b4a23fc4c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Masatoshi Kimura
|
666faade1c
|
Bug 743888 - Part 1: Remove SVGException and XPathException. r=jonas
|
2012-06-13 21:12:37 -04:00 |
|
Gervase Markham
|
cb6a072c2a
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Masatoshi Kimura
|
3e6e227f79
|
Bug 744910 - Remove FileException from workers. r=bent
|
2012-04-24 19:50:00 -04:00 |
|
Matt Brubeck
|
5dba9a6481
|
Back out a0bc511b1d75 (bug 744910) and c85d6a254baa (bug 673752) on suspicion of causing Win debug "make check" hangs
|
2012-04-24 20:47:13 -07:00 |
|
Masatoshi Kimura
|
c475039a40
|
Bug 744910 - Remove FileException from workers. r=bent
|
2012-04-24 19:50:00 -04:00 |
|
Masatoshi Kimura
|
26c22ec399
|
Bug 730161 - Replace IDBDatabaseException and FileException with DOMException. r=sicking
|
2012-04-11 17:55:21 -04:00 |
|
Aryeh Gregor
|
7d05f10c9e
|
Bug 711047 Part 2 - Remove RangeException in favor of DOMException. r=sicking
|
2012-03-01 13:35:48 -05:00 |
|
Ms2ger
|
08ce099174
|
Bug 687486 - Throw INVALID_STATE_ERR when dispatching uninitialized events; r=smaug
|
2011-10-09 20:23:13 +02:00 |
|
Ed Morley
|
6e443492c7
|
Bug 614515 - Remove MOZ_SVG conditions. r=roc
|
2011-05-30 09:34:50 +02:00 |
|
Olli Pettay
|
e7bda5af97
|
Bug 641477 - Throw UNSPECIFIED_EVENT_TYPE_ERR if event isn't initialized before dispatching, r=sicking
|
2011-03-24 13:34:03 +02:00 |
|
Ben Turner
|
98b3bf5b24
|
Bug 601774 - 'IndexedDB: Audit exceptions thrown from indexedDB methods'. r=sicking, a=blocking+
|
2010-11-10 15:25:44 -08:00 |
|
Benjamin Smedberg
|
28a78c0c2c
|
Bug 481102 - Reorganize dom/public, dom/public/base, and dom/src/base to dom/base, r+sr=jst
|
2009-03-11 10:10:19 -04:00 |
|