HomeSort by relevance Sort by last modified time
    Searched refs:isupper (Results 1 - 25 of 441) 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...]
  /prebuilts/ndk/r11/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...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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...]
  /prebuilts/ndk/r11/sources/android/support/src/musl-locale/
isupper_l.c 5 return isupper(c);
  /prebuilts/ndk/r13/sources/android/support/src/musl-locale/
isupper_l.c 5 return isupper(c);
  /external/syslinux/gpxe/src/include/
ctype.h 13 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro
17 if (isupper(c))
  /device/linaro/bootloader/arm-trusted-firmware/include/stdlib/sys/
ctype.h 47 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro
49 #define isalpha(c) (isupper(c) || islower(c))
  /external/clang/test/Sema/
libbuiltins-ctype-powerpc64.c 13 int isupper(int);
39 // CHECK: call signext i32 @isupper(i32 signext {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
40 (void)isupper(x);
59 // CHECK: declare signext i32 @isupper(i32 signext) [[NUW_RO:#[0-9]+]]
libbuiltins-ctype-x86_64.c 13 int isupper(int);
39 // CHECK: call i32 @isupper(i32 {{%[0-9]+}}) [[NUW_RO_CALL:#[0-9]+]]
40 (void)isupper(x);
59 // CHECK: declare i32 @isupper(i32) [[NUW_RO:#[0-9]+]]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
charclass.h 24 { "upper", isupper },
  /device/linaro/bootloader/edk2/StdLib/LibC/Ctype/
CConv.c 5 lowercase letter. If the argument is a character for which isupper
14 current locale, for which isupper is true, the toupper function returns one
37 @return If the argument is a character for which isupper is true and
49 return (isupper(_c) ? _lConvT[_c] : _c);
59 the current locale, for which isupper is true, the toupper
  /external/openssh/openbsd-compat/
charclass.h 26 { "upper", isupper },
  /prebuilts/ndk/r10/sources/cxx-stl/gabi++/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/gabi++/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/r10/sources/cxx-stl/system/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/r11/sources/cxx-stl/system/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/include/
cctype 52 using ::isupper;
  /prebuilts/ndk/r13/sources/cxx-stl/system/include/
cctype 52 using ::isupper;
  /external/libcxx/include/
ctype.h 27 int isupper(int c);
62 #undef isupper macro
  /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'));
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
ctype.h 27 int isupper(int c);
62 #undef isupper macro
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
ctype.h 27 int isupper(int c);
62 #undef isupper macro
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 41 using _STLP_VENDOR_CSTD::isupper;
  /prebuilts/ndk/r11/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'));

Completed in 2095 milliseconds

1 2 3 4 5 6 7 8 91011>>