HomeSort by relevance Sort by last modified time
    Searched refs:toUpper (Results 1 - 25 of 38) sorted by null

1 2

  /external/icu4c/samples/case/
case.cpp 54 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/
strcase.cpp 95 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(root locale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, upperRoot, (int32_t)(sizeof(upperRo (…)
    [all...]
transtst.cpp     [all...]
  /external/icu4c/common/
unistr_case.cpp 183 UnicodeString::toUpper() {
188 UnicodeString::toUpper(const Locale &locale) {
  /external/webkit/Source/JavaScriptCore/wtf/unicode/brew/
UnicodeBrew.cpp 37 UChar toUpper(UChar c)
100 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
UnicodeBrew.h 124 UChar toUpper(UChar);
129 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
  /external/webkit/Source/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.h 138 inline UChar32 toUpper(UChar32 c)
143 int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error);
UnicodeGLib.cpp 114 int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
  /external/webkit/Source/JavaScriptCore/wtf/unicode/wince/
UnicodeWinCE.cpp 35 UChar toUpper(UChar c)
109 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
UnicodeWinCE.h 135 UChar toUpper(UChar);
139 int toUpper(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
  /external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 215 inline UChar32 toUpper(UChar32 c)
217 return QChar::toUpper(uint32_t(c));
220 inline int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
248 qstring = qstring.toUpper();
  /external/webkit/Source/JavaScriptCore/wtf/unicode/icu/
UnicodeIcu.h 144 inline UChar32 toUpper(UChar32 c)
149 inline int toUpper(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
  /external/webkit/Source/WebCore/platform/graphics/
WidthIterator.cpp 148 if (!m_font->isSmallCaps() || c == toUpper(c))
151 const GlyphData& uppercaseGlyphData = m_font->glyphDataForCharacter(toUpper(c), rtl);
FontFastPath.cpp 49 UChar32 upperC = toUpper(c);
  /frameworks/native/include/utils/
String8.h 126 void toUpper();
127 void toUpper(size_t start, size_t numChars);
  /external/webkit/Source/JavaScriptCore/yarr/
YarrPattern.cpp 77 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))) {
    [all...]
YarrJIT.cpp     [all...]
  /frameworks/native/libs/utils/
String8.cpp 414 void String8::toUpper()
416 toUpper(0, size());
419 void String8::toUpper(size_t start, size_t length)
431 *buf = toupper(*buf);
  /external/icu4c/test/perf/charperf/
charperf.cpp 178 return new CharPerfFunction(toUpper, MIN_, MAX_);
charperf.h 169 inline void toUpper(UChar32 ch)
  /external/icu4c/samples/ustring/
ustring.cpp 388 printUnicodeString("full-uppercased/en: ", (t=s).toUpper(en));
390 printUnicodeString("full-uppercased/tr: ", (t=s).toUpper(tr));
  /external/webkit/Source/JavaScriptCore/runtime/
StringPrototype.cpp     [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.cpp 263 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/
tst_qwebplugindatabase.cpp 204 QCOMPARE(pluginForMimeType, database->pluginForMimeType(mimeType.toUpper()));
  /external/webkit/Tools/DumpRenderTree/qt/
EventSenderQt.cpp 312 code = string.unicode()->toUpper().unicode();

Completed in 792 milliseconds

1 2