/external/llvm-project/libc/test/src/ctype/ |
D | isspace_test.cpp | 12 TEST(IsSpace, DefaultLocale) { in TEST() argument
|
/external/tensorflow/tensorflow/core/platform/ |
D | scanner.h | 183 static bool IsSpace(char ch) { in IsSpace() function 224 return IsSpace(ch); in Matches()
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_ctype.h | 36 EAS_INLINE EAS_I8 IsSpace (EAS_I8 c) { return (((c >= 9) && (c <= 13)) || (c == ' ')); } in IsSpace() function
|
D | eas_rtttl.c | 1184 if (!IsSpace(temp)) in RTTTL_GetNextChar() 1227 if (!IsSpace(temp)) in RTTTL_PeekNextChar()
|
/external/pdfium/core/fpdfdoc/ |
D | ctypeset.cpp | 144 bool IsSpace(uint16_t word) { in IsSpace() function 153 if (IsSpace(curWord) || IsPunctuation(curWord)) { in NeedDivision() 159 if (IsSpace(prevWord) || IsPunctuation(prevWord)) { in NeedDivision() 358 if (!IsSpace(pWord->Word) && !IsOpenStylePunctuation(pWord->Word)) { in SplitLines()
|
/external/llvm/utils/unittest/googletest/src/ |
D | gtest-typed-test.cc | 43 while (IsSpace(*str)) in SkipSpaces()
|
/external/googletest/googletest/src/ |
D | gtest-typed-test.cc | 41 while (IsSpace(*str)) in SkipSpaces()
|
/external/llvm-project/llvm/utils/unittest/googletest/src/ |
D | gtest-typed-test.cc | 43 while (IsSpace(*str)) in SkipSpaces()
|
/external/libvpx/libvpx/third_party/googletest/src/src/ |
D | gtest-typed-test.cc | 43 while (IsSpace(*str)) in SkipSpaces()
|
/external/mesa3d/src/gtest/src/ |
D | gtest-typed-test.cc | 43 while (IsSpace(*str)) in SkipSpaces()
|
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/src/ |
D | gtest-typed-test.cc | 43 while (IsSpace(*str)) in SkipSpaces()
|
/external/libaom/libaom/third_party/googletest/src/googletest/src/ |
D | gtest-typed-test.cc | 42 while (IsSpace(*str)) str++; in SkipSpaces()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_libc.cpp | 232 while (IsSpace(*nptr)) nptr++; in internal_simple_strtoll()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_libc.cc | 239 while (IsSpace(*nptr)) nptr++; in internal_simple_strtoll()
|
D | sanitizer_common.h | 483 INLINE bool IsSpace(int c) { in IsSpace() function
|
/external/starlark-go/starlark/ |
D | library.go | 1596 if !unicode.IsSpace(r) { 1958 s = strings.TrimLeftFunc(recv, unicode.IsSpace) 1964 s = strings.TrimRightFunc(recv, unicode.IsSpace) 2060 if unicode.IsSpace(r) { 2090 if unicode.IsSpace(r) {
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-port.h | 1923 inline bool IsSpace(char ch) { 1946 while (it != str.begin() && IsSpace(*--it))
|
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/internal/ |
D | gtest-port.h | 1984 inline bool IsSpace(char ch) { 2007 while (it != str.begin() && IsSpace(*--it))
|
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/ |
D | gtest-port.h | 1899 inline bool IsSpace(char ch) { 1922 while (it != str.begin() && IsSpace(*--it)) it = str.erase(it);
|
/external/googletest/googletest/include/gtest/internal/ |
D | gtest-port.h | 1934 inline bool IsSpace(char ch) { 1970 while (it != str.begin() && IsSpace(*--it))
|
/external/llvm-project/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-port.h | 2272 inline bool IsSpace(char ch) { 2295 while (it != str.begin() && IsSpace(*--it))
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
D | gtest-port.h | 2410 inline bool IsSpace(char ch) { 2433 while (it != str.begin() && IsSpace(*--it))
|
/external/sqlite/dist/orig/ |
D | shell.c | 201 #define IsSpace(X) isspace((unsigned char)X) macro 10448 if( IsSpace(z[i]) ) continue; in wsToEol() 10692 for(i=0; IsSpace(z[i]); i++){} in shell_callback() 10694 if( IsSpace(c) ){ in shell_callback() 10696 if( IsSpace(z[j-1]) || z[j-1]=='(' ) continue; in shell_callback() 10697 }else if( (c=='(' || c==')') && j>0 && IsSpace(z[j-1]) ){ in shell_callback() 10702 while( j>0 && IsSpace(z[j-1]) ){ j--; } in shell_callback() 10731 while( IsSpace(z[i+1]) ){ i++; } in shell_callback() 11793 while( IsSpace(zSql[0]) ) zSql++; in shell_exec() 11798 while( IsSpace(zStmtSql[0]) ) zStmtSql++; in shell_exec() [all …]
|
/external/sqlite/dist/ |
D | shell.c | 206 #define IsSpace(X) isspace((unsigned char)X) macro 10453 if( IsSpace(z[i]) ) continue; in wsToEol() 10697 for(i=0; IsSpace(z[i]); i++){} in shell_callback() 10699 if( IsSpace(c) ){ in shell_callback() 10701 if( IsSpace(z[j-1]) || z[j-1]=='(' ) continue; in shell_callback() 10702 }else if( (c=='(' || c==')') && j>0 && IsSpace(z[j-1]) ){ in shell_callback() 10707 while( j>0 && IsSpace(z[j-1]) ){ j--; } in shell_callback() 10736 while( IsSpace(z[i+1]) ){ i++; } in shell_callback() 11798 while( IsSpace(zSql[0]) ) zSql++; in shell_exec() 11803 while( IsSpace(zStmtSql[0]) ) zStmtSql++; in shell_exec() [all …]
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 650 while (IsSpace(*(++comma))) {} in SkipComma()
|