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.c274 #define IsDigit(X) isdigit((unsigned char)X) macro
24424 while( IsDigit(zArg[0]) ){ in integerValue()
29261 if( (z[0]=='-' || z[0]=='+') && IsDigit(z[1]) ) z++; in testcase_glob()
29262 if( !IsDigit(z[0]) ) return 0; in testcase_glob()
29264 while( IsDigit(z[0]) ){ z++; } in testcase_glob()
31772 k = zW[0]=='-' && IsDigit(zW[1]); in dotCmdMode()
31773 while( IsDigit(zW[k]) ){ in dotCmdMode()
32681 }else if( nArg==2 && IsDigit(azArg[1][0]) && azArg[1][1]==0 ){ in do_meta_command()
32690 && IsDigit(azArg[2][0]) && azArg[2][1]==0 ){ in do_meta_command()
35023 if( (z[0]=='+'|| z[0]=='-') && !IsDigit(z[1]) ){ in do_meta_command()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td3169 def IsDigit : LibBuiltin<"ctype.h"> {