reverseFindIgnoringCase 377 Source/wtf/text/StringImpl.h size_t reverseFindIgnoringCase(StringImpl*, unsigned index = UINT_MAX); reverseFindIgnoringCase 381 Source/wtf/text/StringImpl.h bool startsWith(StringImpl* str, bool caseSensitive = true) { return (caseSensitive ? reverseFind(str, 0) : reverseFindIgnoringCase(str, 0)) == 0; } reverseFindIgnoringCase 242 Source/wtf/text/WTFString.h size_t reverseFindIgnoringCase(const String& str, unsigned start = UINT_MAX) const reverseFindIgnoringCase 243 Source/wtf/text/WTFString.h { return m_impl ? m_impl->reverseFindIgnoringCase(str.impl(), start) : kNotFound; } reverseFindIgnoringCase 251 Source/wtf/text/WTFString.h { return caseSensitive ? reverseFind(str, start) : reverseFindIgnoringCase(str, start); }