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

1 2 3 4 5 6

  /bionic/libc/private/
bionic_ctype.h 40 static inline bool IsSpace(int ch) {
  /prebuilts/go/darwin-x86/src/fmt/
export_test.go 7 var IsSpace = isSpace
  /prebuilts/go/linux-x86/src/fmt/
export_test.go 7 var IsSpace = isSpace
  /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 == ' ')); }
  /prebuilts/go/darwin-x86/src/bufio/
export_test.go 12 var IsSpace = isSpace
  /prebuilts/go/linux-x86/src/bufio/
export_test.go 12 var IsSpace = isSpace
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/transform/
examples_test.go 22 t := transform.RemoveFunc(unicode.IsSpace)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/transform/
examples_test.go 22 t := transform.RemoveFunc(unicode.IsSpace)
  /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/mesa3d/src/gtest/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))
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
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 180 static bool IsSpace(char ch) {
221 return IsSpace(ch);
  /external/v8/src/
ostreams.cc 53 bool IsSpace(uint16_t c) { return (0x9 <= c && c <= 0xd) || c == 0x20; }
54 bool IsOK(uint16_t c) { return (IsPrint(c) || IsSpace(c)) && c != '\\'; }
  /prebuilts/go/darwin-x86/src/testing/
match_test.go 13 // Verify that our IsSpace agrees with unicode.IsSpace.
17 if isSpace(r) != unicode.IsSpace(r) {
18 t.Errorf("IsSpace(%U)=%t incorrect", r, isSpace(r))
  /prebuilts/go/linux-x86/src/testing/
match_test.go 13 // Verify that our IsSpace agrees with unicode.IsSpace.
17 if isSpace(r) != unicode.IsSpace(r) {
18 t.Errorf("IsSpace(%U)=%t incorrect", r, isSpace(r))
  /external/googletest/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/v8/testing/gtest/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)
232 s = strings.TrimLeftFunc(s, unicode.IsSpace)
  /prebuilts/go/darwin-x86/src/unicode/
letter_test.go 332 if !IsSpace(c) {
333 t.Errorf("IsSpace(U+%04X) = false; want true", c)
337 if IsSpace(c) {
338 t.Errorf("IsSpace(U+%04X) = true; want false", c)
359 if Is(White_Space, i) != IsSpace(i) {
360 t.Errorf("IsSpace(U+%04X) disagrees with Is(White_Space)", i)

Completed in 364 milliseconds

1 2 3 4 5 6