HomeSort by relevance Sort by last modified time
    Searched defs:foldCase (Results 1 - 11 of 11) sorted by null

  /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]);
  /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);
WTFString.cpp 305 String String::foldCase() const
309 return m_impl->foldCase();
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));
  /external/icu4c/common/
unistr_case.cpp 212 UnicodeString::foldCase(uint32_t options) {
230 return copy.foldCase().hashCode();
  /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]);
  /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)
  /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/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)
  /libcore/luni/src/main/java/java/lang/
String.java 604 private char foldCase(char ch) {
665 c1 = foldCase(c1);
666 c2 = foldCase(c2);
780 if (c1 != c2 && foldCase(c1) != foldCase(c2)) {
    [all...]

Completed in 239 milliseconds