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 232 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const
233 { return m_impl ? m_impl->reverseFind(c, start) : kNotFound; }
234 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const
235 { return m_impl ? m_impl->reverseFind(str.impl(), start) : kNotFound; }
245 // Wrappers for find & reverseFind adding dynamic sensitivity check.
250 size_t reverseFind(const String& str, unsigned start, bool caseSensitive) const
251 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
707 using WTF::reverseFind;
StringImpl.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Vector.h 659 template<typename U> size_t reverseFind(const U&) const;
851 size_t Vector<T, inlineCapacity, Allocator>::reverseFind(const U& value) const
    [all...]

Completed in 112 milliseconds