HomeSort by relevance Sort by last modified time
    Searched refs:reverseFindIgnoringCase (Results 1 - 3 of 3) 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.h 306 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; }
StringImpl.cpp 737 size_t StringImpl::reverseFindIgnoringCase(StringImpl* matchString, unsigned index)

Completed in 57 milliseconds