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

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h 242 size_t reverseFindIgnoringCase(const String& str, unsigned start = UINT_MAX) const
243 { return m_impl ? m_impl->reverseFindIgnoringCase(str.impl(), start) : kNotFound; }
251 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
StringImpl.h 377 size_t reverseFindIgnoringCase(StringImpl*, unsigned index = UINT_MAX);
381 bool startsWith(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(str, 0) : reverseFindIgnoringCase(str, 0)) == 0; }
StringImpl.cpp     [all...]

Completed in 586 milliseconds