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 |
|
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 |
|
Ehsan Akhgari
|
2a602a5685
|
Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
|
2011-10-17 10:59:28 -04:00 |
|
Michael Wu
|
d8e503c38b
|
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 |
|
Brian Birtles
|
a819b6b88c
|
Bug 682184 part 2 - Add nsSMILTimeValue::IsResolved; r=dholbert
|
2011-09-07 09:20:40 +09:00 |
|
Brian Birtles
|
08eeeda336
|
Bug 682184 part 1 - Rename nsSMILTimeValue::IsResolved to IsDefinite; r=dholbert
|
2011-09-07 09:20:40 +09:00 |
|
Brian Birtles
|
1ffb9cb392
|
Bug 663288 - Don't allow instance times to be self-dependent, r=dholbert
|
2011-06-22 10:12:35 +09:00 |
|
Brian Birtles
|
df2767992e
|
Bug 650732 - Move interval change notifications into the timed element, r=dholbert
|
2011-06-15 09:16:57 +09:00 |
|
Brian Birtles
|
916969013c
|
Bug 492458 - SVG SMIL: Implement backwards seeking - Part 1 - interval and instance time filtering. r=dholbert, sr=roc
|
2010-07-03 14:52:50 +09:00 |
|
Brian Birtles
|
f77b800cad
|
Bug 554141 - SVG SMIL: Fix crash with orphaned unresolved begin times, r=roc
--HG--
extra : rebase_source : 82f7d0cdf89a543b4a07e126157096a47465de8e
|
2010-05-21 09:18:29 +09:00 |
|
Daniel Holbert
|
639df98604
|
Bug 537361 followup: Address review suggestions. r=birtles
|
2010-03-01 11:31:52 -08:00 |
|
Brian Birtles
|
23c0fb4d3c
|
Bug 537361: Store SMIL intervals with state for restoring. r=dholbert
|
2010-03-01 11:31:50 -08:00 |
|