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

1 2 3 4 5 6 7 8 91011>>

  /external/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/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('!'));
  /external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
event-utils.h 54 if (!isspace(*string))
62 if (!isspace(*string))
77 if (!isspace(*text))
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 23 { "space", isspace },
  /external/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...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
genmodule.c 98 while (len > 0 && isspace(*strp)) {
107 while (isspace(*strp))
119 if (isam && strncmp(strp, "include", 7) == 0 && isspace(strp[7])) {
121 while (isspace(*strp))
135 while (isspace(*strp))
142 while (isspace(*strp))
149 while (isspace(*strp))
159 while (*strp != '\0' && !isspace(*strp))
164 while (isspace(*strp))
  /bionic/libstdc++/include/
cctype 51 using ::isspace;
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
alias.c 37 if (!quoted && isspace(c)) {
40 && isspace(cmdline[src]))
  /ndk/sources/cxx-stl/gabi++/include/
cctype 51 using ::isspace;
  /ndk/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cctype 49 using ::isspace;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cctype 49 using ::isspace;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
cctype 51 using ::isspace;
  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cctype 51 using ::isspace;
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 65 #ifdef isspace
93 using std::isspace;
  /external/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'));

Completed in 2730 milliseconds

1 2 3 4 5 6 7 8 91011>>