/third_party/musl/libc-test/src/functionalext/supplement/ctype/ |
H A D | toupper.c | 22 * @tc.desc : Convert lowercase to uppercase via toupper 28 char result = toupper(ch); in toupper_0100() 30 t_error("%s toupper get result is %c but want get value A ", __func__, result); in toupper_0100() 36 * @tc.desc : Test the result of passing numbers into toupper 42 char result = toupper(ch); in toupper_0200() 44 t_error("%s toupper get result is %c but want get value %c ", __func__, result, ch); in toupper_0200() 50 * @tc.desc : Test the result of passing capital letters into toupper 56 char result = toupper(ch); in toupper_0300() 58 t_error("%s toupper get result is %c but want get value %c ", __func__, result, ch); in toupper_0300() 64 * @tc.desc : Test the result of passing special characters into toupper [all...] |
/third_party/musl/libc-test/src/functionalext/supplement/ctype/ctype_gtest/ |
H A D | ctype_toupper_test.cpp | 13 * @tc.desc: Validate the functionality of the toupper interface, including the conversion of non-letter characters and 19 EXPECT_TRUE(toupper('?') == '?'); in HWTEST_F() 20 EXPECT_TRUE(toupper('b') == 'B'); in HWTEST_F() 21 EXPECT_TRUE(toupper('C') == 'C'); in HWTEST_F()
|
/third_party/musl/porting/uniproton/kernel/src/ctype/ |
H A D | toupper.c | 3 int toupper(int c) in toupper() function 11 return toupper(c); in __toupper_l()
|
/third_party/musl/porting/liteos_m/kernel/src/ctype/ |
H A D | toupper.c | 3 int toupper(int c) in toupper() function 11 return toupper(c); in __toupper_l()
|
/third_party/musl/porting/liteos_a/kernel/src/ctype/ |
H A D | toupper.c | 3 int toupper(int c) in toupper() function 11 return toupper(c); in __toupper_l()
|
/third_party/ffmpeg/ffbuild/ |
H A D | libversion.sh | 0 toupper(){ 6 ucname=$(toupper ${name}) 1 toupper(){ global() function
|
/third_party/musl/src/ctype/ |
H A D | toupper.c | 7 int toupper(int c) in toupper() function 24 return toupper(c); in __toupper_l()
|
/third_party/toybox/toys/posix/ |
H A D | logger.c | 46 if (toupper(str[i]) != toupper(names[try][i])) break; in arrayfind()
|
/third_party/gptfdisk/ |
H A D | support.cc | 115 response = toupper(line[0]); in GetYN() 166 suffix = toupper(suffix); in IeeeToInt() 174 suffix = toupper(suffix); in IeeeToInt()
|
/third_party/node/deps/v8/src/torque/ |
H A D | utils.cc | 270 result += toupper(current); in CapifyStringWithUnderscores() 285 current = toupper(current); in CamelifyString() 317 transform(path.begin(), path.end(), path.begin(), ::toupper); in UnderlinifyPath()
|
/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A 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()
|
/third_party/musl/libc-test/src/api/ |
H A D | ctype.c | 20 {int(*p)(int) = toupper;} in f()
|
/third_party/musl/porting/linux/user/include/ |
H A D | ctype.h | 23 int toupper(int);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | ctype.h | 23 int toupper(int);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | ctype.h | 23 int toupper(int);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | ctype.h | 23 int toupper(int);
|
/third_party/musl/include/ |
H A D | ctype.h | 23 int toupper(int);
|
/third_party/python/Include/ |
H A D | pyport.h | 492 #undef toupper macro 493 #define toupper(c) towupper(btowc(c)) macro
|
/third_party/toybox/kconfig/lxdialog/ |
H A D | checklist.c | 206 if (toupper(key) == toupper(item_str()[0])) in dialog_checklist()
|
/third_party/ltp/lib/ |
H A D | tst_kvercmp.c | 159 *p = toupper((unsigned char)*p); in tst_kvcmp_distname()
|
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_maketables.c | 101 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i);
|
/third_party/mesa3d/src/broadcom/clif/ |
H A D | v3dx_dump.c | 52 name[j++] = toupper(xml_name[i]); in clif_name()
|
/third_party/lwip/src/include/lwip/ |
H A D | arch.h | 235 #define lwip_toupper(c) toupper((unsigned char)(c))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | OcamlGCPrinter.cpp | 62 SymName[Letter] = toupper(SymName[Letter]); in EmitCamlGlobal()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | ascii_benchmark.cc | 99 BENCHMARK_TEMPLATE(BM_Ascii, std::toupper);
|