/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
D | toupper_1.pass.cpp | 33 assert(f.toupper(' ') == ' '); in main() 34 assert(f.toupper('A') == 'A'); in main() 35 assert(f.toupper('\x07') == '\x07'); in main() 36 assert(f.toupper('.') == '.'); in main() 37 assert(f.toupper('a') == 'A'); in main() 38 assert(f.toupper('1') == '1'); in main() 39 assert(f.toupper('\xDA') == '\xDA'); in main() 40 assert(f.toupper('\xFA') == '\xDA'); in main() 49 assert(f.toupper(' ') == ' '); in main() 50 assert(f.toupper('A') == 'A'); in main() [all …]
|
D | toupper_many.pass.cpp | 35 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 52 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 69 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 86 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main()
|
/external/libcxx/test/std/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 …]
|
/external/curl/lib/ |
D | strequal.c | 44 if(toupper(*first) != toupper(*second)) { in curl_strequal() 50 return toupper(*first) == toupper(*second); in curl_strequal() 67 if(toupper(*first) != toupper(*second)) { in curl_strnequal() 77 return toupper(*first) == toupper(*second); in curl_strnequal()
|
/external/libcxx/test/std/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/std/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); 155 #ifdef toupper 156 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_toupper(int __c) {return toupper(__c);} 157 #undef toupper 158 inline _LIBCPP_INLINE_VISIBILITY int toupper(int __c) {return __libcpp_toupper(__c);} 159 #else // toupper 160 using ::toupper; 161 #endif // toupper
|
/external/libcxx/test/std/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/std/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/webrtc/webrtc/base/ |
D | stringutils.cc | 34 if ((toupper(*pattern) == toupper(*target)) in string_match() 42 if (toupper(*pattern) != toupper(*target)) { in string_match()
|
D | sslfingerprint.cc | 84 fingerprint.begin(), ::toupper); in GetRfc4572Fingerprint()
|
/external/llvm/test/CodeGen/X86/ |
D | pr2924.ll | 9 entry_std.string.toupper: 18 entry_std.string.toupper:
|
/external/valgrind/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 | 58 char operator() (char c) { return std::toupper(c, loc); } in operator ()() 135 return std::toupper(c, std::locale::classic()); in toUpper()
|
/external/pdfium/third_party/lcms2-2.6/src/ |
D | cmserr.c | 37 while (toupper(*us1) == toupper(*us2++)) in cmsstrcasecmp() 41 return (toupper(*us1) - toupper(*--us2)); in cmsstrcasecmp()
|
/external/gptfdisk/ |
D | support.cc | 87 response = toupper(line[0]); in GetYN() 159 suffix = toupper(suffix); in IeeeToInt()
|
/external/avahi/avahi-core/ |
D | util.c | 107 *c = (char) toupper(*c); in avahi_strup()
|
/external/autotest/client/deps/fakemodem/src/ |
D | fakemodem.c | 460 if (toupper (cmd[0]) >= 'A' && toupper (cmd[0]) <= 'Z') { in handle_cmd() 461 switch (toupper (cmd[0])) { in handle_cmd()
|
/external/toybox/kconfig/lxdialog/ |
D | checklist.c | 206 if (toupper(key) == toupper(item_str()[0])) in dialog_checklist()
|
/external/pcre/dist/ |
D | pcre_maketables.c | 98 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i); in pcre_maketables()
|
/external/toybox/toys/posix/ |
D | touch.c | 59 if (toupper(date[i-1])=='Z') {
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/ |
D | minus1.pass | 55 str[i] = std::toupper(str[i]);
|
/external/ppp/pppd/plugins/ |
D | winbind.c | 182 if (!(p1 = strchr(hexchars, toupper(strhex[i])))) in strhex_to_str() 187 if (!(p2 = strchr(hexchars, toupper(strhex[i])))) in strhex_to_str()
|