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

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locales/locale.convenience/conversions/conversions.character/
toupper.pass.cpp 12 // template <class charT> charT toupper(charT c, const locale& loc);
20 assert(std::toupper(' ', l) == ' ');
21 assert(std::toupper('<', l) == '<');
22 assert(std::toupper('\x8', l) == '\x8');
23 assert(std::toupper('A', l) == 'A');
24 assert(std::toupper('a', l) == 'A');
25 assert(std::toupper('z', l) == 'Z');
26 assert(std::toupper('3', l) == '3');
27 assert(std::toupper('.', l) == '.');
28 assert(std::toupper('f', l) == 'F')
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/
toupper_1.pass.cpp 14 // char toupper(char) const;
26 assert(f.toupper(' ') == ' ');
27 assert(f.toupper('A') == 'A');
28 assert(f.toupper('\x07') == '\x07');
29 assert(f.toupper('.') == '.');
30 assert(f.toupper('a') == 'A');
31 assert(f.toupper('1') == '1');
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.ctype/locale.ctype.byname/
toupper_1.pass.cpp 14 // charT toupper(charT) const;
29 assert(f.toupper(' ') == ' ');
30 assert(f.toupper('A') == 'A');
31 assert(f.toupper('\x07') == '\x07');
32 assert(f.toupper('.') == '.');
33 assert(f.toupper('a') == 'A');
34 assert(f.toupper('1') == '1');
35 assert(f.toupper('\xDA') == '\xDA');
36 assert(f.toupper('\xFA') == '\xFA');
45 assert(f.toupper(' ') == ' ')
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/
toupper_1.pass.cpp 14 // charT toupper(charT) const;
26 assert(f.toupper(L' ') == L' ');
27 assert(f.toupper(L'A') == L'A');
28 assert(f.toupper(L'\x07') == L'\x07');
29 assert(f.toupper(L'.') == L'.');
30 assert(f.toupper(L'a') == L'A');
31 assert(f.toupper(L'1') == L'1');
  /bionic/libstdc++/include/
cctype 55 using ::toupper;
  /external/openssl/crypto/
o_str.c 74 int res = toupper(*str1) - toupper(*str2);
  /external/webkit/Source/JavaScriptCore/wtf/
DisallowCType.h 55 #undef toupper macro
72 #define toupper toupper_WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h macro
  /ndk/sources/cxx-stl/gabi++/include/
cctype 55 using ::toupper;
  /ndk/sources/cxx-stl/system/include/
cctype 55 using ::toupper;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cctype 53 using ::toupper;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cctype 53 using ::toupper;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cctype 55 using ::toupper;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cctype 55 using ::toupper;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cctype 55 using ::toupper;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cctype 55 using ::toupper;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cctype 55 using ::toupper;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cctype 55 using ::toupper;
  /system/extras/tests/bionic/libstdc++/
test_cctype.cpp 77 #ifdef toupper
90 using std::toupper;
  /external/stlport/stlport/stl/
_cctype.h 44 using _STLP_VENDOR_CSTD::toupper;
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
ctype_h.pass.cpp 68 #ifdef toupper
69 #error toupper defined
87 static_assert((std::is_same<decltype(toupper(0)), int>::value), "");
102 assert(toupper('a') == 'A');
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 44 using _STLP_VENDOR_CSTD::toupper;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 44 using _STLP_VENDOR_CSTD::toupper;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 44 using _STLP_VENDOR_CSTD::toupper;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 44 using _STLP_VENDOR_CSTD::toupper;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cctype.h 44 using _STLP_VENDOR_CSTD::toupper;

Completed in 4340 milliseconds

1 2 3 4 5 6 7 8 91011>>