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

  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.h 149 inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); }
150 inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), b); }
151 inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); }
152 inline bool equalIgnoringCase(const char* a, const AtomicString& b) { return equalIgnoringCase(a, b.impl()); }
153 inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl());
    [all...]
WTFString.h 373 inline bool equalIgnoringCase(const String& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); }
374 inline bool equalIgnoringCase(const String& a, const char* b) { return equalIgnoringCase(a.impl(), b); }
375 inline bool equalIgnoringCase(const char* a, const String& b) { return equalIgnoringCase(a, b.impl()); }
379 return ignoreCase ? equalIgnoringCase(a, b) : (a == b);
525 using WTF::equalIgnoringCase;
StringImpl.cpp 482 bool equalIgnoringCase(const UChar* a, const char* b, unsigned length)
492 static inline bool equalIgnoringCase(const UChar* a, const UChar* b, int length)
605 while (!equalIgnoringCase(searchCharacters + i, matchString, matchLength)) {
682 while (!equalIgnoringCase(searchCharacters + i, matchCharacters, matchLength)) {
756 while (!equalIgnoringCase(searchCharacters + delta, matchCharacters, matchLength)) {
957 bool equalIgnoringCase(StringImpl* a, StringImpl* b)
962 bool equalIgnoringCase(StringImpl* a, const char* b)
  /external/webkit/Source/WebCore/css/
CSSParser.cpp 111 static bool equalIgnoringCase(const CSSParserString& a, const char* b)
    [all...]

Completed in 355 milliseconds