Searched refs:equalIgnoringCase (Results 1 - 25 of 101) sorted by relevance

12345

/external/webkit/WebCore/platform/
H A DLogging.cpp68 if (equalIgnoringCase(channelName, String("BackForward")))
71 if (equalIgnoringCase(channelName, String("Editing")))
74 if (equalIgnoringCase(channelName, String("Events")))
77 if (equalIgnoringCase(channelName, String("Frames")))
80 if (equalIgnoringCase(channelName, String("FTP")))
83 if (equalIgnoringCase(channelName, String("History")))
86 if (equalIgnoringCase(channelName, String("IconDatabase")))
89 if (equalIgnoringCase(channelName, String("Loading")))
92 if (equalIgnoringCase(channelName, String("Media")))
95 if (equalIgnoringCase(channelNam
[all...]
/external/webkit/WebCore/loader/
H A DCrossOriginAccessControl.cpp45 if (equalIgnoringCase(name, "accept") || equalIgnoringCase(name, "accept-language") || equalIgnoringCase(name, "content-language"))
49 if (equalIgnoringCase(name, "content-type")) {
51 return equalIgnoringCase(mimeType, "application/x-www-form-urlencoded")
52 || equalIgnoringCase(mimeType, "multipart/form-data")
53 || equalIgnoringCase(mimeType, "text/plain");
H A DCachedCSSStyleSheet.cpp141 bool typeOK = mimeType.isEmpty() || equalIgnoringCase(mimeType, "text/css") || equalIgnoringCase(mimeType, "application/x-unknown-content-type");
/external/webkit/WebCore/css/
H A DCSSFontFaceSrcValue.cpp36 return equalIgnoringCase(m_format, "svg");
51 return equalIgnoringCase(m_format, "truetype") || equalIgnoringCase(m_format, "opentype")
H A DWebKitCSSKeyframesRule.cpp112 if (equalIgnoringCase(key, "from"))
114 else if (equalIgnoringCase(key, "to"))
/external/webkit/WebCore/html/
H A DHTMLParamElement.cpp66 if (equalIgnoringCase(value, "data") || equalIgnoringCase(value, "movie") || equalIgnoringCase(value, "src"))
107 if (!equalIgnoringCase(name(), "data") &&
108 !equalIgnoringCase(name(), "movie") &&
109 !equalIgnoringCase(name(), "src"))
H A DHTMLDivElement.cpp58 if (equalIgnoringCase(attr->value(), "middle") || equalIgnoringCase(attr->value(), "center"))
60 else if (equalIgnoringCase(attr->value(), "left"))
62 else if (equalIgnoringCase(attr->value(), "right"))
H A DHTMLParagraphElement.cpp60 if (equalIgnoringCase(attr->value(), "middle") || equalIgnoringCase(attr->value(), "center"))
62 else if (equalIgnoringCase(attr->value(), "left"))
64 else if (equalIgnoringCase(attr->value(), "right"))
H A DHTMLMetaElement.cpp75 if (equalIgnoringCase(name(), "viewport")) {
78 } else if (equalIgnoringCase(name(), "format-detection"))
80 else if ((equalIgnoringCase(name(), "HandheldFriendly")
81 && equalIgnoringCase(m_content, "true") ||
82 equalIgnoringCase(name(), "MobileOptimized"))
H A DHTMLTablePartElement.cpp83 if (equalIgnoringCase(v, "middle") || equalIgnoringCase(v, "center"))
85 else if (equalIgnoringCase(v, "absmiddle"))
87 else if (equalIgnoringCase(v, "left"))
89 else if (equalIgnoringCase(v, "right"))
H A DHTMLLinkElement.cpp162 if (equalIgnoringCase(rel, "stylesheet"))
164 else if (equalIgnoringCase(rel, "icon") || equalIgnoringCase(rel, "shortcut icon"))
167 else if (equalIgnoringCase(rel, "apple-touch-icon"))
169 else if (equalIgnoringCase(rel, "apple-touch-icon-precomposed"))
172 else if (equalIgnoringCase(rel, "dns-prefetch"))
174 else if (equalIgnoringCase(rel, "alternate stylesheet") || equalIgnoringCase(rel, "stylesheet alternate")) {
185 if (equalIgnoringCase(*it, "stylesheet"))
187 else if (equalIgnoringCase(*i
[all...]
H A DHTMLIFrameElement.cpp91 if (equalIgnoringCase(sandboxToken, "allow-same-origin"))
93 else if (equalIgnoringCase(sandboxToken, "allow-forms"))
95 else if (equalIgnoringCase(sandboxToken, "allow-scripts"))
H A DHTMLBRElement.cpp58 if (equalIgnoringCase(str, "all"))
H A DHTMLFrameElementBase.cpp133 if (equalIgnoringCase(attr->value(), "auto") || equalIgnoringCase(attr->value(), "yes"))
135 else if (equalIgnoringCase(attr->value(), "no"))
/external/webkit/WebCore/wml/
H A DWMLPElement.cpp60 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "center"))
62 else if (equalIgnoringCase(value, "left"))
64 else if (equalIgnoringCase(value, "right"))
H A DWMLBRElement.cpp62 if (equalIgnoringCase(value, "all"))
/external/webkit/WebCore/platform/text/
H A DAtomicString.h145 inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WebCore
146 inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WebCore
147 inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WebCore
148 inline bool equalIgnoringCase(const char* a, const AtomicString& b) { return equalIgnoringCase(a, b.impl()); } function in namespace:WebCore
149 inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return equalIgnoringCase( function in namespace:WebCore
[all...]
H A DStringImpl.h212 bool equalIgnoringCase(StringImpl*, StringImpl*);
213 bool equalIgnoringCase(StringImpl*, const char*);
214 inline bool equalIgnoringCase(const char* a, StringImpl* b) { return equalIgnoringCase(b, a); }
215 bool equalIgnoringCase(const UChar* a, const char* b, unsigned length);
216 inline bool equalIgnoringCase(const char* a, const UChar* b, unsigned length) { return equalIgnoringCase(b, a, length); }
/external/webkit/WebCore/page/
H A DDOMSelection.cpp270 if (equalIgnoringCase(alterString, "extend"))
272 else if (equalIgnoringCase(alterString, "move"))
278 if (equalIgnoringCase(directionString, "forward"))
280 else if (equalIgnoringCase(directionString, "backward"))
282 else if (equalIgnoringCase(directionString, "left"))
284 else if (equalIgnoringCase(directionString, "right"))
290 if (equalIgnoringCase(granularityString, "character"))
292 else if (equalIgnoringCase(granularityString, "word"))
294 else if (equalIgnoringCase(granularityString, "sentence"))
296 else if (equalIgnoringCase(granularityStrin
[all...]
H A DNavigator.cpp243 if (equalIgnoringCase(scheme, "http") || equalIgnoringCase(scheme, "https") || equalIgnoringCase(scheme, "file")) {
275 if (equalIgnoringCase(type, "text/html") || equalIgnoringCase(type, "text/css") || equalIgnoringCase(type, "application/x-javascript")) {
/external/webkit/WebCore/platform/network/
H A DResourceResponseBase.cpp128 return equalIgnoringCase(protocol, "http") || equalIgnoringCase(protocol, "https");
259 if (equalIgnoringCase(name, ageHeader))
261 else if (equalIgnoringCase(name, cacheControlHeader) || equalIgnoringCase(name, pragmaHeader))
263 else if (equalIgnoringCase(name, dateHeader))
265 else if (equalIgnoringCase(name, expiresHeader))
267 else if (equalIgnoringCase(name, lastModifiedHeader))
307 if (equalIgnoringCase(directives[i].first, noCacheDirective) && directives[i].second.isEmpty())
309 else if (equalIgnoringCase(directive
[all...]
/external/webkit/WebCore/platform/wince/
H A DMIMETypeRegistryWince.cpp102 if (equalIgnoringCase(type, "text/plain"))
108 if (equalIgnoringCase(i->second, type))
113 if (equalIgnoringCase("application/vnd.wap.xhtml+xml", type))
/external/webkit/WebCore/bindings/js/
H A DJSAttrCustom.cpp50 if (equalIgnoringCase(imp->name(), "src") && protocolIsJavaScript(deprecatedParseURL(attrValue))) {
/external/webkit/WebCore/rendering/
H A DRenderEmbeddedObject.cpp130 if (equalIgnoringCase((*paramNames)[i], "src"))
132 else if (equalIgnoringCase((*paramNames)[i], "data"))
202 if (url.isEmpty() && (equalIgnoringCase(name, "src") || equalIgnoringCase(name, "movie") || equalIgnoringCase(name, "code") || equalIgnoringCase(name, "url")))
204 if (serviceType.isEmpty() && equalIgnoringCase(name, "type")) {
/external/webkit/WebCore/platform/graphics/
H A DFontCache.cpp73 return equalIgnoringCase(m_family, other.m_family) && m_size == other.m_size &&
140 if (equalIgnoringCase(familyName, courier))
146 if (equalIgnoringCase(familyName, courierNew))
153 if (equalIgnoringCase(familyName, times))
155 if (equalIgnoringCase(familyName, timesNewRoman))
161 if (equalIgnoringCase(familyName, arial))
163 if (equalIgnoringCase(familyName, helvetica))
171 if (equalIgnoringCase(familyName, msSans))
177 if (equalIgnoringCase(familyName, msSerif))

Completed in 301 milliseconds

12345