/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 | 775 PassRefPtr<StringImpl> StringImpl::foldCase() 816 int32_t realLength = Unicode::foldCase(data, length, characters16(), m_length, &error); 820 Unicode::foldCase(data, realLength, characters16(), m_length, &error); [all...] |
WTFString.cpp | 415 String String::foldCase() const 419 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/forms/ |
TypeAhead.cpp | 101 // a matching element. This code uses foldCase to work around the fact that 104 String prefixWithCaseFolded(prefix.foldCase()); 108 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/platform/text/ |
SegmentedString.h | 267 ASSERT_UNUSED(expectedCharacter, WTF::Unicode::foldCase(currentChar()) == WTF::Unicode::foldCase(expectedCharacter));
|
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/icu/ |
UnicodeIcu.h | 121 inline UChar32 foldCase(UChar32 c) 126 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 | 346 // search for a matching element. This code uses foldCase to work around the 349 String prefixWithCaseFolded(prefix.foldCase()); 356 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...] |