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

1 2

  /external/clang/test/PCH/
cxx-templates.cpp 56 static inline char foldCase(char) {
61 return StringHasher::createHash<char, foldCase>(data, length);
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringHash.h 100 template<typename T> static inline UChar foldCase(T ch)
102 return WTF::Unicode::foldCase(ch);
107 return StringHasher::computeHash<UChar, foldCase<UChar> >(data, length);
117 return StringHasher::computeHash<char, foldCase<char> >(data, length);
StringImpl.cpp 287 PassRefPtr<StringImpl> StringImpl::foldCase()
308 int32_t realLength = Unicode::foldCase(data, length, m_data, m_length, &error);
312 Unicode::foldCase(data, realLength, m_data, m_length, &error);
486 if (foldCase(*a++) != foldCase(bc))
989 equal = equal && (foldCase(as[i]) == foldCase(bc));
StringImpl.h 290 PassRefPtr<StringImpl> foldCase();
WTFString.cpp 305 String String::foldCase() const
309 return m_impl->foldCase();
WTFString.h 243 String foldCase() const;
  /external/webkit/Source/JavaScriptCore/wtf/unicode/brew/
UnicodeBrew.cpp 42 UChar foldCase(UChar c)
123 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
131 result[i] = foldCase(source[i]);
UnicodeBrew.h 118 UChar foldCase(UChar);
120 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
180 UChar c1 = foldCase(a[i]);
181 UChar c2 = foldCase(b[i]);
  /external/webkit/Source/JavaScriptCore/wtf/unicode/wince/
UnicodeWinCE.cpp 40 UChar foldCase(UChar c)
133 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError)
141 result[i] = foldCase(source[i]);
UnicodeWinCE.h 136 UChar foldCase(UChar);
140 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError);
161 UChar c1 = foldCase(a[i]);
162 UChar c2 = foldCase(b[i]);
  /external/icu4c/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/webkit/Source/JavaScriptCore/wtf/unicode/glib/
UnicodeGLib.cpp 34 UChar32 foldCase(UChar32 ch)
104 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/Source/WebCore/dom/
SpaceSplitString.cpp 52 m_string = m_string.foldCase();
  /external/webkit/Source/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/webkit/Source/WebCore/platform/text/
SegmentedString.h 158 ASSERT_UNUSED(expectedCharacter, WTF::Unicode::foldCase(*current()) == WTF::Unicode::foldCase(expectedCharacter));
  /libcore/luni/src/main/java/java/lang/
String.java 594 private char foldCase(char ch) {
655 c1 = foldCase(c1);
656 c2 = foldCase(c2);
770 if (c1 != c2 && foldCase(c1) != foldCase(c2)) {
    [all...]
  /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 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/webkit/Source/JavaScriptCore/wtf/unicode/qt4/
UnicodeQt4.h 278 inline UChar32 foldCase(UChar32 c)
283 inline int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error)
  /external/icu4c/i18n/
smpdtfmt.cpp     [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp 836 // a matching element. This code uses foldCase to work around the fact that
839 String prefixWithCaseFolded(prefix.foldCase());
846 if (stripLeadingWhiteSpace(m_items[index]->label).foldCase().startsWith(prefixWithCaseFolded)) {
    [all...]

Completed in 318 milliseconds

1 2