Home
last modified time | relevance | path

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

/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.cpp317 while (back > file_line_info && IsDigit(*back)) --back; in ParseFileLineInfo()
318 if (*back != ':' || !IsDigit(back[1])) break; in ParseFileLineInfo()
H A Dsanitizer_libc.cpp269 while (IsDigit(*nptr)) {
H A Dsanitizer_common.h502 inline bool IsDigit(int c) { in IsDigit() function
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-internal-inl.h1023 if (str.empty() || !IsDigit(str[0])) { in ParseNaturalNumber()
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h2136 bool IsDigit = isDigit(Curr[I]); in RecordParts() local
2137 if (IsDigit != IsDigitPart) { in RecordParts()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1975 inline bool IsDigit(char ch) {
/freebsd/contrib/sqlite3/
H A Dshell.c242 #define IsDigit(X) isdigit((unsigned char)X) macro
1685 if( !IsDigit(*z) ){ in isNumber()
1690 while( IsDigit(*z) ){ z++; } in isNumber()
1693 if( !IsDigit(*z) ) return 0; in isNumber()
1694 while( IsDigit(*z) ){ z++; } in isNumber()
1700 if( !IsDigit(*z) ) return 0; in isNumber()
1701 while( IsDigit(*z) ){ z++; } in isNumber()
1891 while( IsDigit(zArg[0]) ){ in integerValue()
24525 if( (z[0]=='-' || z[0]=='+') && IsDigit(z[1]) ) z++; in testcase_glob()
24526 if( !IsDigit(z[0]) ) return 0; in testcase_glob()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td3016 def IsDigit : LibBuiltin<"ctype.h"> {