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

/macosx-10.10/WTF-7600.1.24/wtf/text/
H A DAtomicString.h241 inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
242 inline bool equalIgnoringCase(const AtomicString& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
243 inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); } function in namespace:WTF
244 inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
245 inline bool equalIgnoringCase(const LChar* a, const AtomicString& b) { return equalIgnoringCase( function in namespace:WTF
246 inline bool equalIgnoringCase(const char* a, const AtomicString& b) { return equalIgnoringCase(reinterpret_cast<const LChar*>(a), b.impl()); } function in namespace:WTF
247 inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
[all...]
H A DWTFString.h485 inline bool equalIgnoringCase(const String& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
486 inline bool equalIgnoringCase(const String& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
487 inline bool equalIgnoringCase(const String& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); } function in namespace:WTF
488 inline bool equalIgnoringCase(const LChar* a, const String& b) { return equalIgnoringCase(a, b.impl()); } function in namespace:WTF
489 inline bool equalIgnoringCase(const char* a, const String& b) { return equalIgnoringCase(reinterpret_cas function in namespace:WTF
[all...]
H A DStringImpl.cpp950 bool equalIgnoringCase(const LChar* a, const LChar* b, unsigned length) function in namespace:WTF
959 bool equalIgnoringCase(const UChar* a, const LChar* b, unsigned length) function in namespace:WTF
1905 bool equalIgnoringCase(const StringImpl* a, const StringImpl* b) function in namespace:WTF
1915 bool equalIgnoringCase(cons function in namespace:WTF
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSParser.cpp167 static bool equalIgnoringCase(const CSSParserString& a, const char (&b)[N]) function in namespace:WebCore
177 static bool equalIgnoringCase(CSSParserValue* value, const char (&b)[N]) function in namespace:WebCore
[all...]

Completed in 223 milliseconds