Home
last modified time | relevance | path

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

/src/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()
/src/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.h498 inline bool IsSpace(int c) { in IsSpace() function
H A Dsanitizer_common_interceptors.inc3557 while (IsSpace(*nptr)) nptr++;
/src/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_()
/src/contrib/sqlite3/
H A Dshell.c236 #define IsSpace(X) isspace((unsigned char)X) macro
3725 #ifndef IsSpace
3726 #define IsSpace(X) isspace((unsigned char)X) macro
3777 for(i=0; IsSpace(zIn[i]); i++){} in decimalNewFromText()
22720 if( IsSpace(z[i]) ) continue; in wsToEol()
22992 for(i=0; IsSpace(z[i]); i++){} in shell_callback()
22994 if( IsSpace(c) ){ in shell_callback()
22996 if( IsSpace(z[j-1]) || z[j-1]=='(' ) continue; in shell_callback()
22997 }else if( (c=='(' || c==')') && j>0 && IsSpace(z[j-1]) ){ in shell_callback()
23002 while( j>0 && IsSpace(z[j-1]) ){ j--; } in shell_callback()
[all …]
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td3046 def IsSpace : LibBuiltin<"ctype.h"> {