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

1 2 3 4 5

  /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
  /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/r11/sources/third_party/googletest/googletest/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/src/
gtest-typed-test.cc 43 while (IsSpace(*str))
  /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 366 BOOLEAN IsSpace;
390 IsSpace = FALSE;
394 IsSpace = TRUE;
396 if (IsSpace) {
418 IsSpace = FALSE;
  /prebuilts/go/darwin-x86/src/mime/
mediatype.go 125 v = strings.TrimLeftFunc(v, unicode.IsSpace)
282 rest = strings.TrimLeftFunc(v, unicode.IsSpace)
288 rest = strings.TrimLeftFunc(rest, unicode.IsSpace)
295 rest = strings.TrimLeftFunc(rest, unicode.IsSpace)
300 rest = strings.TrimLeftFunc(rest, unicode.IsSpace)
  /prebuilts/go/linux-x86/src/mime/
mediatype.go 125 v = strings.TrimLeftFunc(v, unicode.IsSpace)
282 rest = strings.TrimLeftFunc(v, unicode.IsSpace)
288 rest = strings.TrimLeftFunc(rest, unicode.IsSpace)
295 rest = strings.TrimLeftFunc(rest, unicode.IsSpace)
300 rest = strings.TrimLeftFunc(rest, unicode.IsSpace)
  /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)
  /prebuilts/go/linux-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)
  /build/soong/android/
expand.go 62 i := strings.IndexFunc(s, unicode.IsSpace)

Completed in 623 milliseconds

1 2 3 4 5