Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/googletest/googlemock/src/
H A Dgmock-internal-utils.cc80 (!IsDigit(prev_char) && IsDigit(*p)); in ConvertIdentifierNameToWords()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libcdep.cc276 while (back > file_line_info && IsDigit(*back)) --back; in ParseFileLineInfo()
277 if (*back != ':' || !IsDigit(back[1])) break; in ParseFileLineInfo()
H A Dsanitizer_libc.cc244 while (IsDigit(*nptr)) { in internal_simple_strtoll()
H A Dsanitizer_common.h431 INLINE bool IsDigit(int c) { in IsDigit() function
/freebsd-12.1/contrib/googletest/googletest/src/
H A Dgtest-internal-inl.h976 if (str.empty() || !IsDigit(str[0])) { in ParseNaturalNumber()
/freebsd-12.1/contrib/sqlite3/
H A Dshell.c202 #define IsDigit(X) isdigit((unsigned char)X) macro
600 if( !IsDigit(*z) ){ in isNumber()
605 while( IsDigit(*z) ){ z++; } in isNumber()
608 if( !IsDigit(*z) ) return 0; in isNumber()
609 while( IsDigit(*z) ){ z++; } in isNumber()
615 if( !IsDigit(*z) ) return 0; in isNumber()
616 while( IsDigit(*z) ){ z++; } in isNumber()
776 while( IsDigit(zArg[0]) ){ in integerValue()
13886 if( !IsDigit(z[0]) ) return 0; in testcase_glob()
13888 while( IsDigit(z[0]) ){ z++; } in testcase_glob()
[all …]
/freebsd-12.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2404 inline bool IsDigit(char ch) {