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

  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.h 184 size_t reverseFindIgnoringCase(const String& str, unsigned start = UINT_MAX) const
185 { return m_impl ? m_impl->reverseFindIgnoringCase(str.impl(), start) : notFound; }
193 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
StringImpl.cpp 737 size_t StringImpl::reverseFindIgnoringCase(StringImpl* matchString, unsigned index)

Completed in 72 milliseconds