HomeSort by relevance Sort by last modified time
    Searched refs:equalIgnoringCase (Results 51 - 75 of 101) sorted by null

1 23 4 5

  /external/webkit/WebCore/platform/network/
FormDataBuilder.cpp 67 if (equalIgnoringCase(type, "post"))
69 else if (equalIgnoringCase(type, "get"))
  /external/webkit/WebCore/platform/text/
StringImpl.cpp 470 bool equalIgnoringCase(const UChar* a, const char* b, unsigned length)
480 static inline bool equalIgnoringCase(const UChar* a, const UChar* b, int length)
512 if (Unicode::foldCase(*++ptr) == lc && equalIgnoringCase(ptr + 1, chsPlusOne, chsLengthMinusOne))
575 if (hthis == hstr && equalIgnoringCase(uthis + i, ustr, lstr))
635 if (hthis == hstr && equalIgnoringCase(uthis + i, ustr, lstr) )
820 bool equalIgnoringCase(StringImpl* a, StringImpl* b)
825 bool equalIgnoringCase(StringImpl* a, const char* b)
  /external/webkit/WebCore/bindings/js/
JSElementCustom.cpp 68 if ((element->hasTagName(iframeTag) || element->hasTagName(frameTag)) && equalIgnoringCase(name, "src") && protocolIsJavaScript(deprecatedParseURL(value))) {
  /external/webkit/WebCore/css/
MediaQueryEvaluator.cpp 114 || equalIgnoringCase(mediaTypeToMatch, "all")
115 || equalIgnoringCase(mediaTypeToMatch, m_mediaType);
123 ASSERT(!equalIgnoringCase(mediaTypeToMatch, String("all")));
124 return equalIgnoringCase(mediaTypeToMatch, m_mediaType);
  /external/webkit/WebCore/html/
HTMLMarqueeElement.cpp 96 if (attr->value() == "-1" || equalIgnoringCase(attr->value(), "infinite"))
HTMLObjectElement.cpp 131 bool isGearsPlugin = equalIgnoringCase(getAttribute(typeAttr), "application/x-googlegears");
338 && equalIgnoringCase(child->getAttribute(nameAttr), "type")
HTMLAnchorElement.cpp 321 if (equalIgnoringCase(value, "true"))
323 if (equalIgnoringCase(value, "false"))
HTMLFormElement.cpp 316 if (equalIgnoringCase(encodingType, "text/plain")) {
456 m_autocomplete = !equalIgnoringCase(attr->value(), "off");
HTMLImageElement.cpp 316 return !equalIgnoringCase(getAttribute(draggableAttr), "false");
  /external/webkit/WebCore/loader/appcache/
ApplicationCache.cpp 123 if (!equalIgnoringCase(request.httpMethod(), "GET"))
ManifestParser.cpp 127 if (!equalIgnoringCase(url.protocol(), manifestURL.protocol()))
ApplicationCacheHost.cpp 284 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request) || !equalIgnoringCase(request.url().protocol(), cache->manifestResource()->url().protocol()))
  /external/webkit/WebCore/platform/network/soup/
ResourceHandleSoup.cpp 596 if (equalIgnoringCase(protocol, "data"))
599 if (equalIgnoringCase(protocol, "http") || equalIgnoringCase(protocol, "https")) {
604 if (equalIgnoringCase(protocol, "file") || equalIgnoringCase(protocol, "ftp") || equalIgnoringCase(protocol, "ftps")) {
  /external/webkit/WebCore/loader/
TextResourceDecoder.cpp 306 if (equalIgnoringCase(mimeType, "text/css"))
308 if (equalIgnoringCase(mimeType, "text/html"))
  /external/webkit/WebCore/platform/graphics/chromium/
FontCacheChromiumWin.cpp 533 if (!equalIgnoringCase(family, winName)) {
542 !equalIgnoringCase(altName, winName)) {
  /external/webkit/WebCore/dom/
NamedAttrMap.cpp 183 if (shouldIgnoreAttributeCase && equalIgnoringCase(name, attrName.localName()))
StyledElement.cpp 363 if (!equalIgnoringCase(color, "transparent")) {
  /external/webkit/WebCore/storage/
DatabaseAuthorizer.cpp 375 //if (equalIgnoringCase(tableName, "sqlite_master") || equalIgnoringCase(tableName, "sqlite_temp_master") ||
376 // equalIgnoringCase(tableName, "sqlite_sequence") || equalIgnoringCase(tableName, Database::databaseInfoTableName()))
379 if (equalIgnoringCase(tableName, Database::databaseInfoTableName()))
  /external/webkit/WebKit/chromium/src/
WebSearchableFormData.cpp 229 if (equalIgnoringCase(formElement->getAttribute(HTMLNames::methodAttr), "post") || !IsHTTPFormSubmit(formElement.get()))
  /external/webkit/WebCore/platform/graphics/win/
FontCacheWin.cpp 346 if (equalIgnoringCase(family, lucidaStr)) {
511 if (equalIgnoringCase(family, lucidaStr))
  /external/webkit/WebCore/xml/
XMLHttpRequest.cpp 127 return equalIgnoringCase(name, "set-cookie") || equalIgnoringCase(name, "set-cookie2");
  /external/webkit/WebKit/chromium/tests/
KURLTest.cpp 164 // strings must match for these functions (like equalIgnoringCase).
165 EXPECT_TRUE(WebCore::equalIgnoringCase(asciiKURL, WebCore::String(asciiURL)));
167 // Reproduce code path in FrameLoader.cpp -- equalIgnoringCase implicitly
170 EXPECT_TRUE(WebCore::equalIgnoringCase(mailto.protocol(), "mailto"));
  /external/webkit/WebCore/editing/
ApplyStyleCommand.cpp     [all...]
  /external/webkit/WebCore/accessibility/
AXObjectCache.cpp 167 return equalIgnoringCase(static_cast<Element*>(node)->getAttribute(roleAttr), role);
  /external/webkit/WebCore/history/
HistoryItem.cpp 487 if (equalIgnoringCase(request.httpMethod(), "POST")) {

Completed in 741 milliseconds

1 23 4 5