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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DVector.h545 template<typename U> size_t reverseFind(const U&) const;
730 size_t Vector<T, inlineCapacity>::reverseFind(const U& value) const function in class:WTF::Vector::Vector
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DWTFString.h233 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const function in class:WTF::String
234 { return m_impl ? m_impl->reverseFind(c, start) : kNotFound; }
235 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const function in class:WTF::String
236 { return m_impl ? m_impl->reverseFind(str.impl(), start) : kNotFound; }
246 // Wrappers for find & reverseFind adding dynamic sensitivity check.
251 size_t reverseFind(const String& str, unsigned start, bool caseSensitive) const function in class:WTF::String
252 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
705 using WTF::reverseFind;
H A DStringImpl.cpp1353 size_t StringImpl::reverseFind(UChar c, unsigned index) function in class:WTF::StringImpl
1356 return WTF::reverseFind(characters8(), m_length, c, index);
1357 return WTF::reverseFind(characters16(), m_length, c, index);
1387 size_t StringImpl::reverseFind(StringImpl* matchString, unsigned index) function in class:WTF::StringImpl
1400 return WTF::reverseFind(characters8(), ourLength, (*matchString)[0], index);
1401 return WTF::reverseFind(characters16(), ourLength, (*matchString)[0], index);

Completed in 90 milliseconds