D | StringImpl.cpp | 1367 size_t StringImpl::reverseFind(UChar c, unsigned index) in reverseFind() function in WTF::StringImpl 1370 return WTF::reverseFind(characters8(), m_length, c, index); in reverseFind() 1371 return WTF::reverseFind(characters16(), m_length, c, index); in reverseFind() 1401 size_t StringImpl::reverseFind(StringImpl* matchString, unsigned index) in reverseFind() function in WTF::StringImpl 1414 return WTF::reverseFind(characters8(), ourLength, (*matchString)[0], index); in reverseFind() 1415 return WTF::reverseFind(characters16(), ourLength, (*matchString)[0], index); in reverseFind()
|