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

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h 244 size_t findIgnoringCase(const LChar* str, unsigned start = 0) const
245 { return m_impl ? m_impl->findIgnoringCase(str, start) : notFound; }
246 size_t findIgnoringCase(const String& str, unsigned start = 0) const
247 { return m_impl ? m_impl->findIgnoringCase(str.impl(), start) : notFound; }
253 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); }
255 { return caseSensitive ? find(str, start) : findIgnoringCase(str, start); }
StringImpl.cpp     [all...]

Completed in 753 milliseconds