Searched defs:reverseFindIgnoringCase (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h230 size_t reverseFindIgnoringCase(const String& str, unsigned start = UINT_MAX) const function in class:WTF::String
231 { return m_impl ? m_impl->reverseFindIgnoringCase(str.impl(), start) : kNotFound; }
239 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
H A DStringImpl.cpp1449 size_t StringImpl::reverseFindIgnoringCase(StringImpl* matchString, unsigned index) function in class:WTF::StringImpl

Completed in 2802 milliseconds