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.cc1943 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.h498 inline bool IsSpace(int c) { in IsSpace() function
H A Dsanitizer_common_interceptors.inc3557 while (IsSpace(*nptr)) nptr++;
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h1981 inline bool IsSpace(char ch) {
2017 while (it != str.begin() && IsSpace(*--it)) it = str.erase(it);
H A Dgtest-internal.h640 while (IsSpace(*(++comma))) { in GTEST_DISABLE_MSC_WARNINGS_POP_()
/freebsd/contrib/sqlite3/
H A Dshell.c241 #define IsSpace(X) isspace((unsigned char)X) macro
20340 if( IsSpace(z[i]) ) continue; in wsToEol()
20603 for(i=0; IsSpace(z[i]); i++){} in shell_callback()
20605 if( IsSpace(c) ){ in shell_callback()
20607 if( IsSpace(z[j-1]) || z[j-1]=='(' ) continue; in shell_callback()
20608 }else if( (c=='(' || c==')') && j>0 && IsSpace(z[j-1]) ){ in shell_callback()
20613 while( j>0 && IsSpace(z[j-1]) ){ j--; } in shell_callback()
20642 while( IsSpace(z[i+1]) ){ i++; } in shell_callback()
21024 for(i=0; zCode[i]; i++){ if( IsSpace(zSql[i]) ) zCode[i] = ' '; } in shell_error_context()
22337 while( IsSpace(zSql[0]) ) zSql++; in shell_exec()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td3046 def IsSpace : LibBuiltin<"ctype.h"> {