/external/libcxx/test/localization/locale.categories/category.ctype/locale.ctype.byname/ |
D | toupper_1.pass.cpp | 32 assert(f.toupper(' ') == ' '); in main() 33 assert(f.toupper('A') == 'A'); in main() 34 assert(f.toupper('\x07') == '\x07'); in main() 35 assert(f.toupper('.') == '.'); in main() 36 assert(f.toupper('a') == 'A'); in main() 37 assert(f.toupper('1') == '1'); in main() 38 assert(f.toupper('\xDA') == '\xDA'); in main() 39 assert(f.toupper('\xFA') == '\xDA'); in main() 48 assert(f.toupper(' ') == ' '); in main() 49 assert(f.toupper('A') == 'A'); in main() [all …]
|
D | toupper_many.pass.cpp | 34 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 51 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 68 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 85 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main()
|
/external/libcxx/test/localization/locales/locale.convenience/conversions/conversions.character/ |
D | toupper.pass.cpp | 20 assert(std::toupper(' ', l) == ' '); in main() 21 assert(std::toupper('<', l) == '<'); in main() 22 assert(std::toupper('\x8', l) == '\x8'); in main() 23 assert(std::toupper('A', l) == 'A'); in main() 24 assert(std::toupper('a', l) == 'A'); in main() 25 assert(std::toupper('z', l) == 'Z'); in main() 26 assert(std::toupper('3', l) == '3'); in main() 27 assert(std::toupper('.', l) == '.'); in main() 28 assert(std::toupper('f', l) == 'F'); in main() 29 assert(std::toupper('9', l) == '9'); in main() [all …]
|
D | Android.mk | 19 test_name := localization/locales/locale.convenience/conversions/conversions.character/toupper 20 test_src := toupper.pass.cpp
|
/external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
D | toupper_1.pass.cpp | 26 assert(f.toupper(' ') == ' '); in main() 27 assert(f.toupper('A') == 'A'); in main() 28 assert(f.toupper('\x07') == '\x07'); in main() 29 assert(f.toupper('.') == '.'); in main() 30 assert(f.toupper('a') == 'A'); in main() 31 assert(f.toupper('1') == '1'); in main()
|
D | toupper_many.pass.cpp | 28 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main()
|
/external/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/ |
D | toupper_1.pass.cpp | 26 assert(f.toupper(L' ') == L' '); in main() 27 assert(f.toupper(L'A') == L'A'); in main() 28 assert(f.toupper(L'\x07') == L'\x07'); in main() 29 assert(f.toupper(L'.') == L'.'); in main() 30 assert(f.toupper(L'a') == L'A'); in main() 31 assert(f.toupper(L'1') == L'1'); in main()
|
D | toupper_many.pass.cpp | 28 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main()
|
/external/libcxx/include/ |
D | cctype | 33 int toupper(int c); 154 #ifdef toupper 155 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_toupper(int __c) {return toupper(__c);} 156 #undef toupper 157 inline _LIBCPP_INLINE_VISIBILITY int toupper(int __c) {return __libcpp_toupper(__c);} 158 #else // toupper 159 using ::toupper; 160 #endif // toupper
|
/external/libcxx/test/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 68 #ifdef toupper 69 #error toupper defined 87 static_assert((std::is_same<decltype(toupper(0)), int>::value), ""); in main() 102 assert(toupper('a') == 'A'); in main()
|
/external/libcxx/test/strings/c.strings/ |
D | cctype.pass.cpp | 68 #ifdef toupper 69 #error toupper defined 87 static_assert((std::is_same<decltype(std::toupper(0)), int>::value), ""); in main() 102 assert(toupper('a') == 'A'); in main()
|
/external/chromium_org/third_party/webrtc/base/ |
D | stringutils.cc | 34 if ((toupper(*pattern) == toupper(*target)) in string_match() 42 if (toupper(*pattern) != toupper(*target)) { in string_match()
|
/external/openssl/crypto/ |
D | o_str.c | 74 int res = toupper(*str1) - toupper(*str2); in OPENSSL_strncasecmp()
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
D | util.h | 205 #undef toupper 226 (sane_istest(toupper(x), GIT_ALPHA | GIT_DIGIT) && toupper(x) < 'G') 233 #define toupper(x) sane_case((unsigned char)(x), 0) macro
|
/external/stlport/test/unit/ |
D | ctype_facets_test.cpp | 115 CPPUNIT_ASSERT( ct.toupper('a') == 'A' ); in _ctype_facet() 116 CPPUNIT_ASSERT( ct.toupper('A') == 'A' ); in _ctype_facet() 117 CPPUNIT_ASSERT( ct.toupper('1') == '1' ); in _ctype_facet() 124 ct.toupper(range, range + sizeof(range)); in _ctype_facet() 259 CPPUNIT_CHECK( wct.toupper(L'a') == L'A' ); in _ctype_facet_w() 260 CPPUNIT_CHECK( wct.toupper(L'A') == L'A' ); in _ctype_facet_w() 261 CPPUNIT_CHECK( wct.toupper(L'1') == L'1' ); in _ctype_facet_w() 268 wct.toupper(range, range + sizeof(range) / sizeof(wchar_t)); in _ctype_facet_w()
|
/external/llvm/test/CodeGen/X86/ |
D | pr2924.ll | 9 entry_std.string.toupper: 18 entry_std.string.toupper:
|
/external/stlport/stlport/stl/ |
D | _ctype.h | 91 char (toupper)(char __c) const { return do_toupper(__c); } 92 const char* (toupper)(char* __low, const char* __high) const { 198 wchar_t (toupper)(wchar_t __c) const { return do_toupper(__c); } in wchar_t() argument 199 const wchar_t* (toupper)(wchar_t* __low, const wchar_t* __high) const
|
D | _cctype.h | 44 using _STLP_VENDOR_CSTD::toupper;
|
/external/yaffs2/yaffs2/ |
D | yportenv.h | 49 #define yaffs_toupper(a) toupper(a) 111 #define yaffs_toupper(a) toupper(a)
|
/external/valgrind/main/coregrind/m_demangle/ |
D | safe-ctype.h | 148 #undef toupper 149 #define toupper(c) do_not_use_toupper_with_safe_ctype macro
|
/external/deqp/framework/delibs/decpp/ |
D | deStringUtil.cpp | 57 char operator() (char c) { return std::toupper(c, loc); } in operator ()() 118 return std::toupper(c, std::locale::classic()); in toUpper()
|
/external/chromium_org/third_party/codesighs/ |
D | nm2tsv.c | 213 switch(toupper(*type)) in nm2tsv() 248 fprintf(inOptions->mOutput, "%c\t", toupper(*type)); in nm2tsv() 253 fprintf(inOptions->mOutput, "UNDEF:%s:%c\t", module, toupper(*type)); in nm2tsv()
|
/external/stlport/stlport/ |
D | locale | 77 #undef toupper 127 inline _CharT toupper(_CharT c, const locale& loc) 128 { return (use_facet<ctype<_CharT> >(loc)).toupper(c); }
|
/external/chromium_org/third_party/sqlite/src/tool/ |
D | mkopts.tcl | 48 put_item ${prefix}_[string toupper $name],
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
D | cmserr.c | 37 while (toupper(*us1) == toupper(*us2++)) in cmsstrcasecmp() 41 return (toupper(*us1) - toupper(*--us2)); in cmsstrcasecmp()
|