Home
last modified time | relevance | path

Searched refs:toupper (Results 1 - 25 of 95) sorted by relevance

1234

/third_party/musl/libc-test/src/functionalext/supplement/ctype/
H A Dtoupper.c22 * @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 Dctype_toupper_test.cpp13 * @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 Dtoupper.c3 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 Dtoupper.c3 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 Dtoupper.c3 int toupper(int c) in toupper() function
11 return toupper(c); in __toupper_l()
/third_party/ffmpeg/ffbuild/
H A Dlibversion.sh0 toupper(){
6 ucname=$(toupper ${name})
1 toupper(){ global() function
/third_party/musl/src/ctype/
H A Dtoupper.c7 int toupper(int c) in toupper() function
24 return toupper(c); in __toupper_l()
/third_party/toybox/toys/posix/
H A Dlogger.c46 if (toupper(str[i]) != toupper(names[try][i])) break; in arrayfind()
/third_party/gptfdisk/
H A Dsupport.cc115 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 Dutils.cc270 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 DdeStringUtil.cpp58 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 Dctype.c20 {int(*p)(int) = toupper;} in f()
/third_party/musl/porting/linux/user/include/
H A Dctype.h23 int toupper(int);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dctype.h23 int toupper(int);
/third_party/musl/porting/uniproton/kernel/include/
H A Dctype.h23 int toupper(int);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dctype.h23 int toupper(int);
/third_party/musl/include/
H A Dctype.h23 int toupper(int);
/third_party/python/Include/
H A Dpyport.h492 #undef toupper macro
493 #define toupper(c) towupper(btowc(c)) macro
/third_party/toybox/kconfig/lxdialog/
H A Dchecklist.c206 if (toupper(key) == toupper(item_str()[0])) in dialog_checklist()
/third_party/ltp/lib/
H A Dtst_kvercmp.c159 *p = toupper((unsigned char)*p); in tst_kvcmp_distname()
/third_party/pcre2/pcre2/src/
H A Dpcre2_maketables.c101 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i);
/third_party/mesa3d/src/broadcom/clif/
H A Dv3dx_dump.c52 name[j++] = toupper(xml_name[i]); in clif_name()
/third_party/lwip/src/include/lwip/
H A Darch.h235 #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 DOcamlGCPrinter.cpp62 SymName[Letter] = toupper(SymName[Letter]); in EmitCamlGlobal()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dascii_benchmark.cc99 BENCHMARK_TEMPLATE(BM_Ascii, std::toupper);

Completed in 11 milliseconds

1234