/external/webkit/Source/JavaScriptCore/wtf/text/ |
D | StringHash.h | 100 template<typename T> static inline UChar foldCase(T ch) in foldCase() function 102 return WTF::Unicode::foldCase(ch); in foldCase() 107 return StringHasher::computeHash<UChar, foldCase<UChar> >(data, length); in hash() 117 return StringHasher::computeHash<char, foldCase<char> >(data, length); in hash()
|
D | StringImpl.cpp | 287 PassRefPtr<StringImpl> StringImpl::foldCase() in foldCase() function in WTF::StringImpl 308 int32_t realLength = Unicode::foldCase(data, length, m_data, m_length, &error); in foldCase() 312 Unicode::foldCase(data, realLength, m_data, m_length, &error); in foldCase() 486 if (foldCase(*a++) != foldCase(bc)) in equalIgnoringCase() 989 equal = equal && (foldCase(as[i]) == foldCase(bc)); in equalIgnoringCase()
|
D | WTFString.cpp | 305 String String::foldCase() const in foldCase() function in WTF::String 309 return m_impl->foldCase(); in foldCase()
|
D | StringImpl.h | 290 PassRefPtr<StringImpl> foldCase();
|
/external/webkit/Source/JavaScriptCore/wtf/unicode/brew/ |
D | 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]); in umemcasecmp() 181 UChar c2 = foldCase(b[i]); in umemcasecmp()
|
D | UnicodeBrew.cpp | 42 UChar foldCase(UChar c) in foldCase() function 123 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError) in foldCase() function 131 result[i] = foldCase(source[i]); in foldCase()
|
/external/webkit/Source/JavaScriptCore/wtf/unicode/wince/ |
D | 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]); in umemcasecmp() 162 UChar c2 = foldCase(b[i]); in umemcasecmp()
|
D | UnicodeWinCE.cpp | 40 UChar foldCase(UChar c) in foldCase() function 133 int foldCase(UChar* result, int resultLength, const UChar* source, int sourceLength, bool* isError) in foldCase() function 141 result[i] = foldCase(source[i]); in foldCase()
|
/external/clang/test/PCH/ |
D | cxx-templates.cpp | 56 static inline char foldCase(char) { in foldCase() function 61 return StringHasher::createHash<char, foldCase>(data, length); in hash()
|
/external/webkit/Source/JavaScriptCore/wtf/unicode/glib/ |
D | UnicodeGLib.cpp | 34 UChar32 foldCase(UChar32 ch) in foldCase() function 104 int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) in foldCase() function
|
D | UnicodeGLib.h | 127 UChar32 foldCase(UChar32); 129 int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error);
|
/external/icu4c/common/ |
D | unistr_case.cpp | 212 UnicodeString::foldCase(uint32_t options) { in foldCase() function in UnicodeString 230 return copy.foldCase().hashCode(); in uhash_hashCaselessUnicodeString()
|
D | uniset_props.cpp | 1452 str.foldCase(); in closeOver() 1476 (str = *pStr).foldCase(); in closeOver()
|
D | uprops.cpp | 621 UnicodeString kc2=nfkc->normalize(folded2String.foldCase(), *pErrorCode); in u_getFC_NFKC_Closure()
|
/external/webkit/Source/JavaScriptCore/wtf/unicode/icu/ |
D | UnicodeIcu.h | 118 inline UChar32 foldCase(UChar32 c) in foldCase() function 123 inline int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) in foldCase() function
|
/external/webkit/Source/WebCore/platform/text/ |
D | SegmentedString.h | 158 …ASSERT_UNUSED(expectedCharacter, WTF::Unicode::foldCase(*current()) == WTF::Unicode::foldCase(expe… in advanceAndASSERTIgnoringCase()
|
/external/icu4c/test/intltest/ |
D | strcase.cpp | 314 (t=s).foldCase(); in TestCaseConversion() 320 (t=s).foldCase(U_FOLD_CASE_EXCLUDE_SPECIAL_I); in TestCaseConversion() 374 result.foldCase(options); in TestCasingImpl()
|
D | tstnorm.cpp | 858 r1.foldCase(options); in ref_norm_compare() 859 r2.foldCase(options); in ref_norm_compare() 896 t1.foldCase(options); in ref_case_compare() 897 t2.foldCase(options); in ref_case_compare() 1227 s.foldCase(foldingOptions); in countFoldFCDExceptions()
|
/external/webkit/Source/WebCore/dom/ |
D | SpaceSplitString.cpp | 52 m_string = m_string.foldCase(); in createVector()
|
D | SelectElement.cpp | 976 String prefixWithCaseFolded(prefix.foldCase()); in typeAheadFind() 984 if (stripLeadingWhiteSpace(text).foldCase().startsWith(prefixWithCaseFolded)) { in typeAheadFind()
|
/external/webkit/Source/JavaScriptCore/wtf/unicode/qt4/ |
D | UnicodeQt4.h | 278 inline UChar32 foldCase(UChar32 c) in foldCase() function 283 inline int foldCase(UChar* result, int resultLength, const UChar* src, int srcLength, bool* error) in foldCase() function
|
/external/icu4c/samples/ustring/ |
D | ustring.cpp | 396 printUnicodeString("full-case-folded/default: ", (t=s).foldCase(U_FOLD_CASE_DEFAULT)); in demoCaseMapInCPlusPlus() 398 printUnicodeString("full-case-folded/Turkic: ", (t=s).foldCase(U_FOLD_CASE_EXCLUDE_SPECIAL_I)); in demoCaseMapInCPlusPlus()
|
/external/icu4c/i18n/ |
D | smpdtfmt.cpp | 2244 lcaseText.foldCase(); in matchQuarterString() 2251 lcase.fastCopyFrom(data[i]).foldCase(); in matchQuarterString() 2268 lcase.fastCopyFrom(data[bestMatch]).foldCase(); in matchQuarterString() 2286 lcaseText.foldCase(); in matchQuarterString() 2451 lcaseText.foldCase(); in matchString() 2458 lcase.fastCopyFrom(data[i]).foldCase(); in matchString() 2481 lcase.fastCopyFrom(data[bestMatch]).foldCase(); in matchString() 2499 lcaseText.foldCase(); in matchString()
|
D | tznames_impl.cpp | 188 foldedKey.fastCopyFrom(key).foldCase(); in putImpl() 340 tmp.foldCase(); in search()
|
/external/webkit/Source/WebCore/platform/chromium/ |
D | PopupMenuChromium.cpp | 839 String prefixWithCaseFolded(prefix.foldCase()); in typeAheadFind() 846 … if (stripLeadingWhiteSpace(m_items[index]->label).foldCase().startsWith(prefixWithCaseFolded)) { in typeAheadFind()
|