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

  /external/webkit/WebCore/platform/text/
PlatformString.h 114 int reverseFind(UChar c, int start = -1) const
115 { return m_impl ? m_impl->reverseFind(c, start) : -1; }
116 int reverseFind(const String& str, int start = -1, bool caseSensitive = true) const
117 { return m_impl ? m_impl->reverseFind(str.impl(), start, caseSensitive) : -1; }
317 int reverseFind(const UChar*, size_t, UChar, int startPosition = -1);
356 inline int reverseFind(const UChar* characters, size_t length, UChar character, int startPosition)
StringImpl.cpp 586 int StringImpl::reverseFind(UChar c, int index)
588 return WebCore::reverseFind(m_data, m_length, c, index);
591 int StringImpl::reverseFind(StringImpl* str, int index, bool caseSensitive)

Completed in 44 milliseconds