/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/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/linux-tools-perf/src/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/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/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()
|
/external/gptfdisk/ |
D | support.cc | 87 response = toupper(line[0]); in GetYN() 159 suffix = toupper(suffix); in IeeeToInt()
|
/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/kconfig/lxdialog/ |
D | checklist.c | 206 if (toupper(key) == toupper(item_str()[0])) in dialog_checklist()
|
/external/lzma/CPP/Common/ |
D | MyString.cpp | 132 return toupper(c); in MyCharUpper()
|
/external/toybox/toys/posix/ |
D | touch.c | 57 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/tremolo/Tremolo/ |
D | treminfo.c | 67 if(toupper(s1[c]) != toupper(s2[c])) in tagcompare()
|
/external/e2fsprogs/e2fsck/ |
D | message.c | 255 fputc(toupper(*str++), f); in expand_at_expression() 431 fputc(toupper(*m++), f); in expand_percent_expression()
|
/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()
|
/external/libpcap/lbl/ |
D | os-sunos4.h | 185 int toupper(int);
|