HomeSort by: relevance | last modified time | path
    Searched refs:isDigit (Results 1 - 25 of 39) sorted by relevancy

1 2

  /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/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))
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmLexer.cpp 79 while (isDigit(*CurPtr))
92 while (isDigit(*CurPtr))
137 while (isDigit(*CurPtr))
155 if (CurPtr[-1] == '.' && isDigit(*CurPtr)) {
157 while (isDigit(*CurPtr))
269 if (isDigit(*LookAhead)) {
329 if (LexMasmIntegers && isdigit(CurPtr[-1])) {
492 if (!isDigit(CurPtr[0])) {
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
LayoutOverrideSource.cpp 131 while (!LineStr.empty() && isDigit(LineStr[0])) {
134 while (Idx < LineStr.size() && isDigit(LineStr[Idx]))
  /src/external/apache2/llvm/dist/llvm/lib/Support/
StringRef.cpp 67 if (isDigit(Data[I]) && isDigit(RHS.Data[I])) {
72 bool ld = J < Length && isDigit(Data[J]);
73 bool rd = J < RHS.Length && isDigit(RHS.Data[J]);
402 if (Str[0] == '0' && Str.size() > 1 && isDigit(Str[1])) {
Triple.cpp 1050 assert(!Str.empty() && isDigit(Str[0]) && "Not a number");
1059 } while (!Str.empty() && isDigit(Str[0]));
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/format/
spec.d 45 import std.ascii : isDigit;
374 if (isDigit(trailing[++i]))
436 else if (isDigit(trailing[i]))
459 if (isDigit(trailing[++i]))
483 else if (isDigit(trailing[i]))
  /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/clang/lib/AST/
CommentLexer.cpp 32 return isDigit(C);
Stmt.cpp 696 if (isDigit(EscapedChar)) {
701 while (CurPtr != StrEnd && isDigit(*CurPtr))
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Diagnostic.cpp 581 if (!isDigit(*I) && !isPunctuation(*I)) {
582 for (I++; I != E && !isDigit(*I) && *I != '{'; I++) ;
848 if (!isDigit(DiagStr[0])) {
867 assert(isDigit(*DiagStr) && "Invalid format for argument in diagnostic");
875 assert(*DiagStr == ',' && isDigit(*(DiagStr + 1)) &&
TargetInfo.cpp 502 if (isDigit(Name[0])) {
545 if (isDigit(Name[0])) {
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/Arch/
RISCV.cpp 89 Major = std::string(In.take_while(isDigit));
93 Minor = std::string(In.take_while(isDigit));
198 auto Pos = Ext.find_if(isDigit);
  /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/clang/include/clang/Lex/
LiteralSupport.h 162 while (ptr != ThisTokEnd && (isDigit(*ptr) || isDigitSeparator(*ptr)))
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/format/internal/
read.d 27 import std.ascii : isDigit;
38 while (!input.empty && isDigit(input.front)) input.popFront();
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
parser.d 594 while (std.ascii.isDigit(front))
681 front == '_' || std.ascii.isDigit(front)))
801 enforce(std.ascii.isDigit(front), "First number required in repetition");
808 if (std.ascii.isDigit(front))
975 while (nref < maxBackref && !empty && std.ascii.isDigit(front))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 194 while (isDigit(*IDEnd))
362 while (isDigit(*IDEnd))
  /src/external/apache2/llvm/dist/clang/lib/Lex/
TokenConcatenation.cpp 269 isDigit(FirstChar) ||
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
demangle.d 136 static bool isDigit( char val )
382 if ( isDigit( val ) || val == '_' )
389 return isDigit( val ); // identifier ref
545 while ( isDigit( front ) )
617 if ( '_' != e && !isAlpha( e ) && !isDigit( e ) )
1722 if ( isDigit( front ) && isDigit( peek( 1 ) ) )
1769 if ( isDigit( buf[pos] ) )
1775 isDigit( buf[pos] );
1792 if ( isDigit( front )
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
json.d 934 import std.ascii : isDigit, isHexDigit, toUpper, toLower;
1081 val += (isDigit(hex) ? hex - '0' : hex - ('A' - 10)) << (4 * i);
1264 if (!isDigit(c)) error("Digit expected");
1268 if (isDigit(peekChar()))
1285 if (isDigit(peekChar()))
xml.d 219 bool isDigit(dchar c) @safe @nogc pure nothrow
232 assert(isDigit(c) == lookup(DigitTable, c));
2259 if (c == '-' || c == '.' || isDigit(c)
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULibFunc.cpp 483 while (!s.empty() && isDigit(s.front())) {
604 if (isDigit(TC)) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 1926 bool IsDigitPart = isDigit(Curr[0]);
1928 bool IsDigit = isDigit(Curr[I]);
1929 if (IsDigit != IsDigitPart) {
1933 IsDigitPart = isDigit(Curr[I]);
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
MSVC.cpp 939 while (*sp && !isDigit(*sp))
944 while (*ep && (isDigit(*ep) || (*ep == '.')))
1418 if (I + 1 != E && isdigit(OptStr[I + 1])) {

Completed in 87 milliseconds

1 2