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.h238 size_t findIgnoringCase(const LChar* str, unsigned start = 0) const
239 { return m_impl ? m_impl->findIgnoringCase(str, start) : kNotFound; }
240 size_t findIgnoringCase(const String& str, unsigned start = 0) const
241 { return m_impl ? m_impl->findIgnoringCase(str.impl(), start) : kNotFound; }
247 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); } in find()
249 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); } in find()
DStringImpl.h369 size_t findIgnoringCase(const LChar*, unsigned index = 0);
370 …ALWAYS_INLINE size_t findIgnoringCase(const char* s, unsigned index = 0) { return findIgnoringCase
371 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.cpp503 if (message.findIgnoringCase("error") != WTF::kNotFound) in didFireWebGLErrorOrWarning()
DInspectorDOMAgent.cpp970 if (text.findIgnoringCase(whitespaceTrimmedQuery) != kNotFound) in performSearch()
975 …if ((!startTagFound && !endTagFound && (node->nodeName().findIgnoringCase(tagNameQuery) != kNotFou… in performSearch()