Searched refs:toLower (Results 1 - 25 of 35) sorted by relevance

12

/external/icu4c/samples/case/
H A Dcase.cpp57 string.toLower(); /* string = "this is a test" */
65 string.toLower(Locale("tr", "TR")); /* Turkish lower case map string =
67 u_fprintf(out, "\nupper.toLower: ");
/external/icu4c/test/intltest/
H A Dstrcase.cpp79 test4.toLower(Locale(""));
82 errln("1. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
85 test4.toLower(Locale("tr", "TR"));
88 errln("2. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
115 test4.toLower(Locale("el", "GR"));
118 errln("toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
146 s.toLower("");
150 errln("error in toLower(root locale)=\"" + s + "\" expected \"" + UnicodeString(FALSE, lowerRoot, (int32_t)(sizeof(lowerRoot)/U_SIZEOF_UCHAR)) + "\"");
155 s.setCharAt(0, beforeLower[0]).toLower(Locale("tr"));
159 errln("error in toLower(turkis
[all...]
H A Dtranstst.cpp1236 Transliterator* toLower = local
1240 if (toUpper==0 || toLower==0 || toTitle==0) {
1243 delete toLower;
1250 expect(*toLower, "The quIck brown fOX jUMPED OVER THE LAzY dogs.",
1256 delete toLower;
3430 target.toLower(Locale::getUS());
/external/icu4c/common/
H A Dunistr_case.cpp173 UnicodeString::toLower() { function in class:UnicodeString
178 UnicodeString::toLower(const Locale &locale) { function in class:UnicodeString
/external/webkit/Source/JavaScriptCore/wtf/unicode/brew/
H A DUnicodeBrew.cpp32 UChar toLower(UChar c) function in namespace:WTF::Unicode
77 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError) function in namespace:WTF::Unicode
H A DUnicodeBrew.h122 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
125 UChar toLower(UChar);
/external/webkit/Source/JavaScriptCore/wtf/unicode/glib/
H A DUnicodeGLib.h131 int toLower(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error);
133 inline UChar32 toLower(UChar32 c) function in namespace:WTF::Unicode
H A DUnicodeGLib.cpp109 int toLower(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.cpp30 UChar toLower(UChar c) function in namespace:WTF::Unicode
85 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError) function in namespace:WTF::Unicode
H A DUnicodeWinCE.h134 UChar toLower(UChar);
138 int toLower(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
/external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/
H A DUnicodeQt4.h157 inline UChar32 toLower(UChar32 ch) function in namespace:WTF::Unicode
159 return QChar::toLower(uint32_t(ch));
162 inline int toLower(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) function in namespace:WTF::Unicode
190 qstring = qstring.toLower();
/external/webkit/Source/WebCore/platform/
H A DUUID.cpp61 String canonicalUuidStr = uuid.toString().mid(1, 36).toLower(); // remove opening and closing bracket and make it lower.
H A DMIMETypeRegistry.cpp105 if (formats.at(i).toLower().startsWith("svg"))
/external/webkit/Source/WebKit2/WebProcess/qt/
H A DWebProcessMainQt.cpp106 QString protocol = query.protocolTag().toLower();
/external/webkit/Source/JavaScriptCore/wtf/unicode/icu/
H A DUnicodeIcu.h131 inline int toLower(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) function in namespace:WTF::Unicode
139 inline UChar32 toLower(UChar32 c) function in namespace:WTF::Unicode
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrPattern.cpp77 if (m_isCaseInsensitive && ((upper = Unicode::toUpper(ch)) != (lower = Unicode::toLower(ch)))) {
88 return ch != Unicode::toLower(ch);
125 UChar lowerCaseRangeBegin = Unicode::toLower(unicodeCurr);
127 while ((++unicodeCurr <= hi) && isUnicodeUpper(unicodeCurr) && (Unicode::toLower(unicodeCurr) == (lowerCaseRangeEnd + 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.cpp1285 state.jumpToBacktrack(this, branch32(NotEqual, character, Imm32(Unicode::toLower(ch))));
1287 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
1330 state.jumpToBacktrack(this, branch32(NotEqual, character, Imm32(Unicode::toLower(ch))));
1332 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
1354 failures.append(branch32(NotEqual, character, Imm32(Unicode::toLower(ch))));
1356 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
1405 branch32(NotEqual, character, Imm32(Unicode::toLower(ch))).linkTo(hardFail, this);
1407 ASSERT(!m_pattern.m_ignoreCase || (Unicode::toLower(ch) == Unicode::toUpper(ch)));
/external/icu4c/test/perf/charperf/
H A Dcharperf.cpp173 return new CharPerfFunction(toLower, MIN_, MAX_);
H A Dcharperf.h164 inline void toLower(UChar32 ch) function
/external/icu4c/samples/ustring/
H A Dustring.cpp384 printUnicodeString("full-lowercased/en: ", (t=s).toLower(en));
386 printUnicodeString("full-lowercased/tr: ", (t=s).toLower(tr));
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DMediaPlayerPrivateQt.cpp201 const QString scheme = rUrl.scheme().toLower();
232 if (documentUrl.scheme().toLower() == QString::fromLatin1("http") || scheme == QString::fromLatin1("https"))
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DFrameLoaderClientQt.cpp1050 && (url.scheme().toLower() == QLatin1String("http") || url.scheme().toLower() == QLatin1String("https"))
1053 && url.host().toLower() != QLatin1String("localhost")) {
/external/webkit/Source/JavaScriptCore/runtime/
H A DStringPrototype.cpp875 int length = Unicode::toLower(buffer.data(), sSize, sData, sSize, &error);
878 length = Unicode::toLower(buffer.data(), length, sData, sSize, &error);
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringImpl.cpp229 int32_t realLength = Unicode::toLower(data, length, m_data, m_length, &error);
233 Unicode::toLower(data, realLength, m_data, m_length, &error);
/external/webkit/Source/WebKit/qt/tests/qwebplugindatabase/
H A Dtst_qwebplugindatabase.cpp205 QCOMPARE(pluginForMimeType, database->pluginForMimeType(mimeType.toLower()));

Completed in 335 milliseconds

12