Searched refs:reverseFindIgnoringCase (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/text/
H A DWTFString.h184 size_t reverseFindIgnoringCase(const String& str, unsigned start = UINT_MAX) const function in class:WTF::String
185 { return m_impl ? m_impl->reverseFindIgnoringCase(str.impl(), start) : notFound; }
193 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
H A DStringImpl.h306 size_t reverseFindIgnoringCase(StringImpl*, unsigned index = UINT_MAX);
308 bool startsWith(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(str, 0) : reverseFindIgnoringCase(str, 0)) == 0; }
H A DStringImpl.cpp737 size_t StringImpl::reverseFindIgnoringCase(StringImpl* matchString, unsigned index) function in class:WTF::StringImpl

Completed in 79 milliseconds