bool protocolIs(const String& url, const char* protocol) { // Do the comparison without making a new string object. assertProtocolIsGood(protocol); // Check the scheme like GURL does. return url_util::FindAndCompareScheme(url.characters(), url.length(), protocol, 0); }
bool protocolIs(const String& url, const char* protocol) { assertProtocolIsGood(protocol); if (url.isNull()) return false; if (url.is8Bit()) return url::FindAndCompareScheme(asURLChar8Subtle(url), url.length(), protocol, 0); return url::FindAndCompareScheme(url.characters16(), url.length(), protocol, 0); }
bool protocolIs(const String& url, const char* protocol) { // Do the comparison without making a new string object. assertProtocolIsGood(protocol); for (int i = 0; ; ++i) { if (!protocol[i]) return url[i] == ':'; if (toASCIILower(url[i]) != protocol[i]) return false; } }
bool KURL::protocolIs(const char* protocol) const { assertProtocolIsGood(protocol); // JavaScript URLs are "valid" and should be executed even if KURL decides they are invalid. // The free function protocolIsJavaScript() should be used instead. // FIXME: Chromium code needs to be fixed for this assert to be enabled. ASSERT(strcmp(protocol, "javascript")); if (m_parsed.scheme.len <= 0) return !protocol; if (!m_string.isNull() && m_string.is8Bit()) return internalProtocolIs(m_parsed.scheme, m_string.characters8(), protocol); return internalProtocolIs(m_parsed.scheme, m_string.characters16(), protocol); }
bool KURL::protocolIs(const char* protocol) const { assertProtocolIsGood(protocol); // JavaScript URLs are "valid" and should be executed even if KURL decides they are invalid. // The free function protocolIsJavaScript() should be used instead. // FIXME: Chromium code needs to be fixed for this assert to be enabled. ASSERT(strcmp(protocol, "javascript")); if (m_url.m_parsed.scheme.len <= 0) return !protocol; return lowerCaseEqualsASCII( m_url.utf8String().data() + m_url.m_parsed.scheme.begin, m_url.utf8String().data() + m_url.m_parsed.scheme.end(), protocol); }