HomeSort by relevance Sort by last modified time
    Searched refs:findIgnoringCase (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h 226 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); }
237 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); }
StringImpl.h 383 size_t findIgnoringCase(const LChar*, unsigned index = 0);
384 ALWAYS_INLINE size_t findIgnoringCase(const char* s, unsigned index = 0) { return findIgnoringCase(reinterpret_cast<const LChar*>(s), index); }
385 size_t findIgnoringCase(StringImpl*, unsigned index = 0);
StringImpl.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMDebuggerAgent.cpp 561 if (message.findIgnoringCase("error") != WTF::kNotFound)
InspectorDOMAgent.cpp     [all...]

Completed in 569 milliseconds