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

1 2 3 4 5 6 7 8 91011

  /external/libcxx/test/std/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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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...]
  /ndk/sources/android/support/src/musl-locale/
isupper_l.c 5 return isupper(c);
  /external/chromium-trace/catapult/catapult_base/catapult_base/
dependency_util.py 7 assert version.isupper(), (
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 24 { "upper", isupper },
fnmatch.c 218 else if (nocase && (isupper((unsigned char)**string) ||
219 isupper((unsigned char)*startch) ||
220 isupper((unsigned char)**pattern))
234 else if (nocase && (isupper((unsigned char)**string) ||
235 isupper((unsigned char)**pattern))
263 else if (nocase && (isupper((unsigned char)**string) ||
264 isupper((unsigned char)**pattern))
  /bionic/libstdc++/include/
cctype 52 using ::isupper;
  /ndk/sources/cxx-stl/gabi++/include/
cctype 52 using ::isupper;
  /ndk/sources/cxx-stl/system/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/current/sources/cxx-stl/gabi++/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/current/sources/cxx-stl/system/include/
cctype 52 using ::isupper;
  /external/libcxx/test/std/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/llvm-libc++/libcxx/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/current/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 41 using _STLP_VENDOR_CSTD::isupper;
  /bionic/tests/
ctype_test.cpp 97 TEST(ctype, isupper) {
98 EXPECT_TRUE(isupper('A'));
99 EXPECT_FALSE(isupper('a'));
100 EXPECT_FALSE(isupper('!'));
125 // _tolower may mangle characters for which isupper is false.
  /external/libcxx/test/std/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'));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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'));
  /bionic/libc/bionic/
ctype.cpp 72 return isupper(c);
  /external/opencv3/3rdparty/jinja2/
defaults.py 43 __all__ = tuple(x for x in locals().keys() if x.isupper())
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_errno.py 30 if attribute.isupper():
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_errno.py 30 if attribute.isupper():
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_errno.py 30 if attribute.isupper():
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_errno.py 30 if attribute.isupper():

Completed in 539 milliseconds

1 2 3 4 5 6 7 8 91011