Home
last modified time | relevance | path

Searched refs:toUpper (Results 1 - 25 of 63) sorted by relevance

123

/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeStringUtil.cpp72 string toUpper (const string& str) in toUpper() function
133 char toUpper (char c) in toUpper() function
164 DE_TEST_ASSERT(toUpper("FooBar") == "FOOBAR"); in StringUtil_selfTest()
195 DE_TEST_ASSERT(toUpper('a') == 'A'); in StringUtil_selfTest()
196 DE_TEST_ASSERT(toUpper('A') == 'A'); in StringUtil_selfTest()
H A DdeStringUtil.hpp46 std::string toUpper (const std::string& s);
52 char toUpper (char c);
/third_party/icu/icu4c/source/common/
H A Dunistr_case_locale.cpp45 UnicodeString::toUpper() { in toUpper() function in UnicodeString
51 UnicodeString::toUpper(const Locale &locale) { in toUpper() function in UnicodeString
H A Dustrcase_locale.cpp82 int32_t CaseMap::toUpper( in toUpper() function in CaseMap
/third_party/node/deps/icu-small/source/common/
H A Dunistr_case_locale.cpp45 UnicodeString::toUpper() { in toUpper() function in UnicodeString
51 UnicodeString::toUpper(const Locale &locale) { in toUpper() function in UnicodeString
H A Dustrcase_locale.cpp82 int32_t CaseMap::toUpper( in toUpper() function in CaseMap
/third_party/skia/third_party/externals/icu/source/common/
H A Dunistr_case_locale.cpp45 UnicodeString::toUpper() { in toUpper() function in UnicodeString
51 UnicodeString::toUpper(const Locale &locale) { in toUpper() function in UnicodeString
H A Dustrcase_locale.cpp82 int32_t CaseMap::toUpper( in toUpper() function in CaseMap
H A Ducasemap.cpp315 void toUpper(int32_t caseLocale, uint32_t options, in toUpper() function
570 void toUpper(uint32_t options, in toUpper() function
741 GreekUpper::toUpper(options, src, srcLength, sink, edits, errorCode); in ucasemap_internalUTF8ToUpper()
746 toUpper( in ucasemap_internalUTF8ToUpper()
/third_party/icu/icu4c/source/test/intltest/
H A 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(roo in TestCaseConversion()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A 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/
H A 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/icu/icu4c/source/samples/case/
H A 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/samples/case/
H A 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/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCaseMap.java46 public static Upper toUpper() { return Upper.DEFAULT; } in toUpper() method in CaseMap
130 * @see #toUpper()
161 return CaseMapImpl.toUpper(getCaseLocale(locale), internalOptions, src); in apply()
183 return CaseMapImpl.toUpper(getCaseLocale(locale), internalOptions, src, dest, edits); in apply()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DCaseMap.java44 public static Upper toUpper() { return Upper.DEFAULT; } in toUpper() method in CaseMap
121 * @see #toUpper()
149 return CaseMapImpl.toUpper(getCaseLocale(locale), internalOptions, src); in apply()
170 return CaseMapImpl.toUpper(getCaseLocale(locale), internalOptions, src, dest, edits); in apply()
/third_party/node/deps/v8/src/regexp/
H A Dspecial-case.h93 icu::UnicodeString& u = s.toUpper(); in Canonicalize()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DLocaleIDParser.java251 append(AsciiUtil.toUpper(c)); in parseScript()
314 append(AsciiUtil.toUpper(c)); in parseCountry()
430 c = AsciiUtil.toUpper(c); in parseVariant()
H A DCaseMapImpl.java630 public static String toUpper(int caseLocale, int options, CharSequence src) { in toUpper() method in CaseMapImpl
638 StringBuilder replacementChars = toUpper( in toUpper()
642 return toUpper(caseLocale, options, src, in toUpper()
647 public static <A extends Appendable> A toUpper(int caseLocale, int options, in toUpper() method in CaseMapImpl
654 return GreekUpper.toUpper(options, src, dest, edits); in toUpper()
1395 private static <A extends Appendable> A toUpper(int options, in toUpper() method in CaseMapImpl.GreekUpper
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DLocaleIDParser.java253 append(AsciiUtil.toUpper(c)); in parseScript()
316 append(AsciiUtil.toUpper(c)); in parseCountry()
432 c = AsciiUtil.toUpper(c); in parseVariant()
H A DCaseMapImpl.java624 public static String toUpper(int caseLocale, int options, CharSequence src) { in toUpper() method in CaseMapImpl
632 StringBuilder replacementChars = toUpper( in toUpper()
636 return toUpper(caseLocale, options, src, in toUpper()
641 public static <A extends Appendable> A toUpper(int caseLocale, int options, in toUpper() method in CaseMapImpl
648 return GreekUpper.toUpper(options, src, dest, edits); in toUpper()
1320 private static <A extends Appendable> A toUpper(int options, in toUpper() method in CaseMapImpl.GreekUpper
/third_party/skia/modules/skunicode/tests/
H A DSkUnicodeTest.cpp148 auto icu_result1 = icu->toUpper(lower); in UNIX_ONLY_TEST()
150 auto icu_result2 = icu->toUpper(upper); in UNIX_ONLY_TEST()
/third_party/icu/icu4c/source/common/unicode/
H A Dcasemap.h101 static int32_t toUpper(
/third_party/node/deps/icu-small/source/common/unicode/
H A Dcasemap.h101 static int32_t toUpper(
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dcasemap.h101 static int32_t toUpper(

Completed in 18 milliseconds

123