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

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringHash.h 68 template<typename T> static inline UChar foldCase(T ch)
70 return WTF::Unicode::foldCase(ch);
75 return StringHasher::computeHashAndMaskTop8Bits<UChar, foldCase<UChar> >(data, length);
87 return StringHasher::computeHashAndMaskTop8Bits<LChar, foldCase<LChar> >(data, length);
StringImpl.cpp 789 PassRefPtr<StringImpl> StringImpl::foldCase()
830 int32_t realLength = Unicode::foldCase(data, length, characters16(), m_length, &error);
834 Unicode::foldCase(data, realLength, characters16(), m_length, &error);
    [all...]
WTFString.cpp 415 String String::foldCase() const
419 return m_impl->foldCase();
    [all...]
  /external/clang/test/PCH/
cxx-templates.cpp 66 static inline char foldCase(char) {
71 return StringHasher::createHash<char, foldCase>(data, length);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TypeAhead.cpp 101 // a matching element. This code uses foldCase to work around the fact that
104 String prefixWithCaseFolded(prefix.foldCase());
108 if (stripLeadingWhiteSpace(text).foldCase().startsWith(prefixWithCaseFolded))
  /external/chromium_org/third_party/icu/source/common/
unistr_case.cpp 144 UnicodeString::foldCase(uint32_t options) {
164 return copy.foldCase().hashCode();
uniset_closure.cpp 241 str.foldCase();
265 (str = *pStr).foldCase();
uprops.cpp 600 UnicodeString kc2=nfkc->normalize(folded2String.foldCase(), *pErrorCode);
  /external/icu/icu4c/source/common/
unistr_case.cpp 144 UnicodeString::foldCase(uint32_t options) {
164 return copy.foldCase().hashCode();
uniset_closure.cpp 241 str.foldCase();
265 (str = *pStr).foldCase();
uprops.cpp 600 UnicodeString kc2=nfkc->normalize(folded2String.foldCase(), *pErrorCode);
  /external/chromium_org/third_party/WebKit/Source/platform/text/
SegmentedString.h 263 ASSERT_UNUSED(expectedCharacter, WTF::Unicode::foldCase(currentChar()) == WTF::Unicode::foldCase(expectedCharacter));
  /external/chromium_org/third_party/WebKit/Source/wtf/unicode/icu/
UnicodeIcu.h 117 inline UChar32 foldCase(UChar32 c)
122 inline int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
  /libcore/libart/src/main/java/java/lang/
String.java 515 private char foldCase(char ch) {
568 c1 = foldCase(c1);
569 c2 = foldCase(c2);
695 if (c1 != c2 && foldCase(c1) != foldCase(c2)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SpaceSplitString.cpp 163 string = string.foldCase();
  /external/chromium_org/third_party/icu/source/test/intltest/
strcase.cpp 311 (t=s).foldCase();
313 errln("error in foldCase(\"" + s + "\", default)=\"" + t + "\" but expected \"" + f + "\"");
317 (t=s).foldCase(U_FOLD_CASE_EXCLUDE_SPECIAL_I);
319 errln("error in foldCase(\"" + s + "\", U_FOLD_CASE_EXCLUDE_SPECIAL_I)=\"" + t + "\" but expected \"" + g + "\"");
370 name="foldCase";
371 result.foldCase(options);
558 cf.foldCase();
tstnorm.cpp 859 r1.foldCase(options);
860 r2.foldCase(options);
897 t1.foldCase(options);
898 t2.foldCase(options);
    [all...]
  /external/icu/icu4c/source/test/intltest/
strcase.cpp 311 (t=s).foldCase();
313 errln("error in foldCase(\"" + s + "\", default)=\"" + t + "\" but expected \"" + f + "\"");
317 (t=s).foldCase(U_FOLD_CASE_EXCLUDE_SPECIAL_I);
319 errln("error in foldCase(\"" + s + "\", U_FOLD_CASE_EXCLUDE_SPECIAL_I)=\"" + t + "\" but expected \"" + g + "\"");
370 name="foldCase";
371 result.foldCase(options);
558 cf.foldCase();
tstnorm.cpp 859 r1.foldCase(options);
860 r2.foldCase(options);
897 t1.foldCase(options);
898 t2.foldCase(options);
    [all...]
  /external/chromium_org/third_party/icu/source/samples/ustring/
ustring.cpp 396 printUnicodeString("full-case-folded/default: ", (t=s).foldCase(U_FOLD_CASE_DEFAULT));
398 printUnicodeString("full-case-folded/Turkic: ", (t=s).foldCase(U_FOLD_CASE_EXCLUDE_SPECIAL_I));
  /external/icu/icu4c/source/samples/ustring/
ustring.cpp 396 printUnicodeString("full-case-folded/default: ", (t=s).foldCase(U_FOLD_CASE_DEFAULT));
398 printUnicodeString("full-case-folded/Turkic: ", (t=s).foldCase(U_FOLD_CASE_EXCLUDE_SPECIAL_I));
  /external/chromium_org/third_party/WebKit/Source/web/
PopupListBox.cpp 343 // search for a matching element. This code uses foldCase to work around the
346 String prefixWithCaseFolded(prefix.foldCase());
353 if (stripLeadingWhiteSpace(m_items[index]->label).foldCase().startsWith(prefixWithCaseFolded)) {
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
smpdtfmt.cpp     [all...]
tznames_impl.cpp 189 foldedKey.fastCopyFrom(key).foldCase();
345 tmp.foldCase();
    [all...]
  /external/icu/icu4c/source/i18n/
tznames_impl.cpp 189 foldedKey.fastCopyFrom(key).foldCase();
345 tmp.foldCase();
    [all...]

Completed in 530 milliseconds

1 2