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

12

/external/icu4c/samples/case/
H A Dcase.cpp54 string.toUpper(); /* string = "THIS IS A TEST" */
71 string.toUpper(Locale("tr", "TR")); /* Turkish upper case map string =
73 u_fprintf(out, "\nlower.toUpper: ");
/external/icu4c/test/intltest/
H A Dstrcase.cpp95 test4.toUpper(Locale(""));
98 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
101 test4.toUpper(Locale("tr", "TR"));
104 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
108 test3.toUpper(Locale("de", "DE"));
111 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test3 + "\".");
122 test4.toUpper();
125 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
164 s.setCharAt(0, beforeUpper[0]).toUpper(Locale(""));
168 errln("error in toUpper(roo
[all...]
H A Dtranstst.cpp1234 Transliterator* toUpper = local
1240 if (toUpper==0 || toLower==0 || toTitle==0) {
1242 delete toUpper;
1248 expect(*toUpper, "The quick brown fox jumped over the lazy dogs.",
1255 delete toUpper;
3433 target.toUpper(Locale::getUS());
/external/icu4c/common/
H A Dunistr_case.cpp183 UnicodeString::toUpper() { function in class:UnicodeString
188 UnicodeString::toUpper(const Locale &locale) { function in class:UnicodeString
/external/webkit/Source/JavaScriptCore/wtf/unicode/brew/
H A DUnicodeBrew.cpp37 UChar toUpper(UChar c) function in namespace:WTF::Unicode
100 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
H A DUnicodeBrew.h124 UChar toUpper(UChar);
129 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
/external/webkit/Source/JavaScriptCore/wtf/unicode/glib/
H A DUnicodeGLib.h138 inline UChar32 toUpper(UChar32 c) function in namespace:WTF::Unicode
143 int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error);
H A DUnicodeGLib.cpp114 int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) function in namespace:WTF::Unicode
/external/webkit/Source/JavaScriptCore/wtf/unicode/wince/
H A DUnicodeWinCE.cpp35 UChar toUpper(UChar c) function in namespace:WTF::Unicode
109 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError) function in namespace:WTF::Unicode
H A DUnicodeWinCE.h135 UChar toUpper(UChar);
139 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
/external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/
H A DUnicodeQt4.h215 inline UChar32 toUpper(UChar32 c) function in namespace:WTF::Unicode
217 return QChar::toUpper(uint32_t(c));
220 inline int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) function in namespace:WTF::Unicode
248 qstring = qstring.toUpper();
/external/webkit/Source/JavaScriptCore/wtf/unicode/icu/
H A DUnicodeIcu.h144 inline UChar32 toUpper(UChar32 c) function in namespace:WTF::Unicode
149 inline int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) function in namespace:WTF::Unicode
/external/webkit/Source/WebCore/platform/graphics/
H A DWidthIterator.cpp148 if (!m_font->isSmallCaps() || c == toUpper(c))
151 const GlyphData& uppercaseGlyphData = m_font->glyphDataForCharacter(toUpper(c), rtl);
H A DFontFastPath.cpp49 UChar32 upperC = toUpper(c);
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrPattern.cpp77 if (m_isCaseInsensitive && ((upper = Unicode::toUpper(ch)) != (lower = Unicode::toLower(ch)))) {
94 return ch != Unicode::toUpper(ch);
131 UChar upperCaseRangeBegin = Unicode::toUpper(unicodeCurr);
133 while ((++unicodeCurr <= hi) && isUnicodeLower(unicodeCurr) && (Unicode::toUpper(unicodeCurr) == (upperCaseRangeEnd + 1)))
329 if (m_isCaseInsensitive && ((upper = Unicode::toUpper(characterNext)) != (lower = Unicode::toLower(characterNext)))) {
391 if (m_pattern.m_ignoreCase && !isASCII(ch) && (Unicode::toUpper(ch) != Unicode::toLower(ch))) {
927 if (m_pattern.m_ignoreCase && ((upper = Unicode::toUpper(character)) != (lower = Unicode::toLower(character)))) {
H A DYarrJIT.cpp1287 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
1332 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
1356 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
1407 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
/external/icu4c/test/perf/charperf/
H A Dcharperf.cpp178 return new CharPerfFunction(toUpper, MIN_, MAX_);
H A Dcharperf.h169 inline void toUpper(UChar32 ch) function
/external/icu4c/samples/ustring/
H A Dustring.cpp388 printUnicodeString("full-uppercased/en: ", (t=s).toUpper(en));
390 printUnicodeString("full-uppercased/tr: ", (t=s).toUpper(tr));
/external/webkit/Source/JavaScriptCore/runtime/
H A DStringPrototype.cpp915 int length = Unicode::toUpper(buffer.data(), sSize, sData, sSize, &error);
918 length = Unicode::toUpper(buffer.data(), length, sData, sSize, &error);
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringImpl.cpp263 int32_t realLength = Unicode::toUpper(data, length, m_data, m_length, &error);
267 Unicode::toUpper(data, realLength, m_data, m_length, &error);
/external/webkit/Source/WebKit/qt/tests/qwebplugindatabase/
H A Dtst_qwebplugindatabase.cpp204 QCOMPARE(pluginForMimeType, database->pluginForMimeType(mimeType.toUpper()));
/external/webkit/Tools/DumpRenderTree/qt/
H A DEventSenderQt.cpp312 code = string.unicode()->toUpper().unicode();
/external/icu4c/common/unicode/
H A Dunistr.h2512 UnicodeString& toUpper(void);
2521 UnicodeString& toUpper(const Locale& locale);
/external/icu4c/i18n/
H A Ducol_bld.cpp1398 static void toUpper(const char* src, char* dst, uint32_t length) { function
1408 toUpper(name, buffer, 32);

Completed in 362 milliseconds

12