findIgnoringCase 989 Source/core/inspector/InspectorDOMAgent.cpp if (text.findIgnoringCase(whitespaceTrimmedQuery) != kNotFound) findIgnoringCase 994 Source/core/inspector/InspectorDOMAgent.cpp if ((!startTagFound && !endTagFound && (node->nodeName().findIgnoringCase(tagNameQuery) != kNotFound)) findIgnoringCase 465 Source/core/inspector/InspectorDOMDebuggerAgent.cpp if (message.findIgnoringCase("error") != WTF::kNotFound) findIgnoringCase 1509 Source/wtf/text/StringImpl.cpp return (caseSensitive ? find(matchString, start) : findIgnoringCase(matchString, start)) == start; findIgnoringCase 369 Source/wtf/text/StringImpl.h size_t findIgnoringCase(const LChar*, unsigned index = 0); findIgnoringCase 370 Source/wtf/text/StringImpl.h ALWAYS_INLINE size_t findIgnoringCase(const char* s, unsigned index = 0) { return findIgnoringCase(reinterpret_cast<const LChar*>(s), index); } findIgnoringCase 371 Source/wtf/text/StringImpl.h size_t findIgnoringCase(StringImpl*, unsigned index = 0); findIgnoringCase 238 Source/wtf/text/WTFString.h size_t findIgnoringCase(const LChar* str, unsigned start = 0) const findIgnoringCase 239 Source/wtf/text/WTFString.h { return m_impl ? m_impl->findIgnoringCase(str, start) : kNotFound; } findIgnoringCase 240 Source/wtf/text/WTFString.h size_t findIgnoringCase(const String& str, unsigned start = 0) const findIgnoringCase 241 Source/wtf/text/WTFString.h { return m_impl ? m_impl->findIgnoringCase(str.impl(), start) : kNotFound; } findIgnoringCase 247 Source/wtf/text/WTFString.h { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); } findIgnoringCase 249 Source/wtf/text/WTFString.h { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); }