Home
last modified time | relevance | path

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

/freebsd/contrib/googletest/googletest/src/
H A Dgtest-typed-test.cc44 while (IsSpace(*str)) str++; in SkipSpaces()
H A Dgtest.cc1970 for (; message_length && IsSpace(error_text[message_length - 1]); in HRESULTFailureHelper()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libc.cpp257 while (IsSpace(*nptr)) nptr++; in internal_simple_strtoll()
H A Dsanitizer_common.h508 inline bool IsSpace(int c) { in IsSpace() function
H A Dsanitizer_common_interceptors.inc3718 while (IsSpace(*nptr)) nptr++;
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1949 inline bool IsSpace(char ch) {
1985 while (it != str.begin() && IsSpace(*--it)) it = str.erase(it);
H A Dgtest-internal.h632 while (IsSpace(*(++comma))) { in GTEST_DISABLE_MSC_WARNINGS_POP_()
/freebsd/contrib/sqlite3/
H A Dshell.c273 #define IsSpace(X) isspace((unsigned char)X) macro
5773 #ifndef IsSpace
5774 #define IsSpace(X) isspace((unsigned char)X) macro
5833 for(i=0; i<n && IsSpace(zIn[i]); i++){} in decimalNewFromText()
25691 if( IsSpace(z[i]) ) continue; in wsToEol()
25756 for(i=0; IsSpace(z[i]); i++){} in shellFormatSchema()
25758 if( IsSpace(c) ){ in shellFormatSchema()
25760 if( IsSpace(z[j-1]) || z[j-1]=='(' ) continue; in shellFormatSchema()
25761 }else if( (c=='(' || c==')') && j>0 && IsSpace(z[j-1]) ){ in shellFormatSchema()
25766 while( j>0 && IsSpace(z[j-1]) ){ j--; } in shellFormatSchema()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td3199 def IsSpace : LibBuiltin<"ctype.h"> {