Home
last modified time | relevance | path

Searched refs:IsDigit (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DDILLexer.cpp57 static bool IsDigit(char c) { return '0' <= c && c <= '9'; } in IsDigit() function
66 [](char c) { return IsDigit(c) || IsLetter(c) || c == '_' || c == '$'; }); in IsWord()
67 if (candidate.empty() || IsDigit(candidate[0])) in IsWord()
73 static bool IsNumberBodyChar(char ch) { return IsDigit(ch) || IsLetter(ch); } in IsNumberBodyChar()
77 if (IsDigit(remainder[0])) { in IsNumber()
/freebsd/contrib/googletest/googlemock/src/
H A Dgmock-internal-utils.cc89 (!IsDigit(prev_char) && IsDigit(*p)); in ConvertIdentifierNameToWords()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libcdep.cpp321 while (back > file_line_info && IsDigit(*back)) --back; in ParseFileLineInfo()
322 if (*back != ':' || !IsDigit(back[1])) in ParseFileLineInfo()
H A Dsanitizer_libc.cpp269 while (IsDigit(*nptr)) {
H A Dsanitizer_common.h512 inline bool IsDigit(int c) { in IsDigit() function
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-internal-inl.h1027 if (str.empty() || !IsDigit(str[0])) { in ParseNaturalNumber()
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h2120 bool IsDigit = isDigit(Curr[I]); in RecordParts() local
2121 if (IsDigit != IsDigitPart) { in RecordParts()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1943 inline bool IsDigit(char ch) {
/freebsd/contrib/sqlite3/
H A Dshell.c237 #define IsDigit(X) isdigit((unsigned char)X) macro
1237 if( !IsDigit(*z) ){ in isNumber()
1242 while( IsDigit(*z) ){ z++; } in isNumber()
1245 if( !IsDigit(*z) ) return 0; in isNumber()
1246 while( IsDigit(*z) ){ z++; } in isNumber()
1252 if( !IsDigit(*z) ) return 0; in isNumber()
1253 while( IsDigit(*z) ){ z++; } in isNumber()
1443 while( IsDigit(zArg[0]) ){ in integerValue()
27232 if( (z[0]=='-' || z[0]=='+') && IsDigit(z[1]) ) z++; in testcase_glob()
27233 if( !IsDigit(z[0]) ) return 0; in testcase_glob()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td3169 def IsDigit : LibBuiltin<"ctype.h"> {