Searched defs:equalIgnoringCase (Results 1 - 6 of 6) sorted by last modified time

/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
H A DFontCacheSkiaWin.cpp186 static inline bool equalIgnoringCase(const AtomicString& a, const SkString& b) function in namespace:blink
188 return equalIgnoringCase(a, AtomicString::fromUTF8(b.c_str()));
198 if (equalIgnoringCase(family, actualFamily.fString)) {
211 if (equalIgnoringCase(family, familyName))
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicString.h204 inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
205 inline bool equalIgnoringCase(const AtomicString& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
206 inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); } function in namespace:WTF
207 inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
208 inline bool equalIgnoringCase(const LChar* a, const AtomicString& b) { return equalIgnoringCase( function in namespace:WTF
209 inline bool equalIgnoringCase(const char* a, const AtomicString& b) { return equalIgnoringCase(reinterpret_cast<const LChar*>(a), b.impl()); } function in namespace:WTF
210 inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
[all...]
H A DStringBuilder.h335 bool equalIgnoringCase(const StringBuilder& s, const CharType* buffer, unsigned length) function in namespace:WTF
341 return equalIgnoringCase(s.characters8(), buffer, length);
343 return equalIgnoringCase(s.characters16(), buffer, length);
346 inline bool equalIgnoringCase(const StringBuilder& s, const char* string) function in namespace:WTF
348 return equalIgnoringCase(s, reinterpret_cast<const LChar*>(string), strlen(string));
372 bool equalIgnoringCase(const StringBuilder& a, const StringType& b) function in namespace:WTF
382 return equalIgnoringCase(a.characters8(), b.characters8(), a.length());
383 return equalIgnoringCase(a.characters8(), b.characters16(), a.length());
387 return equalIgnoringCase(a.characters16(), b.characters8(), a.length());
388 return equalIgnoringCase(
[all...]
H A DStringImpl.cpp670 if (equalIgnoringCase(localeId, lang))
1086 bool equalIgnoringCase(const LChar* a, const LChar* b, unsigned length) function in namespace:WTF
1096 bool equalIgnoringCase(const UChar* a, const LChar* b, unsigned length) function in namespace:WTF
1167 while (!equalIgnoringCase(searchCharacters + i, matchString, matchLength)) {
1311 while (!equalIgnoringCase(searchCharacters + i, matchCharacters, matchLength)) {
1441 while (!equalIgnoringCase(searchCharacters + delta, matchCharacters, matchLength)) {
1487 return equalIgnoringCase(stringImpl->characters8() + startOffset, reinterpret_cast<const LChar*>(matchString), matchLength);
1488 return equalIgnoringCase(stringImpl->characters16() + startOffset, reinterpret_cast<const LChar*>(matchString), matchLength);
2004 bool equalIgnoringCase(const StringImpl* a, const StringImpl* b) function
2014 bool equalIgnoringCase(cons function
[all...]
H A DWTFString.h462 inline bool equalIgnoringCase(const String& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
463 inline bool equalIgnoringCase(const String& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
464 inline bool equalIgnoringCase(const String& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); } function in namespace:WTF
465 inline bool equalIgnoringCase(const LChar* a, const String& b) { return equalIgnoringCase(a, b.impl()); } function in namespace:WTF
466 inline bool equalIgnoringCase(const char* a, const String& b) { return equalIgnoringCase(reinterpret_cas function in namespace:WTF
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp89 static bool equalIgnoringCase(const CSSParserString& a, const char (&b)[N]) function in namespace:blink
95 return a.is8Bit() ? WTF::equalIgnoringCase(b, a.characters8(), length) : WTF::equalIgnoringCase(b, a.characters16(), length);
99 static bool equalIgnoringCase(CSSParserValue* value, const char (&b)[N]) function in namespace:blink
102 return equalIgnoringCase(value->string, b);
371 return equalIgnoringCase(val->function->name, "-webkit-gradient")
372 || equalIgnoringCase(val->function->name, "-webkit-linear-gradient")
373 || equalIgnoringCase(val->function->name, "linear-gradient")
374 || equalIgnoringCase(val->function->name, "-webkit-repeating-linear-gradient")
375 || equalIgnoringCase(va
[all...]

Completed in 349 milliseconds