Home
last modified time | relevance | path

Searched full:toupper (Results 1 – 25 of 336) sorted by relevance

12345678910>>...14

/third_party/musl/libc-test/src/functionalext/supplement/ctype/
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/vk-gl-cts/framework/delibs/decpp/
DdeStringUtil.cpp54 struct ToUpper struct
57 ToUpper (void) : loc(locale::classic()) {} in ToUpper() argument
58 char operator() (char c) { return std::toupper(c, loc); } in operator ()()
72 string toUpper (const string& str) in toUpper() function
75 std::transform(str.begin(), str.end(), std::inserter(ret, ret.begin()), ToUpper()); in toUpper()
84 return ToUpper()(str[0]) + str.substr(1); in capitalize()
133 char toUpper (char c) in toUpper() function
135 return std::toupper(c, std::locale::classic()); in toUpper()
164 DE_TEST_ASSERT(toUpper("FooBar") == "FOOBAR"); in StringUtil_selfTest()
195 DE_TEST_ASSERT(toUpper('a') == 'A'); in StringUtil_selfTest()
[all …]
DdeStringUtil.hpp46 std::string toUpper (const std::string& s);
52 char toUpper (char c);
/third_party/musl/libc-test/src/functionalext/supplement/ctype/ctype_gtest/
Dctype_toupper_test.cpp13 …* @tc.desc: Validate the functionality of the toupper interface, including the conversion of non-l…
19 EXPECT_TRUE(toupper('?') == '?');
20 EXPECT_TRUE(toupper('b') == 'B');
21 EXPECT_TRUE(toupper('C') == 'C');
/third_party/icu/icu4c/source/test/intltest/
Dstrcase.cpp169 test4.toUpper(Locale("")); in TestCaseConversion()
172 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\"."); in TestCaseConversion()
175 test4.toUpper(Locale("tr", "TR")); in TestCaseConversion()
178 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\"."); in TestCaseConversion()
182 test3.toUpper(Locale("de", "DE")); in TestCaseConversion()
185 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test3 + "\"."); in TestCaseConversion()
196 test4.toUpper(); in TestCaseConversion()
199 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\"."); in TestCaseConversion()
238 s.setCharAt(0, beforeUpper[0]).toUpper(Locale("")); in TestCaseConversion()
242 …errln("error in toUpper(root locale)=\"" + s + "\" expected \"" + UnicodeString(false, upperRoot, … in TestCaseConversion()
[all …]
/third_party/skia/m133/third_party/externals/icu/source/test/intltest/
Dstrcase.cpp172 test4.toUpper(Locale("")); in TestCaseConversion()
175 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\"."); in TestCaseConversion()
178 test4.toUpper(Locale("tr", "TR")); in TestCaseConversion()
181 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\"."); in TestCaseConversion()
185 test3.toUpper(Locale("de", "DE")); in TestCaseConversion()
188 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test3 + "\"."); in TestCaseConversion()
199 test4.toUpper(); in TestCaseConversion()
202 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\"."); in TestCaseConversion()
241 s.setCharAt(0, beforeUpper[0]).toUpper(Locale("")); in TestCaseConversion()
245 …errln("error in toUpper(root locale)=\"" + s + "\" expected \"" + UnicodeString(false, upperRoot, … in TestCaseConversion()
[all …]
/third_party/musl/porting/liteos_a/kernel/src/ctype/
Dtoupper.c3 int toupper(int c) in toupper() function
11 return toupper(c); in __toupper_l()
/third_party/musl/porting/uniproton/kernel/src/ctype/
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/
Dtoupper.c3 int toupper(int c) in toupper() function
11 return toupper(c); in __toupper_l()
/third_party/benchmark/cmake/
DAddCXXCompilerFlag.cmake23 string(TOUPPER "HAVE_CXX_FLAG_${FLAG}" SANITIZED_FLAG)
39 string(TOUPPER "_${VARIANT}" VARIANT)
56 string(TOUPPER "_${VARIANT}" VARIANT)
DCXXFeatureCheck.cmake24 string(TOUPPER ${FILE} VAR)
25 string(TOUPPER "HAVE_${VAR}" FEATURE)
/third_party/python/Tools/scripts/
Dmake_ctype.py88 #define TOUPPER(c) (ctype_toupper[Py_CHARMASK(c)])
92 #undef toupper
93 #define toupper(c) undefined_toupper(c)
/third_party/musl/src/ctype/
Dtoupper.c7 int toupper(int c) in toupper() function
24 return toupper(c); in __toupper_l()
/third_party/ffmpeg/ffbuild/
Dlibversion.sh1 toupper(){ function
6 ucname=$(toupper ${name})
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/5.0/support_for_export_type/
Dsupport_for_export_type_8.ts30 Assert.equal(myShipString.toUpper(), 'SHIP');
36 Assert.equal(myCar.toUpper(), 'ALTO');
/third_party/skia/third_party/externals/icu/source/samples/case/
Dcase.cpp62 string.toUpper(); /* string = "THIS IS A TEST" */ in main()
79 string.toUpper(Locale("tr", "TR")); /* Turkish upper case map string = in main()
81 u_fprintf(out, "\nlower.toUpper: "); in main()
/third_party/icu/icu4c/source/samples/case/
Dcase.cpp62 string.toUpper(); /* string = "THIS IS A TEST" */ in main()
79 string.toUpper(Locale("tr", "TR")); /* Turkish upper case map string = in main()
81 u_fprintf(out, "\nlower.toUpper: "); in main()
/third_party/skia/m133/third_party/externals/icu/source/samples/case/
Dcase.cpp62 string.toUpper(); /* string = "THIS IS A TEST" */ in main()
79 string.toUpper(Locale("tr", "TR")); /* Turkish upper case map string = in main()
81 u_fprintf(out, "\nlower.toUpper: "); in main()
/third_party/skia/third_party/externals/icu/source/common/
Dunistr_case_locale.cpp45 UnicodeString::toUpper() { in toUpper() function in UnicodeString
51 UnicodeString::toUpper(const Locale &locale) { in toUpper() function in UnicodeString
/third_party/icu/icu4c/source/common/
Dunistr_case_locale.cpp45 UnicodeString::toUpper() { in toUpper() function in UnicodeString
51 UnicodeString::toUpper(const Locale &locale) { in toUpper() function in UnicodeString
/third_party/skia/m133/third_party/externals/icu/source/common/
Dunistr_case_locale.cpp45 UnicodeString::toUpper() { in toUpper() function in UnicodeString
51 UnicodeString::toUpper(const Locale &locale) { in toUpper() function in UnicodeString
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DAsciiUtil.java42 public static char toUpper(char c) { in toUpper() method in AsciiUtil
87 buf.append(toUpper(s.charAt(idx))); in toUpperString()
110 buf.append(toUpper(s.charAt(idx))); in toTitleString()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/
DAsciiUtil.java46 public static char toUpper(char c) { in toUpper() method in AsciiUtil
91 buf.append(toUpper(s.charAt(idx))); in toUpperString()
114 buf.append(toUpper(s.charAt(idx))); in toTitleString()
/third_party/nghttp2/cmake/
DFindLibevent.cmake65 string(TOUPPER "${COMPONENT}" COMPONENT_UPPER)
90 string(TOUPPER "${COMPONENT}" COMPONENT_UPPER)
/third_party/skia/m133/tools/unicode_comparison/go/bridge/
Dbridge.go95 func ToUpper(str string) SkString { func
99 ptr: C.toUpper(cs),

12345678910>>...14