Searched refs:findIgnoringCase (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
D | WTFString.h | 238 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()
|
D | StringImpl.h | 369 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);
|
D | StringImpl.cpp | 1175 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/ |
D | InspectorDOMDebuggerAgent.cpp | 503 if (message.findIgnoringCase("error") != WTF::kNotFound) in didFireWebGLErrorOrWarning()
|
D | InspectorDOMAgent.cpp | 970 if (text.findIgnoringCase(whitespaceTrimmedQuery) != kNotFound) in performSearch() 975 …if ((!startTagFound && !endTagFound && (node->nodeName().findIgnoringCase(tagNameQuery) != kNotFou… in performSearch()
|