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

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.h 238 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const
239 { return m_impl ? m_impl->reverseFind(c, start) : notFound; }
240 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const
241 { return m_impl ? m_impl->reverseFind(str.impl(), start) : notFound; }
251 // Wrappers for find & reverseFind adding dynamic sensitivity check.
256 size_t reverseFind(const String& str, unsigned start, bool caseSensitive) const
257 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
717 using WTF::reverseFind;
StringImpl.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Vector.h 569 template<typename U> size_t reverseFind(const U&) const;
763 size_t Vector<T, inlineCapacity>::reverseFind(const U& value) const
    [all...]

Completed in 51 milliseconds