HomeSort by: relevance | last modified time | path
    Searched defs:isDigit (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl2/groff/dist/src/preproc/html/
pushback.cpp 218 * isDigit - returns TRUE if the character, ch, is a digit.
221 static int isDigit (char ch)
233 return( (isDigit(ch)) || ((ch>='a') && (ch<='f')) );
257 while (isDigit(ch)) {
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
CharInfo.h 93 LLVM_READONLY inline bool isDigit(unsigned char c) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringExtras.h 88 inline bool isDigit(char C) { return C >= '0' && C <= '9'; }
100 inline bool isAlnum(char C) { return isAlpha(C) || isDigit(C); }
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
RustDemangle.cpp 81 static inline bool isDigit(const char C) { return '0' <= C && C <= '9'; }
93 return isDigit(C) || isLower(C) || isUpper(C) || C == '_';
696 } else if (isDigit(C)) {
726 if (!isDigit(C)) {
738 while (isDigit(look())) {
772 if (isDigit(C))

Completed in 19 milliseconds