Searched defs:equalIgnoringCase (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/text/
H A DAtomicString.h149 inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
150 inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
151 inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
152 inline bool equalIgnoringCase(const char* a, const AtomicString& b) { return equalIgnoringCase(a, b.impl()); } function in namespace:WTF
153 inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return equalIgnoringCase( function in namespace:WTF
[all...]
H A DWTFString.h373 inline bool equalIgnoringCase(const String& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
374 inline bool equalIgnoringCase(const String& a, const char* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
375 inline bool equalIgnoringCase(const char* a, const String& b) { return equalIgnoringCase(a, b.impl()); } function in namespace:WTF
379 return ignoreCase ? equalIgnoringCase(a, b) : (a == b);
525 using WTF::equalIgnoringCase;
H A DStringImpl.cpp482 bool equalIgnoringCase(const UChar* a, const char* b, unsigned length) function in namespace:WTF
492 static inline bool equalIgnoringCase(const UChar* a, const UChar* b, int length) function in namespace:WTF
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) function in namespace:WTF
962 bool equalIgnoringCase(StringImpl* a, const char* b) function in namespace:WTF
/external/webkit/Source/WebCore/css/
H A DCSSParser.cpp111 static bool equalIgnoringCase(const CSSParserString& a, const char* b) function in namespace:WebCore
2597 if (equalIgnoringCase(val->function->name, "attr(")) {
2601 } else if (equalIgnoringCase(val->function->name, "counter(")) {
2605 } else if (equalIgnoringCase(val->function->name, "counters(")) {
3121 if (value->id == CSSValueNone || (value->unit == CSSPrimitiveValue::CSS_STRING && equalIgnoringCase(value->string, "none"))) {
3146 if (equalIgnoringCase(value->string, "all"))
3148 if (equalIgnoringCase(value->string, "none"))
3201 if (equalIgnoringCase(value->function->name, "steps(")) {
3231 if (equalIgnoringCase(value->function->name, "cubic-bezier(")) {
3411 if (!equalIgnoringCase(valu
[all...]

Completed in 76 milliseconds