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

  /external/webkit/Source/JavaScriptCore/runtime/
UString.h 105 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const
106 { return m_impl ? m_impl->reverseFind(c, start) : notFound; }
107 size_t reverseFind(const UString& str, unsigned start = UINT_MAX) const
108 { return m_impl ? m_impl->reverseFind(str.impl(), start) : notFound; }
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.h 174 size_t reverseFind(UChar c, unsigned start = UINT_MAX) const
175 { return m_impl ? m_impl->reverseFind(c, start) : notFound; }
176 size_t reverseFind(const String& str, unsigned start = UINT_MAX) const
177 { return m_impl ? m_impl->reverseFind(str.impl(), start) : notFound; }
187 // Wrappers for find & reverseFind adding dynamic sensitivity check.
192 size_t reverseFind(const String& str, unsigned start, bool caseSensitive) const
193 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
444 inline size_t reverseFind(const UChar* characters, unsigned length, UChar matchCharacter, unsigned index = UINT_MAX)
529 using WTF::reverseFind;
StringImpl.cpp 690 size_t StringImpl::reverseFind(UChar c, unsigned index)
692 return WTF::reverseFind(m_data, m_length, c, index);
695 size_t StringImpl::reverseFind(StringImpl* matchString, unsigned index)
706 return WTF::reverseFind(characters(), length(), matchString->characters()[0], index);
  /external/webkit/Source/JavaScriptCore/wtf/
Vector.h 565 template<typename U> size_t reverseFind(const U&) const;
761 size_t Vector<T, inlineCapacity>::reverseFind(const U& value) const
    [all...]

Completed in 99 milliseconds