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

/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
H A DFontCacheSkiaWin.cpp161 static inline bool equalIgnoringCase(const AtomicString& a, const SkString& b) function in namespace:WebCore
163 return equalIgnoringCase(a, AtomicString::fromUTF8(b.c_str()));
173 if (equalIgnoringCase(family, actualFamily.fString)) {
186 if (equalIgnoringCase(family, familyName))
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringBuilder.h334 bool equalIgnoringCase(const StringBuilder& s, const CharType* buffer, unsigned length) function in namespace:WTF
340 return equalIgnoringCase(s.characters8(), buffer, length);
342 return equalIgnoringCase(s.characters16(), buffer, length);
345 inline bool equalIgnoringCase(const StringBuilder& s, const char* string) function in namespace:WTF
347 return equalIgnoringCase(s, reinterpret_cast<const LChar*>(string), strlen(string));
371 bool equalIgnoringCase(const StringBuilder& a, const StringType& b) function in namespace:WTF
381 return equalIgnoringCase(a.characters8(), b.characters8(), a.length());
382 return equalIgnoringCase(a.characters8(), b.characters16(), a.length());
386 return equalIgnoringCase(a.characters16(), b.characters8(), a.length());
387 return equalIgnoringCase(
[all...]
H A DAtomicString.h215 inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
216 inline bool equalIgnoringCase(const AtomicString& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
217 inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); } function in namespace:WTF
218 inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
219 inline bool equalIgnoringCase(const LChar* a, const AtomicString& b) { return equalIgnoringCase( function in namespace:WTF
220 inline bool equalIgnoringCase(const char* a, const AtomicString& b) { return equalIgnoringCase(reinterpret_cast<const LChar*>(a), b.impl()); } function in namespace:WTF
221 inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
[all...]
H A DWTFString.h478 inline bool equalIgnoringCase(const String& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
479 inline bool equalIgnoringCase(const String& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
480 inline bool equalIgnoringCase(const String& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); } function in namespace:WTF
481 inline bool equalIgnoringCase(const LChar* a, const String& b) { return equalIgnoringCase(a, b.impl()); } function in namespace:WTF
482 inline bool equalIgnoringCase(const char* a, const String& b) { return equalIgnoringCase(reinterpret_cas function in namespace:WTF
[all...]
H A DStringImpl.cpp1072 bool equalIgnoringCase(const LChar* a, const LChar* b, unsigned length) function in namespace:WTF
1082 bool equalIgnoringCase(const UChar* a, const LChar* b, unsigned length) function in namespace:WTF
1153 while (!equalIgnoringCase(searchCharacters + i, matchString, matchLength)) {
1297 while (!equalIgnoringCase(searchCharacters + i, matchCharacters, matchLength)) {
1427 while (!equalIgnoringCase(searchCharacters + delta, matchCharacters, matchLength)) {
1473 return equalIgnoringCase(stringImpl->characters8() + startOffset, reinterpret_cast<const LChar*>(matchString), matchLength);
1474 return equalIgnoringCase(stringImpl->characters16() + startOffset, reinterpret_cast<const LChar*>(matchString), matchLength);
1996 bool equalIgnoringCase(const StringImpl* a, const StringImpl* b) function
2006 bool equalIgnoringCase(const StringImpl* a, const LChar* b) function
2072 return equalIgnoringCase(
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSParser-in.cpp121 static bool equalIgnoringCase(const CSSParserString& a, const char (&b)[N]) function in namespace:WebCore
127 return a.is8Bit() ? WTF::equalIgnoringCase(b, a.characters8(), length) : WTF::equalIgnoringCase(b, a.characters16(), length);
131 static bool equalIgnoringCase(CSSParserValue* value, const char (&b)[N]) function in namespace:WebCore
134 return equalIgnoringCase(value->string, b);
1541 return equalIgnoringCase(val->function->name, "-webkit-gradient(")
1542 || equalIgnoringCase(val->function->name, "-webkit-linear-gradient(")
1543 || equalIgnoringCase(val->function->name, "linear-gradient(")
1544 || equalIgnoringCase(val->function->name, "-webkit-repeating-linear-gradient(")
1545 || equalIgnoringCase(va
[all...]

Completed in 146 milliseconds