Searched refs:isDigit (Results 1 – 17 of 17) sorted by relevance
/external/opencore/protocols/http_parcom/src/ |
D | http_parser.cpp | 35 inline bool isDigit(const char c) in isDigit() function 42 return (isDigit(c) || (c >= 65 && c <= 70) || (c >= 97 && c <= 102)); // 0-9, A-F or a-f in isHexDigit() 263 while (!isDigit(*ptr) && len > 0) in parseContentRange() 270 while (isDigit(*ptr) && len > 0) in parseContentRange() 278 while (!isDigit(*ptr) && len > 0) in parseContentRange() 285 while (isDigit(*ptr) && len > 0) in parseContentRange() 293 while (!isDigit(*ptr) && len > 0) in parseContentRange() 300 while (isDigit(*ptr) && len > 0) in parseContentRange() 1079 while (!isDigit(*ptr) && len > 0) in parseFirstLine() 1087 while (isDigit(*ptr) && len > 0) in parseFirstLine()
|
/external/webkit/JavaScriptCore/wtf/unicode/wince/ |
D | UnicodeWince.cpp | 69 bool isDigit(wchar_t c) in isDigit() function
|
D | UnicodeWince.h | 166 bool isDigit(wchar_t);
|
/external/icu4c/test/intltest/ |
D | wbnf.cpp | 34 static inline UBool isDigit(char c) {return isInList(c, DIGIT_CHAR);} in isDigit() function 858 } else if (isDigit(c)){ state = IN_NUM; token.append(c); in getNextToken() 864 if (isDigit(c)){ in getNextToken() 879 if (isAlphabet(c) || isDigit(c)){ in getNextToken() 896 } else if (isAlphabet(c) || isDigit(c)){ in getNextToken()
|
/external/webkit/JavaScriptCore/wtf/unicode/glib/ |
D | UnicodeGLib.h | 170 inline bool isDigit(UChar32 c) in isDigit() function
|
/external/icu4c/test/perf/charperf/ |
D | charperf.h | 134 inline void isDigit(UChar32 ch) in isDigit() function
|
D | charperf.cpp | 143 return new CharPerfFunction(isDigit, MIN_, MAX_); in TestIsDigit()
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
D | HTMLScanner.java | 444 else if (theState == S_NCR && Character.isDigit(ch1)) { in scan() 448 else if (theState == S_XNCR && (Character.isDigit(ch1) || "abcdefABCDEF".indexOf(ch1) != -1)) { in scan()
|
D | Parser.java | 574 Character.isDigit(ch) || in expandEntities() 1086 else if (Character.isDigit(ch) || ch == '-' || ch == '.') { in makeName()
|
/external/proguard/src/proguard/obfuscate/ |
D | ClassObfuscator.java | 232 if (!Character.isDigit(innerClassName.charAt(index))) in isNumericClassName()
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog | 337 (WTF::Unicode::isDigit):
|
D | ChangeLog-2007-10-14 | 5503 (WTF::Unicode::isDigit): 6166 (WTF::Unicode::isDigit): 6200 (WTF::Unicode::isDigit): 7894 (WTF::Unicode::isDigit):
|
D | ChangeLog-2009-06-16 | 1902 (WTF::Unicode::isDigit): 29361 * wtf/unicode/icu/UnicodeIcu.h: Removed isDigit, digitValue, and isFormatChar.
|
/external/webkit/WebCore/ |
D | ChangeLog-2005-08-23 | 16220 (QChar::isDigit): Changed to call u_isdigit when non-ASCII. We should probably phase 16224 we always want to call isDigit instead. 51090 (QChar::isDigit): Add inline section for ASCII.
|
D | ChangeLog-2006-05-10 | 322 isDigit, isLetter, isNumber, isLetterOrNumber, isPunct, digitValue, and direction functions.
|
D | ChangeLog-2009-06-16 | 78980 Unicode::isDigit, since non-ASCII digits are not valid here. 78985 of Unicode::isDigit, since non-ASCII digits are not valid.
|
D | ChangeLog-2007-10-14 | 6401 Test: fast/css/hexColor-isDigit-assert.html
|