Searched refs:reverseFindIgnoringCase (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/WTF-7600.1.24/wtf/text/
H A DWTFString.h243 size_t reverseFindIgnoringCase(const String& str, unsigned start = UINT_MAX) const function in class:WTF::String
244 { return m_impl ? m_impl->reverseFindIgnoringCase(str.impl(), start) : notFound; }
252 { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }
H A DStringImpl.h667 WTF_EXPORT_STRING_API size_t reverseFindIgnoringCase(StringImpl*, unsigned index = UINT_MAX);
670 bool startsWith(StringImpl* str, bool caseSensitive) { return caseSensitive ? startsWith(str) : (reverseFindIgnoringCase(str, 0) == 0); }
H A DStringImpl.cpp1329 size_t StringImpl::reverseFindIgnoringCase(StringImpl* matchString, unsigned index) function in class:WTF::StringImpl

Completed in 114 milliseconds