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

1 2 3 4 5 6 7 8

  /prebuilts/ndk/r11/sources/android/support/tests/
ctype_unittest.cc 5 TEST(ctype, isblank) {
6 EXPECT_TRUE(isblank(' '));
7 EXPECT_TRUE(isblank('\t'));
8 EXPECT_FALSE(isblank('\n'));
9 EXPECT_FALSE(isblank('\f'));
10 EXPECT_FALSE(isblank('\r'));
  /prebuilts/ndk/r13/sources/android/support/tests/
ctype_unittest.cc 5 TEST(ctype, isblank) {
6 EXPECT_TRUE(isblank(' '));
7 EXPECT_TRUE(isblank('\t'));
8 EXPECT_FALSE(isblank('\n'));
9 EXPECT_FALSE(isblank('\f'));
10 EXPECT_FALSE(isblank('\r'));
  /prebuilts/ndk/r11/sources/android/support/src/musl-locale/
isblank_l.c 5 return isblank(c);
  /prebuilts/ndk/r13/sources/android/support/src/musl-locale/
isblank_l.c 5 return isblank(c);
  /prebuilts/ndk/r11/sources/android/support/src/musl-ctype/
iswblank.c 7 return isblank(wc);
  /prebuilts/ndk/r13/sources/android/support/src/musl-ctype/
iswblank.c 7 return isblank(wc);
  /external/clang/test/Sema/
libbuiltins-ctype-powerpc64.c 5 int isblank(int);
23 // CHECK: call signext i32 @isblank(i32 signext {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
24 (void)isblank(x);
51 // CHECK: declare signext i32 @isblank(i32 signext) [[NUW_RO:#[0-9]+]]
libbuiltins-ctype-x86_64.c 5 int isblank(int);
23 // CHECK: call i32 @isblank(i32 {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
24 (void)isblank(x);
51 // CHECK: declare i32 @isblank(i32) [[NUW_RO:#[0-9]+]]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 16 { "blank", isblank },
isctype.c 56 #undef isblank macro
58 isblank(int c) function
62 DEF_STRONG(isblank); variable
  /external/openssh/openbsd-compat/
charclass.h 18 { "blank", isblank },
  /external/libcxx/include/
ctype.h 19 int isblank(int c); // C99
54 #undef isblank macro
  /external/libcxx/test/std/depr/depr.c.headers/
ctype_h.pass.cpp 24 #ifdef isblank
25 #error isblank defined
76 static_assert((std::is_same<decltype(isblank(0)), int>::value), "");
91 assert(isblank(' '));
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
ctype.h 19 int isblank(int c); // C99
54 #undef isblank macro
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
ctype.h 19 int isblank(int c); // C99
54 #undef isblank macro
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
ctype_h.pass.cpp 24 #ifdef isblank
25 #error isblank defined
76 static_assert((std::is_same<decltype(isblank(0)), int>::value), "");
91 assert(isblank(' '));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/
ctype.h 19 int isblank(int c); // C99
54 #undef isblank macro
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
ctype_h.pass.cpp 24 #ifdef isblank
25 #error isblank defined
76 static_assert((std::is_same<decltype(isblank(0)), int>::value), "");
91 assert(isblank(' '));
  /bionic/tests/
ctype_test.cpp 42 TEST(ctype, isblank) {
43 EXPECT_FALSE(isblank('1'));
44 EXPECT_TRUE(isblank(' '));
45 EXPECT_TRUE(isblank('\t'));
  /external/libcxx/test/std/strings/c.strings/
cctype.pass.cpp 24 #ifdef isblank
25 #error isblank defined
76 static_assert((std::is_same<decltype(std::isblank(0)), int>::value), "");
91 assert(std::isblank(' '));
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
cctype.pass.cpp 24 #ifdef isblank
25 #error isblank defined
76 static_assert((std::is_same<decltype(std::isblank(0)), int>::value), "");
91 assert(isblank(' '));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/strings/c.strings/
cctype.pass.cpp 24 #ifdef isblank
25 #error isblank defined
76 static_assert((std::is_same<decltype(std::isblank(0)), int>::value), "");
91 assert(std::isblank(' '));
  /bionic/libc/bionic/
ctype.cpp 40 return isblank(c);
  /development/ndk/platforms/android-9/include/
ctype.h 88 int isblank(int);
173 __CTYPE_INLINE int isblank(int c) function
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/
ctype.h 88 int isblank(int);
173 __CTYPE_INLINE int isblank(int c) function

Completed in 1467 milliseconds

1 2 3 4 5 6 7 8