HomeSort by relevance Sort by last modified time
    Searched refs:IsSpace (Results 1 - 25 of 58) sorted by null

1 2 3

  /bionic/libc/private/
bionic_ctype.h 40 static inline bool IsSpace(int ch) {
  /external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h 36 EAS_INLINE EAS_I8 IsSpace (EAS_I8 c) { return (((c >= 9) && (c <= 13)) || (c == ' ')); }
eas_rtttl.c     [all...]
  /external/google-breakpad/src/testing/gtest/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /external/llvm/utils/unittest/googletest/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /bionic/libc/bionic/
strtol.cpp 52 } while (IsSpace(c));
119 } while (IsSpace(c));
  /external/tensorflow/tensorflow/core/lib/strings/
scanner.h 181 static bool IsSpace(char ch) {
222 return IsSpace(ch);
  /external/googletest/googletest/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /external/libaom/libaom/third_party/googletest/src/googletest/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /external/mesa3d/src/gtest/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /device/linaro/bootloader/edk2/NetworkPkg/Application/VConfig/
VConfig.c 372 BOOLEAN IsSpace;
396 IsSpace = FALSE;
400 IsSpace = TRUE;
402 if (IsSpace) {
424 IsSpace = FALSE;
  /build/blueprint/
ninja_writer.go 52 if unicode.IsSpace(r) {
63 line = strings.TrimRightFunc(comment[lineStart:i], unicode.IsSpace)
241 s = strings.TrimLeftFunc(s, unicode.IsSpace)
  /build/soong/android/
expand.go 62 i := strings.IndexFunc(s, unicode.IsSpace)
  /external/syzkaller/vendor/cloud.google.com/go/internal/version/
version.go 44 if p := strings.IndexFunc(s, unicode.IsSpace); p >= 0 {
  /external/v8/src/
ostreams.cc 84 bool IsSpace(uint16_t c) { return (0x9 <= c && c <= 0xD) || c == 0x20; }
85 bool IsOK(uint16_t c) { return (IsPrint(c) || IsSpace(c)) && c != '\\'; }
  /bionic/libc/stdio/
vfscanf.cpp 114 if (IsSpace(c)) {
115 while ((fp->_r > 0 || __srefill(fp) == 0) && IsSpace(*fp->_p)) nread++, fp->_r--, fp->_p++;
313 while (IsSpace(*fp->_p)) {
434 while ((c == CT_CCL || !IsSpace(*fp->_p)) && width != 0) {
  /external/pdfium/core/fpdfdoc/
ctypeset.cpp 144 bool IsSpace(uint16_t word) {
153 if (IsSpace(curWord) || IsPunctuation(curWord)) {
159 if (IsSpace(prevWord) || IsPunctuation(prevWord)) {
331 if (!IsSpace(pWord->Word) && !IsOpenStylePunctuation(pWord->Word)) {
  /build/blueprint/parser/
printer.go 333 line = strings.TrimRightFunc(line, unicode.IsSpace)
336 lineIndent := strings.IndexFunc(line, func(r rune) bool { return !unicode.IsSpace(r) })
  /build/soong/androidmk/parser/
make_strings.go 177 ms.Strings[0] = strings.TrimLeftFunc(ms.Strings[0], unicode.IsSpace)
183 ms.Strings[last] = strings.TrimRightFunc(ms.Strings[last], unicode.IsSpace)
  /build/soong/cmd/diff_target_files/
whitelist.go 247 for len(b) > 0 && unicode.IsSpace(rune(b[0])) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 239 while (IsSpace(*nptr)) nptr++;
  /build/blueprint/bootstrap/bpdoc/
properties.go 270 indent := unicode.IsSpace(r)

Completed in 918 milliseconds

1 2 3