HomeSort by relevance Sort by last modified time
    Searched refs:equalIgnoringCase (Results 76 - 100 of 121) sorted by null

1 2 34 5

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp 386 || equalIgnoringCase(publicId, "-//W3O//DTD W3 HTML Strict 3.0//EN//")
389 || equalIgnoringCase(publicId, "-/W3C/DTD HTML 4.0 Transitional/EN")
390 || equalIgnoringCase(publicId, "HTML")
391 || equalIgnoringCase(systemId, "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd")
    [all...]
HTMLElementStack.cpp 289 return equalIgnoringCase(encoding, "text/html")
290 || equalIgnoringCase(encoding, "application/xhtml+xml");
XSSAuditor.cpp 144 return equalIgnoringCase(equiv, "refresh") || equalIgnoringCase(equiv, "set-cookie");
  /external/chromium_org/third_party/WebKit/Source/web/
WebSearchableFormData.cpp 250 if (equalIgnoringCase(formElement->getAttribute(methodAttr), "post")
AssociatedURLLoader.cpp 100 if (equalIgnoringCase(headerName, "access-control-expose-headers"))
WebPageSerializer.cpp 85 if (equalIgnoringCase(element->getAttribute(HTMLNames::typeAttr), "text/css")) {
WebPageSerializerImpl.cpp 141 if (equalIgnoringCase(equiv, "content-type")) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 623 if (content.equalIgnoringCase("animation")
624 || content.equalIgnoringCase("font-size-adjust")
625 || content.equalIgnoringCase("transform")
626 || content.equalIgnoringCase("user-select")
627 || content.equalIgnoringCase("-webkit-flex-pack")
628 || content.equalIgnoringCase("-webkit-text-size-adjust"))
661 if (propertyId == CSSPropertyCursor && content.equalIgnoringCase("hand"))
    [all...]
NetworkResourcesData.cpp 166 } else if (equalIgnoringCase(mimeType, "text/html"))
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.cpp 334 if (equalIgnoringCase(value, "true"))
336 if (equalIgnoringCase(value, "false"))
HTMLBodyElement.cpp 92 if (equalIgnoringCase(value, "fixed"))
HTMLImageElement.cpp 288 return !equalIgnoringCase(getAttribute(draggableAttr), "false");
TextFieldInputType.cpp 85 if (!equalIgnoringCase(input.document()->url().host(), "egov.uscis.gov"))
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
FontCacheChromiumWin.cpp 628 if (!equalIgnoringCase(family, winName)) {
636 if (!LookupAltName(family, altName) || !equalIgnoringCase(altName, winName)) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/mac/
LocaleMac.mm 62 if (equalIgnoringCase(currentLocaleLanguage, localeLanguage))
  /external/chromium_org/third_party/WebKit/Source/weborigin/
KURLTest.cpp 158 // strings must match for these functions (like equalIgnoringCase).
159 EXPECT_TRUE(WTF::equalIgnoringCase(asciiKURL, WTF::String(asciiURL)));
161 // Reproduce code path in FrameLoader.cpp -- equalIgnoringCase implicitly
164 EXPECT_TRUE(WTF::equalIgnoringCase(mailto.protocol(), "mailto"));
  /external/chromium_org/third_party/WebKit/Source/core/history/
HistoryItem.cpp 428 if (equalIgnoringCase(request.httpMethod(), "POST")) {
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ImageLoader.cpp 165 StoredCredentials allowCredentials = equalIgnoringCase(crossOriginMode, "use-credentials") ? AllowStoredCredentials : DoNotAllowStoredCredentials;
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.cpp 226 responseIsValid = charset.isEmpty() || equalIgnoringCase(charset, "UTF-8");
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/win/
LocaleWin.cpp 127 if (equalIgnoringCase(localeLanguageCode, userDefaultLanguageCode))
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScope.cpp 314 if (equalIgnoringCase(anchor->name(), name))
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
HTTPParsers.cpp 153 if (equalIgnoringCase(dispositionType, "inline"))
472 if (equalIgnoringCase(currentHeader, "deny"))
474 else if (equalIgnoringCase(currentHeader, "sameorigin"))
476 else if (equalIgnoringCase(currentHeader, "allowall"))
  /external/chromium_org/third_party/WebKit/Source/core/platform/sql/
SQLiteStatement.cpp 281 return equalIgnoringCase(String("BLOB"), String(reinterpret_cast<const UChar*>(sqlite3_column_decltype16(m_statement, col))));
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 154 if (markerType.isEmpty() || equalIgnoringCase(markerType, "all"))
156 else if (equalIgnoringCase(markerType, "Spelling"))
158 else if (equalIgnoringCase(markerType, "Grammar"))
160 else if (equalIgnoringCase(markerType, "TextMatch"))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathStep.cpp 198 return equalIgnoringCase(toElement(node)->localName(), name) && (namespaceURI.isNull() || namespaceURI == node->namespaceURI());

Completed in 526 milliseconds

1 2 34 5