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 230 size_t reverseFindIgnoringCase(const String& str, unsigned start = UINT_MAX) const
231 { return m_impl ? m_impl->reverseFindIgnoringCase(str.impl(), start) : kNotFound; }
239 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
StringImpl.h 391 size_t reverseFindIgnoringCase(StringImpl*, unsigned index = UINT_MAX);
395 bool startsWith(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(str, 0) : reverseFindIgnoringCase(str, 0)) == 0; }
StringImpl.cpp     [all...]

Completed in 388 milliseconds