Searched refs:findIgnoringCase (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h239 size_t findIgnoringCase(const LChar* str, unsigned start = 0) const function in class:WTF::String
240 { return m_impl ? m_impl->findIgnoringCase(str, start) : kNotFound; }
241 size_t findIgnoringCase(const String& str, unsigned start = 0) const function in class:WTF::String
242 { return m_impl ? m_impl->findIgnoringCase(str.impl(), start) : kNotFound; }
248 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); }
250 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); }
H A DStringImpl.h393 size_t findIgnoringCase(const LChar*, unsigned index = 0);
394 ALWAYS_INLINE size_t findIgnoringCase(const char* s, unsigned index = 0) { return findIgnoringCase(reinterpret_cast<const LChar*>(s), index); }
395 size_t findIgnoringCase(StringImpl*, unsigned index = 0);
H A DStringImpl.cpp1161 size_t StringImpl::findIgnoringCase(const LChar* matchString, unsigned index) function in class:WTF::StringImpl
1305 size_t StringImpl::findIgnoringCase(StringImpl* matchString, unsigned index) function in class:WTF::StringImpl
1495 return (caseSensitive ? find(matchString, start) : findIgnoringCase(matchString, start)) == start;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDOMDebuggerAgent.cpp460 if (message.findIgnoringCase("error") != WTF::kNotFound)
H A DInspectorDOMAgent.cpp958 if (text.findIgnoringCase(whitespaceTrimmedQuery) != kNotFound)
963 if ((!startTagFound && !endTagFound && (node->nodeName().findIgnoringCase(tagNameQuery) != kNotFound))

Completed in 299 milliseconds