HomeSort by relevance Sort by last modified time
    Searched refs:foldCase (Results 1 - 25 of 38) 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 652 PassRefPtr<StringImpl> StringImpl::foldCase()
693 int32_t realLength = Unicode::foldCase(data, length, characters16(), m_length, &error);
697 Unicode::foldCase(data, realLength, characters16(), m_length, &error);
941 if (foldCase(*a++) != foldCase(bc))
951 if (foldCase(*a++) != foldCase(bc))
    [all...]
WTFString.cpp 401 String String::foldCase() const
405 return m_impl->foldCase();
    [all...]
  /external/clang/test/PCH/
cxx-templates.cpp 63 static inline char foldCase(char) {
68 return StringHasher::createHash<char, foldCase>(data, length);
  /external/chromium_org/third_party/WebKit/Source/core/html/
TypeAhead.cpp 100 // a matching element. This code uses foldCase to work around the fact that
103 String prefixWithCaseFolded(prefix.foldCase());
107 if (stripLeadingWhiteSpace(text).foldCase().startsWith(prefixWithCaseFolded))
  /external/icu4c/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 595 UnicodeString kc2=nfkc->normalize(folded2String.foldCase(), *pErrorCode);
  /external/chromium_org/third_party/icu/source/common/
unistr_case.cpp 212 UnicodeString::foldCase(uint32_t options) {
230 return copy.foldCase().hashCode();
uprops.cpp 621 UnicodeString kc2=nfkc->normalize(folded2String.foldCase(), *pErrorCode);
uniset_props.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
SegmentedString.h 264 ASSERT_UNUSED(expectedCharacter, WTF::Unicode::foldCase(currentChar()) == WTF::Unicode::foldCase(expectedCharacter));
  /external/chromium_org/third_party/WebKit/Source/wtf/unicode/icu/
UnicodeIcu.h 120 inline UChar32 foldCase(UChar32 c)
125 inline int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
  /libcore/libart/src/main/java/java/lang/
String.java 530 private char foldCase(char ch) {
591 c1 = foldCase(c1);
592 c2 = foldCase(c2);
740 if (c1 != c2 && foldCase(c1) != foldCase(c2)) {
    [all...]
  /libcore/libdvm/src/main/java/java/lang/
String.java 599 private char foldCase(char ch) {
660 c1 = foldCase(c1);
661 c2 = foldCase(c2);
775 if (c1 != c2 && foldCase(c1) != foldCase(c2)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SpaceSplitString.cpp 165 string = string.foldCase();
  /external/icu4c/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);
559 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/test/intltest/
strcase.cpp 314 (t=s).foldCase();
316 errln("error in foldCase(\"" + s + "\", default)=\"" + t + "\" but expected \"" + f + "\"");
320 (t=s).foldCase(U_FOLD_CASE_EXCLUDE_SPECIAL_I);
322 errln("error in foldCase(\"" + s + "\", U_FOLD_CASE_EXCLUDE_SPECIAL_I)=\"" + t + "\" but expected \"" + g + "\"");
373 name="foldCase";
374 result.foldCase(options);
tstnorm.cpp 858 r1.foldCase(options);
859 r2.foldCase(options);
896 t1.foldCase(options);
897 t2.foldCase(options);
    [all...]
  /external/icu4c/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/icu/source/i18n/
smpdtfmt.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PopupListBox.cpp 341 // search for a matching element. This code uses foldCase to work around the
344 String prefixWithCaseFolded(prefix.foldCase());
351 if (stripLeadingWhiteSpace(m_items[index]->label).foldCase().startsWith(prefixWithCaseFolded)) {
  /external/icu4c/i18n/
smpdtfmt.cpp     [all...]
tznames_impl.cpp 188 foldedKey.fastCopyFrom(key).foldCase();
340 tmp.foldCase();
    [all...]

Completed in 1413 milliseconds

1 2