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

1 2 3 4 5 6 7 8 9

  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale.convenience/classification/
isupper.pass.cpp 12 // template <class charT> bool isupper (charT c, const locale& loc);
20 assert(!std::isupper(' ', l));
21 assert(!std::isupper('<', l));
22 assert(!std::isupper('\x8', l));
23 assert( std::isupper('A', l));
24 assert(!std::isupper('a', l));
25 assert(!std::isupper('z', l));
26 assert(!std::isupper('3', l));
27 assert(!std::isupper('.', l));
28 assert(!std::isupper('f', l))
    [all...]
  /bionic/libc/unistd/
charclass.h 24 { "upper", isupper },
  /external/openssh/openbsd-compat/
charclass.h 26 { "upper", isupper },
  /bionic/libstdc++/include/
cctype 52 using ::isupper;
  /external/webkit/Source/JavaScriptCore/wtf/
DisallowCType.h 51 #undef isupper macro
68 #define isupper isupper_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
  /ndk/sources/cxx-stl/gabi++/include/
cctype 52 using ::isupper;
  /ndk/sources/cxx-stl/system/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cctype 50 using ::isupper;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cctype 50 using ::isupper;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cctype 52 using ::isupper;
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 68 #ifdef isupper
84 using std::isupper;
  /external/stlport/stlport/stl/
_cctype.h 41 using _STLP_VENDOR_CSTD::isupper;
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
ctype_h.pass.cpp 56 #ifdef isupper
57 #error isupper defined
84 static_assert((std::is_same<decltype(isupper(0)), int>::value), "");
99 assert(!isupper('a'));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 41 using _STLP_VENDOR_CSTD::isupper;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 41 using _STLP_VENDOR_CSTD::isupper;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 41 using _STLP_VENDOR_CSTD::isupper;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 41 using _STLP_VENDOR_CSTD::isupper;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 41 using _STLP_VENDOR_CSTD::isupper;
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/c.strings/
cctype.pass.cpp 56 #ifdef isupper
57 #error isupper defined
84 static_assert((std::is_same<decltype(std::isupper(0)), int>::value), "");
99 assert(!isupper('a'));
  /external/kernel-headers/original/linux/
ctype.h 31 #define isupper(c) ((__ismask(c)&(_U)) != 0) macro
39 if (isupper(c))

Completed in 559 milliseconds

1 2 3 4 5 6 7 8 9