Searched defs:isASCIIDigit (Results 1 – 2 of 2) sorted by relevance
70 inline bool isASCIIDigit(char c) { return (c >= '0') & (c <= '9'); } in isASCIIDigit() function71 inline bool isASCIIDigit(unsigned short c) { return (c >= '0') & (c <= '9'); } in isASCIIDigit() function73 inline bool isASCIIDigit(wchar_t c) { return (c >= '0') & (c <= '9'); } in isASCIIDigit() function75 inline bool isASCIIDigit(int c) { return (c >= '0') & (c <= '9'); } in isASCIIDigit() function76 inline bool isASCIIDigit(unsigned c) { return (c >= '0') & (c <= '9'); } in isASCIIDigit() function
1094 private boolean isASCIIDigit(char c) in isASCIIDigit() method in ToHTMLStream