/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('c') == 'C'); in main() 50 assert(f.toupper(' ') == ' '); in main() 51 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() 52 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 70 assert(f.toupper(&in[0], in.data() + in.size()) == in.data() + in.size()); in main() 88 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()
|
/external/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 70 #ifdef toupper 71 #error toupper defined 90 ASSERT_SAME_TYPE(int, decltype(std::toupper(0))); in main() 105 assert( std::toupper('a') == 'A'); in main()
|
/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/webrtc/webrtc/base/ |
D | stringutils.cc | 34 if ((toupper(*pattern) == toupper(*target)) in string_match() 42 if (toupper(*pattern) != toupper(*target)) { in string_match()
|
/external/libcxx/include/ |
D | cctype | 33 int toupper(int c); 99 #ifdef toupper 100 #undef toupper 117 using ::toupper;
|
D | ctype.h | 56 #undef toupper
|
/external/one-true-awk/testdir/ |
D | T.builtin | 28 $awk '{ printf("%s|%s|%s\n", tolower($0), toupper($0), $0)}' >foo1 30 diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower)' 35 $awk '{ printf("%s|%s|%s\n", tolower($0), toupper($0), $0)}') >foo1 37 diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower) for utf-8'
|
/external/clang/test/Sema/ |
D | libbuiltins-ctype-x86_64.c | 16 int toupper(int); 46 (void)toupper(x); in test()
|
D | libbuiltins-ctype-powerpc64.c | 16 int toupper(int); 46 (void)toupper(x); in test()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | pr2924.ll | 9 entry_std.string.toupper: 18 entry_std.string.toupper:
|
/external/llvm/test/CodeGen/X86/ |
D | pr2924.ll | 9 entry_std.string.toupper: 18 entry_std.string.toupper:
|
/external/ImageMagick/MagickCore/ |
D | string-private.h | 76 if (toupper(c1) != toupper(c2)) in StringLocateSubstring()
|
/external/toybox/toys/posix/ |
D | logger.c | 46 if (toupper(str[i]) != toupper(names[try][i])) break; in arrayfind()
|
/external/python/cpython2/Include/ |
D | bytes_methods.h | 69 #undef toupper 70 #define toupper(c) undefined_toupper(c) macro
|
/external/pdfium/core/fxcrt/ |
D | fx_system.cpp | 170 *str = toupper(*str); in FXSYS_strupr() 202 f = toupper(*str1); in FXSYS_stricmp() 203 l = toupper(*str2); in FXSYS_stricmp()
|
/external/u-boot/lib/ |
D | strto.c | 42 ? toupper(*cp) : *cp)-'A'+10) < base) { in simple_strtoul() 135 : (islower(*cp) ? toupper(*cp) : *cp) - 'A' + 10) < base) { in simple_strtoull()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/ |
D | ResourceScriptToken.cpp | 39 if (std::toupper(Representation.back()) == 'L') in rcGetAsInteger() 60 return TokenKind == Kind::Int && std::toupper(TokenValue.back()) == 'L'; in isLongInt() 246 if (std::toupper(Data[Pos]) == 'L') in consumeToken()
|
/external/grpc-grpc/src/compiler/ |
D | ruby_generator_string-inl.h | 91 new_string.append(1, ::toupper(s[0])); in Modularize() 94 new_string.append(1, ::toupper(s[i])); in Modularize()
|
/external/pdfium/third_party/lcms/src/ |
D | cmserr.c | 46 while (toupper(*us1) == toupper(*us2++)) in cmsstrcasecmp() 50 return (toupper(*us1) - toupper(*--us2)); in cmsstrcasecmp()
|
/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()
|