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

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/android/support/src/musl-locale/
isalpha_l.c 5 return isalpha(c);
  /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...]
Android.mk 27 test_name := localization/locales/locale.convenience/classification/isalpha
28 test_src := isalpha.pass.cpp
  /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...]
  /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/libc/upstream-openbsd/lib/libc/gen/
charclass.h 15 { "alpha", isalpha },
  /external/libcxx/include/
cctype 21 int isalpha(int c);
58 #ifdef isalpha
59 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isalpha(int __c) {return isalpha(__c);}
60 #undef isalpha
61 inline _LIBCPP_INLINE_VISIBILITY int isalpha(int __c) {return __libcpp_isalpha(__c);}
62 #else // isalpha
63 using ::isalpha;
64 #endif // isalpha
  /external/libutf/
isalpharune.3 44 .IR isalpha (3)
56 .IR isalpha (3) ,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cctype 21 int isalpha(int c);
58 #ifdef isalpha
59 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isalpha(int __c) {return isalpha(__c);}
60 #undef isalpha
61 inline _LIBCPP_INLINE_VISIBILITY int isalpha(int __c) {return __libcpp_isalpha(__c);}
62 #else // isalpha
63 using ::isalpha;
64 #endif // isalpha
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/
cctype 21 int isalpha(int c);
58 #ifdef isalpha
59 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isalpha(int __c) {return isalpha(__c);}
60 #undef isalpha
61 inline _LIBCPP_INLINE_VISIBILITY int isalpha(int __c) {return __libcpp_isalpha(__c);}
62 #else // isalpha
63 using ::isalpha;
64 #endif // isalpha
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
bytes_methods.h 41 #define ISALPHA(c) Py_ISALPHA(c)
51 #undef isalpha macro
52 #define isalpha(c) undefined_isalpha(c) macro
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
bytes_methods.h 41 #define ISALPHA(c) Py_ISALPHA(c)
51 #undef isalpha macro
52 #define isalpha(c) undefined_isalpha(c) macro
  /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/libcxx/test/strings/c.strings/
cctype.pass.cpp 20 #ifdef isalpha
21 #error isalpha defined
75 static_assert((std::is_same<decltype(std::isalpha(0)), int>::value), "");
90 assert(isalpha('a'));
  /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/llvm-libc++/libcxx/test/strings/c.strings/
cctype.pass.cpp 20 #ifdef isalpha
21 #error isalpha defined
75 static_assert((std::is_same<decltype(std::isalpha(0)), int>::value), "");
90 assert(isalpha('a'));
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
renderer11_utils.cpp 21 D3D11_BLEND ConvertBlendFunc(GLenum glBlend, bool isAlpha)
29 case GL_SRC_COLOR: d3dBlend = (isAlpha ? D3D11_BLEND_SRC_ALPHA : D3D11_BLEND_SRC_COLOR); break;
30 case GL_ONE_MINUS_SRC_COLOR: d3dBlend = (isAlpha ? D3D11_BLEND_INV_SRC_ALPHA : D3D11_BLEND_INV_SRC_COLOR); break;
31 case GL_DST_COLOR: d3dBlend = (isAlpha ? D3D11_BLEND_DEST_ALPHA : D3D11_BLEND_DEST_COLOR); break;
32 case GL_ONE_MINUS_DST_COLOR: d3dBlend = (isAlpha ? D3D11_BLEND_INV_DEST_ALPHA : D3D11_BLEND_INV_DEST_COLOR); break;
  /external/valgrind/main/coregrind/m_demangle/
safe-ctype.h 33 case, e.g. ISALPHA not isalpha. */
89 #define ISALPHA(c) _sch_test(c, _sch_isalpha)
126 #undef isalpha macro
127 #define isalpha(c) do_not_use_isalpha_with_safe_ctype macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
safe-ctype.h 33 case, e.g. ISALPHA not isalpha. */
89 #define ISALPHA(c) _sch_test(c, _sch_isalpha)
123 #undef isalpha macro
124 #define isalpha(c) do_not_use_isalpha_with_safe_ctype macro
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFImage.h 77 * @param isAlpha Whether or not this is the alpha of an image.
83 SkPDFImage(SkStream* stream, const SkBitmap& bitmap, bool isAlpha,
  /external/skia/src/pdf/
SkPDFImage.h 77 * @param isAlpha Whether or not this is the alpha of an image.
83 SkPDFImage(SkStream* stream, const SkBitmap& bitmap, bool isAlpha,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/
cctype 51 #undef isalpha
67 using ::isalpha;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
cctype 49 #undef isalpha
65 using ::isalpha;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
cctype 49 #undef isalpha
65 using ::isalpha;
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
cctype 51 #undef isalpha
67 using ::isalpha;

Completed in 892 milliseconds

1 2 3 4 5 6 7 8 91011>>