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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/localization/locales/locale.convenience/classification/
isalpha.pass.cpp 12 // template <class charT> bool isalpha (charT c, const locale& loc);
20 assert(!std::isalpha(' ', l));
21 assert(!std::isalpha('<', l));
22 assert(!std::isalpha('\x8', l));
23 assert( std::isalpha('A', l));
24 assert( std::isalpha('a', l));
25 assert( std::isalpha('z', l));
26 assert(!std::isalpha('3', l));
27 assert(!std::isalpha('.', l));
28 assert( std::isalpha('f', l))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/classification/
isalpha.pass.cpp 12 // template <class charT> bool isalpha (charT c, const locale& loc);
20 assert(!std::isalpha(' ', l));
21 assert(!std::isalpha('<', l));
22 assert(!std::isalpha('\x8', l));
23 assert( std::isalpha('A', l));
24 assert( std::isalpha('a', l));
25 assert( std::isalpha('z', l));
26 assert(!std::isalpha('3', l));
27 assert(!std::isalpha('.', l));
28 assert( std::isalpha('f', l))
    [all...]
  /ndk/sources/android/support/src/musl-locale/
isalpha_l.c 5 return isalpha(c);
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 15 { "alpha", isalpha },
  /bionic/tests/
ctype_test.cpp 29 TEST(ctype, isalpha) {
30 EXPECT_FALSE(isalpha('1'));
31 EXPECT_TRUE(isalpha('a'));
32 EXPECT_TRUE(isalpha('A'));
33 EXPECT_FALSE(isalpha('!'));
34 EXPECT_FALSE(isalpha(' '));
  /bionic/libstdc++/include/
cctype 44 using ::isalpha;
  /ndk/sources/cxx-stl/gabi++/include/
cctype 44 using ::isalpha;
  /ndk/sources/cxx-stl/system/include/
cctype 44 using ::isalpha;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cctype 42 using ::isalpha;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cctype 42 using ::isalpha;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cctype 44 using ::isalpha;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cctype 44 using ::isalpha;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cctype 44 using ::isalpha;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cctype 44 using ::isalpha;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cctype 44 using ::isalpha;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cctype 44 using ::isalpha;
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cctype 44 using ::isalpha;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
cctype 44 using ::isalpha;
  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cctype 44 using ::isalpha;
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 44 #ifdef isalpha
86 using std::isalpha;
  /external/libcxx/test/depr/depr.c.headers/
ctype_h.pass.cpp 20 #ifdef isalpha
21 #error isalpha defined
75 static_assert((std::is_same<decltype(isalpha(0)), int>::value), "");
90 assert(isalpha('a'));
  /external/stlport/stlport/stl/
_cctype.h 33 using _STLP_VENDOR_CSTD::isalpha;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
ctype_h.pass.cpp 20 #ifdef isalpha
21 #error isalpha defined
75 static_assert((std::is_same<decltype(isalpha(0)), int>::value), "");
90 assert(isalpha('a'));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 33 using _STLP_VENDOR_CSTD::isalpha;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 33 using _STLP_VENDOR_CSTD::isalpha;

Completed in 448 milliseconds

1 2 3 4 5 6 7 8 91011>>