HomeSort by relevance Sort by last modified time
    Searched refs:toASCIILower (Results 1 - 22 of 22) sorted by null

  /external/webkit/JavaScriptCore/wtf/
ASCIICType.h 123 inline char toASCIILower(char c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
124 inline unsigned short toASCIILower(unsigned short c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
126 inline wchar_t toASCIILower(wchar_t c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
128 inline int toASCIILower(int c) { return c | ((c >= 'A' && c <= 'Z') << 5); }
163 using WTF::toASCIILower;
DateMath.cpp 538 needle[i] = static_cast<char>(toASCIILower(*monthStr++));
  /external/webkit/WebCore/bindings/js/
JSCSSStyleDeclarationCustom.cpp 72 if (toASCIILower(propertyName.data()[0]) != prefix[0])
118 name.append(toASCIILower(propertyName.data()[i++]));
126 name.append(toASCIILower(c));
  /external/webkit/WebCore/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 67 if (WTF::toASCIILower(propertyName[0]) != prefix[0])
130 name.append(WTF::toASCIILower(propertyName[i++]));
138 name.append(WTF::toASCIILower(c));
  /external/webkit/WebCore/platform/text/
StringImpl.cpp 190 data[i] = toASCIILower(c);
259 data[i] = toASCIILower(c);
570 hthis += toASCIILower(uthis[i]);
571 hstr += toASCIILower(ustr[i]);
579 hthis += toASCIILower(uthis[i + lstr]);
580 hthis -= toASCIILower(uthis[i]);
630 hthis += toASCIILower(uthis[index + i]);
631 hstr += toASCIILower(ustr[i]);
640 hthis -= toASCIILower(uthis[i + lstr]);
641 hthis += toASCIILower(uthis[i])
    [all...]
TextEncodingRegistry.cpp 81 if (toASCIILower(c1) != toASCIILower(c2))
104 h += toASCIILower(c);
  /external/chromium/third_party/icu/source/common/
uidna.cpp 49 toASCIILower(UChar ch){
65 if(toASCIILower(src[i]) != ACE_PREFIX[i]){
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
357 // toASCIILower(b2,b2Len);
  /external/icu4c/common/
uidna.cpp 49 toASCIILower(UChar ch){
65 if(toASCIILower(src[i]) != ACE_PREFIX[i]){
110 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
357 // toASCIILower(b2,b2Len);
  /external/webkit/JavaScriptCore/wrec/
CharacterClassConstructor.cpp 213 addSorted(m_matches, toASCIILower(m_charBuffer));
  /external/webkit/WebCore/platform/
KURLGoogle.cpp 55 using WTF::toASCIILower;
115 ASSERT(toASCIILower(*str) == *str);
116 if (toASCIILower(*begin++) != *str++)
    [all...]
KURL.cpp 648 if (!protocol[i] || toASCIILower(m_string[i]) != protocol[i])
    [all...]
  /external/webkit/WebCore/loader/
FTPDirectoryParser.cpp 555 tbuf[1] = toASCIILower(p[1]);
556 tbuf[2] = toASCIILower(p[2]);
    [all...]
TextResourceDecoder.cpp 76 if (toASCIILower(subject[i + j]) != target[j]) {
  /external/chromium/third_party/icu/source/test/intltest/
idnaref.cpp 63 toASCIILower(UChar ch){
90 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
  /external/icu4c/test/intltest/
idnaref.cpp 63 toASCIILower(UChar ch){
90 rc=(int32_t)toASCIILower(c1)-(int32_t)toASCIILower(c2);
  /external/webkit/WebCore/platform/graphics/
Color.cpp 198 buffer[i] = toASCIILower(static_cast<char>(c));
  /external/webkit/JavaScriptCore/runtime/
StringPrototype.cpp 801 buffer[i] = toASCIILower(c);
    [all...]
  /external/webkit/JavaScriptCore/yarr/
RegexCompiler.cpp 71 addSorted(m_matches, toASCIILower(ch));
  /external/webkit/WebKit/mac/Misc/
WebNSURLExtras.mm 743 char lower = toASCIILower(c);
    [all...]
  /external/webkit/WebCore/css/
CSSParser.cpp 115 if (toASCIILower(a.characters[i]) != b[i])
195 characters[i] = toASCIILower(characters[i]);
    [all...]
  /external/webkit/WebCore/plugins/
PluginView.cpp     [all...]
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp     [all...]

Completed in 1137 milliseconds