Searched defs:reverseFind (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h232 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const function in class:WTF::String
233 { return m_impl ? m_impl->reverseFind(c, start) : kNotFound; }
234 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const function in class:WTF::String
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 function in class:WTF::String
251 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
707 using WTF::reverseFind;
H A DStringImpl.cpp1367 size_t StringImpl::reverseFind(UChar c, unsigned index) function in class:WTF::StringImpl
1370 return WTF::reverseFind(characters8(), m_length, c, index);
1371 return WTF::reverseFind(characters16(), m_length, c, index);
1401 size_t StringImpl::reverseFind(StringImpl* matchString, unsigned index) function in class:WTF::StringImpl
1414 return WTF::reverseFind(characters8(), ourLength, (*matchString)[0], index);
1415 return WTF::reverseFind(characters16(), ourLength, (*matchString)[0], index);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DVector.h659 template<typename U> size_t reverseFind(const U&) const;
851 size_t Vector<T, inlineCapacity, Allocator>::reverseFind(const U& value) const function in class:WTF::Vector::Vector

Completed in 201 milliseconds