Searched refs:aRadix (Results 1 - 3 of 3) sorted by relevance
/vbox/src/libs/xpcom18a4/xpcom/string/src/ |
H A D | nsTStringObsolete.cpp | 144 nsTString_CharT::ToInteger( PRInt32* aErrorCode, PRUint32 aRadix ) const 147 PRInt32 theRadix=10; // base 10 unless base 16 detected, or overriden (aRadix != kAutoDetect) 189 if (aRadix!=kAutoDetect) theRadix = aRadix; // override 203 if(kAutoDetect==aRadix){ 222 if(kAutoDetect==aRadix){
|
H A D | nsStringObsolete.cpp | 1224 nsCString::AppendInt( PRInt32 aInteger, PRInt32 aRadix ) 1228 switch (aRadix) { 1236 NS_ASSERTION(aRadix == 16, "Invalid radix!"); 1244 nsString::AppendInt( PRInt32 aInteger, PRInt32 aRadix ) 1248 switch (aRadix) { 1256 NS_ASSERTION(aRadix == 16, "Invalid radix!"); 1264 nsCString::AppendInt( PRInt64 aInteger, PRInt32 aRadix ) 1268 switch (aRadix) { 1276 NS_ASSERTION(aRadix == 16, "Invalid radix!"); 1284 nsString::AppendInt( PRInt64 aInteger, PRInt32 aRadix ) [all...] |
/vbox/src/libs/xpcom18a4/xpcom/string/public/ |
H A D | nsTString.h | 289 * @param aRadix tells us which radix to assume; kAutoDetect tells us to determine the radix for you. 292 NS_COM PRInt32 ToInteger( PRInt32* aErrorCode, PRUint32 aRadix=kRadix10 ) const; 409 NS_COM void AppendInt( PRInt32 aInteger, PRInt32 aRadix=kRadix10 ); //radix=8,10 or 16 414 inline void AppendInt( PRUint32 aInteger, PRInt32 aRadix = kRadix10 ) 416 AppendInt(PRInt32(aInteger), aRadix); local 422 * @param aRadix The radix to use; can be 8, 10 or 16. 424 NS_COM void AppendInt( PRInt64 aInteger, PRInt32 aRadix=kRadix10 );
|
Completed in 72 milliseconds