Searched defs:theChar (Results 1 - 2 of 2) sorted by relevance
| /vbox/src/libs/xpcom18a4/xpcom/string/src/ |
| H A D | nsTStringObsolete.cpp | 150 CharT theChar=0; local 196 theChar=*cp++; 197 if(('0'<=theChar) && (theChar<='9')){ 198 result = (theRadix * result) + (theChar-'0'); 201 else if((theChar>='A') && (theChar<='F')) { 216 result = (theRadix * result) + ((theChar-'A')+10); 220 else if((theChar>='a') && (theChar< 318 char_type theChar = *from++; local [all...] |
| H A D | nsStringObsolete.cpp | 117 unsigned char theChar = (unsigned char) aChar; local 118 const char* result=(const char*)memchr(left, (int)theChar, theMax); 207 char theChar=(char)aChar; local 210 if((*rightmost) == theChar) 443 char theChar = *from++; local 445 *to++=theChar; //always copy this char... 447 if((kNotFound!=FindChar1(aSet,aSetLen,0,theChar,aSetLen))){ 449 theChar = *from++; 450 if(kNotFound==FindChar1(aSet,aSetLen,0,theChar,aSetLen)){ 451 *to++ = theChar; 488 PRUnichar theChar = *from++; local 530 char theChar = *from; local 564 PRUnichar theChar = *from; local [all...] |
Completed in 1359 milliseconds