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

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringBuilder.h331 bool equalIgnoringCase(const StringBuilder& s, const CharType* buffer, unsigned length) function in namespace:WTF
337 return equalIgnoringCase(s.characters8(), buffer, length);
339 return equalIgnoringCase(s.characters16(), buffer, length);
342 inline bool equalIgnoringCase(const StringBuilder& s, const char* string) function in namespace:WTF
344 return equalIgnoringCase(s, reinterpret_cast<const LChar*>(string), strlen(string));
368 bool equalIgnoringCase(const StringBuilder& a, const StringType& b) function in namespace:WTF
378 return equalIgnoringCase(a.characters8(), b.characters8(), a.length());
379 return equalIgnoringCase(a.characters8(), b.characters16(), a.length());
383 return equalIgnoringCase(a.characters16(), b.characters8(), a.length());
384 return equalIgnoringCase(
[all...]
H A DAtomicString.h206 inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
207 inline bool equalIgnoringCase(const AtomicString& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
208 inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); } function in namespace:WTF
209 inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
210 inline bool equalIgnoringCase(const LChar* a, const AtomicString& b) { return equalIgnoringCase( function in namespace:WTF
211 inline bool equalIgnoringCase(const char* a, const AtomicString& b) { return equalIgnoringCase(reinterpret_cast<const LChar*>(a), b.impl()); } function in namespace:WTF
212 inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
[all...]
H A DWTFString.h492 inline bool equalIgnoringCase(const String& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
493 inline bool equalIgnoringCase(const String& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
494 inline bool equalIgnoringCase(const String& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); } function in namespace:WTF
495 inline bool equalIgnoringCase(const LChar* a, const String& b) { return equalIgnoringCase(a, b.impl()); } function in namespace:WTF
496 inline bool equalIgnoringCase(const char* a, const String& b) { return equalIgnoringCase(reinterpret_cas function in namespace:WTF
[all...]
H A DStringImpl.cpp937 bool equalIgnoringCase(const LChar* a, const LChar* b, unsigned length) function in namespace:WTF
947 bool equalIgnoringCase(const UChar* a, const LChar* b, unsigned length) function in namespace:WTF
1018 while (!equalIgnoringCase(searchCharacters + i, matchString, matchLength)) {
1162 while (!equalIgnoringCase(searchCharacters + i, matchCharacters, matchLength)) {
1292 while (!equalIgnoringCase(searchCharacters + delta, matchCharacters, matchLength)) {
1338 return equalIgnoringCase(stringImpl->characters8() + startOffset, reinterpret_cast<const LChar*>(matchString), matchLength);
1339 return equalIgnoringCase(stringImpl->characters16() + startOffset, reinterpret_cast<const LChar*>(matchString), matchLength);
1854 bool equalIgnoringCase(const StringImpl* a, const StringImpl* b) function
1864 bool equalIgnoringCase(const StringImpl* a, const LChar* b) function
1930 return equalIgnoringCase(
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSParser-in.cpp120 static bool equalIgnoringCase(const CSSParserString& a, const char (&b)[N]) function in namespace:WebCore
126 return a.is8Bit() ? WTF::equalIgnoringCase(b, a.characters8(), length) : WTF::equalIgnoringCase(b, a.characters16(), length);
130 static bool equalIgnoringCase(CSSParserValue* value, const char (&b)[N]) function in namespace:WebCore
133 return equalIgnoringCase(value->string, b);
1866 } else if (value->unit == CSSParserValue::Function && equalIgnoringCase(value->function->name, "-webkit-image-set(")) {
1987 else if (value->unit == CSSParserValue::Function && equalIgnoringCase(value->function->name, "-webkit-image-set(")) {
3539 if (equalIgnoringCase(val->function->name, "attr(")) {
3543 } else if (equalIgnoringCase(val->function->name, "counter(")) {
3547 } else if (equalIgnoringCase(va
[all...]

Completed in 2456 milliseconds