Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/wtf/text/
DWTFString.h226 size_t findIgnoringCase(const LChar* str, unsigned start = 0) const
227 { return m_impl ? m_impl->findIgnoringCase(str, start) : kNotFound; }
228 size_t findIgnoringCase(const String& str, unsigned start = 0) const
229 { return m_impl ? m_impl->findIgnoringCase(str.impl(), start) : kNotFound; }
235 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); } in find()
237 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); } in find()
DStringImpl.h383 size_t findIgnoringCase(const LChar*, unsigned index = 0);
384 …ALWAYS_INLINE size_t findIgnoringCase(const char* s, unsigned index = 0) { return findIgnoringCase
385 size_t findIgnoringCase(StringImpl*, unsigned index = 0);
DStringImpl.cpp1175 size_t StringImpl::findIgnoringCase(const LChar* matchString, unsigned index) in findIgnoringCase() function in WTF::StringImpl
1319 size_t StringImpl::findIgnoringCase(StringImpl* matchString, unsigned index) in findIgnoringCase() function in WTF::StringImpl
1509 … return (caseSensitive ? find(matchString, start) : findIgnoringCase(matchString, start)) == start; in endsWith()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorDOMDebuggerAgent.cpp561 if (message.findIgnoringCase("error") != WTF::kNotFound) in didFireWebGLErrorOrWarning()
DInspectorDOMAgent.cpp1049 if (text.findIgnoringCase(whitespaceTrimmedQuery) != kNotFound) in performSearch()
1054 …if ((!startTagFound && !endTagFound && (node->nodeName().findIgnoringCase(tagNameQuery) != kNotFou… in performSearch()