HomeSort by relevance Sort by last modified time
    Searched refs:isspace (Results 1 - 25 of 793) 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/r16/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
  /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]+]]
  /system/core/property_service/libpropertyinfoserializer/
space_tokenizer.h 30 while (it_ != end_ && !isspace(*it_)) {
33 while (it_ != end_ && isspace(*it_)) {
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 23 { "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 );
  /external/tensorflow/tensorflow/stream_executor/lib/
numbers.cc 28 while (isspace(*endptr)) ++endptr;
  /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/r16/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /external/libcxx/include/
ctype.h 26 int isspace(int c);
52 #undef isspace macro
  /external/libcxx/test/std/depr/depr.c.headers/
ctype_h.pass.cpp 52 #ifdef isspace
53 #error isspace defined
83 static_assert((std::is_same<decltype(isspace(0)), int>::value), "");
98 assert(!isspace('a'));
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
ctype.h 26 int isspace(int c);
61 #undef isspace macro
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
ctype.h 26 int isspace(int c);
52 #undef isspace macro
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
ctype.h 26 int isspace(int c);
52 #undef isspace macro
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
ctype.h 26 int isspace(int c);
52 #undef isspace macro
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/
ctype.h 26 int isspace(int c);
52 #undef isspace macro

Completed in 298 milliseconds

1 2 3 4 5 6 7 8 91011>>