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

1 2

  /external/webkit/WebCore/platform/text/
StringHash.h 113 hash += WTF::Unicode::foldCase(s[0]);
114 tmp = (WTF::Unicode::foldCase(s[1]) << 11) ^ hash;
122 hash += WTF::Unicode::foldCase(s[0]);
163 hash += WTF::Unicode::foldCase(s[0]);
164 tmp = (WTF::Unicode::foldCase(s[1]) << 11) ^ hash;
172 hash += WTF::Unicode::foldCase(s[0]);
StringImpl.cpp 249 PassRefPtr<StringImpl> StringImpl::foldCase()
267 int32_t realLength = Unicode::foldCase(data, length, m_data, m_length, &error);
271 Unicode::foldCase(data, realLength, m_data, m_length, &error);
475 if (foldCase(*a++) != foldCase(bc))
511 UChar lc = Unicode::foldCase(*chs);
513 if (Unicode::foldCase(*++ptr) == lc && equalIgnoringCase(ptr + 1, chsPlusOne, chsLengthMinusOne))
875 equal = equal && (foldCase(as[i]) == foldCase(bc));
StringImpl.h 145 PassRefPtr<StringImpl> foldCase();
PlatformString.h 153 String foldCase() const;
  /external/webkit/JavaScriptCore/wtf/unicode/wince/
UnicodeWince.cpp 40 wchar_t foldCase(wchar_t c)
128 int foldCase(wchar_t* result, int resultLength, const wchar_t* source, int sourceLength, bool* isError)
136 result[i] = foldCase(source[i]);
UnicodeWince.h 173 wchar_t foldCase(wchar_t);
177 int foldCase(UChar* result, int resultLength, const wchar_t* source, int sourceLength, bool* isError);
198 wchar_t c1 = foldCase(a[i]);
199 wchar_t c2 = foldCase(b[i]);
  /external/webkit/WebCore/dom/
SpaceSplitString.cpp 50 m_string = m_string.foldCase();
SelectElement.cpp     [all...]
  /external/chromium/third_party/icu/source/common/
unistr_case.cpp 219 UnicodeString::foldCase(uint32_t options) {
237 return copy.foldCase().hashCode();
uniset_props.cpp     [all...]
  /external/icu4c/common/
unistr_case.cpp 218 UnicodeString::foldCase(uint32_t options) {
236 return copy.foldCase().hashCode();
uprops.cpp 634 UnicodeString kc2=nfkc->normalize(folded2String.foldCase(), *pErrorCode);
uniset_props.cpp     [all...]
  /external/webkit/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.cpp 28 UChar32 foldCase(UChar32 ch)
46 int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
UnicodeGLib.h 127 UChar32 foldCase(UChar32);
129 int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error);
  /external/webkit/JavaScriptCore/wtf/unicode/icu/
UnicodeIcu.h 118 inline UChar32 foldCase(UChar32 c)
123 inline int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
  /external/chromium/third_party/icu/source/test/intltest/
tstnorm.cpp 872 r1.foldCase(options)
    [all...]
strcase.cpp 312 (t=s).foldCase();
314 errln("error in foldCase(\"" + s + "\", default)=\"" + t + "\" but expected \"" + f + "\"");
318 (t=s).foldCase(U_FOLD_CASE_EXCLUDE_SPECIAL_I);
320 errln("error in foldCase(\"" + s + "\", U_FOLD_CASE_EXCLUDE_SPECIAL_I)=\"" + t + "\" but expected \"" + g + "\"");
371 name="foldCase";
372 result.foldCase(options);
  /external/icu4c/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 855 r1.foldCase(options);
856 r2.foldCase(options);
893 t1.foldCase(options);
894 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/webkit/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 310 inline UChar32 foldCase(UChar32 c)
315 inline int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
  /external/chromium/third_party/icu/source/i18n/
smpdtfmt.cpp     [all...]
  /external/icu4c/i18n/
smpdtfmt.cpp     [all...]
  /external/webkit/WebCore/platform/chromium/
PopupMenuChromium.cpp 742 // a matching element. This code uses foldCase to work around the fact that
745 String prefixWithCaseFolded(prefix.foldCase());
752 if (stripLeadingWhiteSpace(m_items[index]->label).foldCase().startsWith(prefixWithCaseFolded)) {
    [all...]

Completed in 1736 milliseconds

1 2