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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /ndk/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...]
  /ndk/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('!'));
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 23 { "space", isspace },
  /external/selinux/libsepol/src/
genusers.c 66 while (*p && isspace(*p))
74 if (!isspace(*p))
76 while (*p && isspace(*p))
81 while (*p && !isspace(*p))
126 while (*p && isspace(*p))
133 if (!isspace(*p))
135 while (*p && isspace(*p))
147 while (*p && isspace(*p))
153 while (*p && *p != ';' && *p != '}' && !isspace(*p))
189 while (*p && isspace(*p)
    [all...]
  /bionic/libstdc++/include/
cctype 51 using ::isspace;
  /external/selinux/libselinux/src/
selinux_check_securetty_context.c 29 while (*start && isspace(*start))
35 while (*end && !isspace(*end))
matchmediacon.c 31 while (*ptr && isspace(*ptr))
39 while (*ptr2 && !isspace(*ptr2))
55 while (*ptr2 && isspace(*ptr2))
  /external/toybox/scripts/
mktags.c 19 while (len && isspace(line[len-1])) line[--len]=0;
37 for (s = line; isspace(*s); s++);
  /external/toybox/toys/other/
factor.c 27 while(isspace(*s)) s++;
31 if (*s && !isspace(*s)) {
sysctl.c 82 for (key = data+strlen(data); key > data && isspace(*--key); *key = 0);
132 while (isspace(*key)) key++;
134 while (len && isspace(line[len-1])) line[--len] = 0;
142 while (len && isspace(line[len-1])) line[--len] = 0;
143 while (isspace(*val)) val++;;
  /ndk/sources/cxx-stl/gabi++/include/
cctype 51 using ::isspace;
  /ndk/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/current/sources/cxx-stl/gabi++/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/current/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /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'));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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'));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 40 using _STLP_VENDOR_CSTD::isspace;
  /external/libselinux/src/
label_support.c 34 while (isspace(**ptr) && **ptr != '\0')
40 while (!isspace(**ptr) && **ptr != '\0') {
88 while (isspace(*buf_p))
  /external/dbus/tools/
strtoll.c 40 #ifndef isspace
41 #define isspace(c) ((c) == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n') macro
81 } while (isspace((unsigned char)c));
strtoull.c 40 #ifndef isspace
41 #define isspace(c) ((c) == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n') macro
80 } while (isspace((unsigned char)c));
  /external/libpcap/
etherent.c 78 } while (isspace(c) && c != '\n');
135 if (!isspace(c)) {
157 } while (!isspace(c) && c != EOF && --d > 0);

Completed in 356 milliseconds

1 2 3 4 5 6 7 8 91011>>