HomeSort by relevance Sort by last modified time
    Searched full:foldcase (Results 1 - 25 of 52) sorted by null

1 2 3

  /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/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();
  /external/webkit/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.h 127 UChar32 foldCase(UChar32);
129 int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error);
UnicodeGLib.cpp 28 UChar32 foldCase(UChar32 ch)
46 int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
  /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();
unormcmp.cpp 48 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
49 * where code point order, NFD and foldCase are all optional.
  /external/icu4c/common/
unistr_case.cpp 218 UnicodeString::foldCase(uint32_t options) {
236 return copy.foldCase().hashCode();
unormcmp.cpp 49 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
50 * where code point order, NFD and foldCase are all optional.
  /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/
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);
  /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/public/common/unicode/
unorm.h 519 * strcmp[CodePointOrder](NFD(foldCase(NFD(s1))), NFD(foldCase(NFD(s2))))
520 * where code point order and foldCase are all optional.
normlzr.h 386 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
387 * where code point order and foldCase are all optional.
  /external/icu4c/common/unicode/
unorm.h 504 * strcmp[CodePointOrder](NFD(foldCase(NFD(s1))), NFD(foldCase(NFD(s2))))
505 * where code point order and foldCase are all optional.
normlzr.h 393 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
394 * where code point order and foldCase are all optional.
  /external/webkit/JavaScriptCore/icu/unicode/
unorm.h 518 * strcmp[CodePointOrder](NFD(foldCase(NFD(s1))), NFD(foldCase(NFD(s2))))
519 * where code point order and foldCase are all optional.
  /external/webkit/WebCore/icu/unicode/
unorm.h 518 * strcmp[CodePointOrder](NFD(foldCase(NFD(s1))), NFD(foldCase(NFD(s2))))
519 * where code point order and foldCase are all optional.
  /external/webkit/WebKit/mac/icu/unicode/
unorm.h 518 * strcmp[CodePointOrder](NFD(foldCase(NFD(s1))), NFD(foldCase(NFD(s2))))
519 * where code point order and foldCase are all optional.
  /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 840 milliseconds

1 2 3