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

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/dos/
ctype.h 1 static int isspace(int c) { function
  /external/libcxx/test/std/localization/locales/locale.convenience/classification/
isspace.pass.cpp 12 // template <class charT> bool isspace (charT c, const locale& loc);
20 assert( std::isspace(' ', l));
21 assert(!std::isspace('<', l));
22 assert(!std::isspace('\x8', l));
23 assert(!std::isspace('A', l));
24 assert(!std::isspace('a', l));
25 assert(!std::isspace('z', l));
26 assert(!std::isspace('3', l));
27 assert(!std::isspace('.', l));
28 assert(!std::isspace('f', l))
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/classification/
isspace.pass.cpp 12 // template <class charT> bool isspace (charT c, const locale& loc);
20 assert( std::isspace(' ', l));
21 assert(!std::isspace('<', l));
22 assert(!std::isspace('\x8', l));
23 assert(!std::isspace('A', l));
24 assert(!std::isspace('a', l));
25 assert(!std::isspace('z', l));
26 assert(!std::isspace('3', l));
27 assert(!std::isspace('.', l));
28 assert(!std::isspace('f', l))
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale.convenience/classification/
isspace.pass.cpp 12 // template <class charT> bool isspace (charT c, const locale& loc);
20 assert( std::isspace(' ', l));
21 assert(!std::isspace('<', l));
22 assert(!std::isspace('\x8', l));
23 assert(!std::isspace('A', l));
24 assert(!std::isspace('a', l));
25 assert(!std::isspace('z', l));
26 assert(!std::isspace('3', l));
27 assert(!std::isspace('.', l));
28 assert(!std::isspace('f', l))
    [all...]
  /external/syslinux/com32/lib/
skipspace.c 5 while (isspace((unsigned char)*p))
  /external/syslinux/gpxe/src/core/
ctype.c 34 * @ret isspace Character is a space
36 int isspace ( int c ) { function
  /prebuilts/ndk/r11/sources/android/support/src/musl-locale/
isspace_l.c 5 return isspace(c);
  /prebuilts/ndk/r13/sources/android/support/src/musl-locale/
isspace_l.c 5 return isspace(c);
  /bionic/tests/
ctype_test.cpp 86 TEST(ctype, isspace) {
87 EXPECT_TRUE(isspace(' '));
88 EXPECT_TRUE(isspace('\f'));
89 EXPECT_TRUE(isspace('\n'));
90 EXPECT_TRUE(isspace('\r'));
91 EXPECT_TRUE(isspace('\t'));
92 EXPECT_TRUE(isspace('\v'));
93 EXPECT_FALSE(isspace('a'));
94 EXPECT_FALSE(isspace('!'));
  /external/toybox/toys/other/
factor.c 28 while(isspace(*s)) s++;
34 if (errno || (*s && !isspace(*s))) {
36 while (*s && !isspace(*s)) s++;
  /external/clang/test/Sema/
libbuiltins-ctype-powerpc64.c 12 int isspace(int);
37 // CHECK: call signext i32 @isspace(i32 signext {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
38 (void)isspace(x);
58 // CHECK: declare signext i32 @isspace(i32 signext) [[NUW_RO:#[0-9]+]]
libbuiltins-ctype-x86_64.c 12 int isspace(int);
37 // CHECK: call i32 @isspace(i32 {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
38 (void)isspace(x);
58 // CHECK: declare i32 @isspace(i32) [[NUW_RO:#[0-9]+]]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 23 { "space", isspace },
  /external/openssh/openbsd-compat/
charclass.h 25 { "space", isspace },
  /external/selinux/libsepol/src/
genusers.c 67 while (*p && isspace(*p))
75 if (!isspace(*p))
77 while (*p && isspace(*p))
82 while (*p && !isspace(*p))
127 while (*p && isspace(*p))
134 if (!isspace(*p))
136 while (*p && isspace(*p))
148 while (*p && isspace(*p))
154 while (*p && *p != ';' && *p != '}' && !isspace(*p))
190 while (*p && isspace(*p)
    [all...]
  /external/syslinux/core/include/
ctype.h 25 static inline int isspace(int ch) function
  /external/syslinux/gpxe/src/include/
ctype.h 29 extern int isspace ( int c );
  /frameworks/native/services/vr/performanced/
string_trim.h 16 std::not1(std::ptr_fun<int, int>(std::isspace))));
24 std::not1(std::ptr_fun<int, int>(std::isspace)))
35 std::not1(std::ptr_fun<int, int>(std::isspace))));
37 std::not1(std::ptr_fun<int, int>(std::isspace)))
  /external/selinux/libselinux/src/
selinux_check_securetty_context.c 29 while (*start && isspace(*start))
35 while (*end && !isspace(*end))
  /external/toybox/scripts/
mktags.c 19 while (len && isspace(line[len-1])) line[--len]=0;
37 for (s = line; isspace(*s); s++);
  /prebuilts/ndk/r10/sources/cxx-stl/gabi++/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/gabi++/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/r10/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/r11/sources/cxx-stl/system/include/
cctype 51 using ::isspace;

Completed in 812 milliseconds

1 2 3 4 5 6 7 8 91011>>