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

12345

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DLinkRelAttribute.cpp59 if (equalIgnoringCase(rel, "stylesheet"))
61 else if (equalIgnoringCase(rel, "icon") || equalIgnoringCase(rel, "shortcut icon"))
64 else if (equalIgnoringCase(rel, "apple-touch-icon"))
66 else if (equalIgnoringCase(rel, "apple-touch-icon-precomposed"))
69 else if (equalIgnoringCase(rel, "dns-prefetch"))
71 else if (equalIgnoringCase(rel, "alternate stylesheet") || equalIgnoringCase(rel, "stylesheet alternate")) {
74 } else if (equalIgnoringCase(rel, "import")) {
84 if (equalIgnoringCase(*i
[all...]
H A DHTMLTablePartElement.cpp58 if (equalIgnoringCase(value, "top"))
60 else if (equalIgnoringCase(value, "middle"))
62 else if (equalIgnoringCase(value, "bottom"))
64 else if (equalIgnoringCase(value, "baseline"))
69 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "center"))
71 else if (equalIgnoringCase(value, "absmiddle"))
73 else if (equalIgnoringCase(value, "left"))
75 else if (equalIgnoringCase(value, "right"))
H A DHTMLMetaElement.cpp79 if (equalIgnoringCase(name(), "viewport"))
81 else if (equalIgnoringCase(name(), "referrer"))
83 else if (equalIgnoringCase(name(), "handheldfriendly") && equalIgnoringCase(contentValue, "true"))
85 else if (equalIgnoringCase(name(), "mobileoptimized"))
H A DHTMLParamElement.cpp60 return equalIgnoringCase(name, "data") || equalIgnoringCase(name, "movie") || equalIgnoringCase(name, "src");
H A DTextInputType.cpp51 if (equalIgnoringCase(type, InputTypeNames::datetime()))
53 else if (equalIgnoringCase(type, InputTypeNames::week()))
H A DHTMLDivElement.cpp61 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "center"))
63 else if (equalIgnoringCase(value, "left"))
65 else if (equalIgnoringCase(value, "right"))
H A DHTMLParagraphElement.cpp61 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "center"))
63 else if (equalIgnoringCase(value, "left"))
65 else if (equalIgnoringCase(value, "right"))
H A DHTMLElement.cpp155 if (equalIgnoringCase(value, "middle"))
160 if (value.isEmpty() || equalIgnoringCase(value, "true")) {
164 } else if (equalIgnoringCase(value, "plaintext-only")) {
168 } else if (equalIgnoringCase(value, "false"))
173 if (equalIgnoringCase(value, "true")) {
176 } else if (equalIgnoringCase(value, "false"))
179 if (equalIgnoringCase(value, "auto"))
500 if (equalIgnoringCase(where, "beforeBegin")) {
509 if (equalIgnoringCase(where, "afterBegin")) {
514 if (equalIgnoringCase(wher
[all...]
H A DHiddenInputType.cpp107 if (equalIgnoringCase(element()->name(), "_charset_")) {
H A DHTMLTableElement.cpp285 if (equalIgnoringCase(value, "above"))
287 else if (equalIgnoringCase(value, "below"))
289 else if (equalIgnoringCase(value, "hsides"))
291 else if (equalIgnoringCase(value, "vsides"))
293 else if (equalIgnoringCase(value, "lhs"))
295 else if (equalIgnoringCase(value, "rhs"))
297 else if (equalIgnoringCase(value, "box") || equalIgnoringCase(value, "border"))
299 else if (!equalIgnoringCase(value, "void"))
335 if (equalIgnoringCase(valu
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DLogging.cpp76 if (equalIgnoringCase(channelName, String("BackForward")))
79 if (equalIgnoringCase(channelName, String("Editing")))
82 if (equalIgnoringCase(channelName, String("Events")))
85 if (equalIgnoringCase(channelName, String("Frames")))
88 if (equalIgnoringCase(channelName, String("FTP")))
91 if (equalIgnoringCase(channelName, String("History")))
94 if (equalIgnoringCase(channelName, String("IconDatabase")))
97 if (equalIgnoringCase(channelName, String("Loading")))
100 if (equalIgnoringCase(channelName, String("Media")))
103 if (equalIgnoringCase(channelNam
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DSecurityContext.cpp107 if (equalIgnoringCase(sandboxToken, "allow-same-origin"))
109 else if (equalIgnoringCase(sandboxToken, "allow-forms"))
111 else if (equalIgnoringCase(sandboxToken, "allow-scripts")) {
114 } else if (equalIgnoringCase(sandboxToken, "allow-top-navigation"))
116 else if (equalIgnoringCase(sandboxToken, "allow-popups"))
118 else if (equalIgnoringCase(sandboxToken, "allow-pointer-lock"))
H A DViewportArguments.cpp310 if (equalIgnoringCase(valueString, "device-width"))
312 if (equalIgnoringCase(valueString, "device-height"))
331 if (equalIgnoringCase(valueString, "yes"))
333 if (equalIgnoringCase(valueString, "no"))
335 if (equalIgnoringCase(valueString, "device-width"))
337 if (equalIgnoringCase(valueString, "device-height"))
360 if (equalIgnoringCase(valueString, "yes"))
362 if (equalIgnoringCase(valueString, "no"))
364 if (equalIgnoringCase(valueString, "device-width"))
366 if (equalIgnoringCase(valueStrin
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/opentype/
H A DOpenTypeSanitizer.cpp72 return equalIgnoringCase(format, "woff")
73 || (RuntimeEnabledFeatures::woff2Enabled() && equalIgnoringCase(format, "woff2"));
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DCrossOriginAccessControl.cpp47 if (equalIgnoringCase(name, "accept")
48 || equalIgnoringCase(name, "accept-language")
49 || equalIgnoringCase(name, "content-language")
50 || equalIgnoringCase(name, "origin")
51 || equalIgnoringCase(name, "referer"))
55 if (equalIgnoringCase(name, "content-type")) {
57 return equalIgnoringCase(mimeType, "application/x-www-form-urlencoded")
58 || equalIgnoringCase(mimeType, "multipart/form-data")
59 || equalIgnoringCase(mimeType, "text/plain");
/external/chromium_org/third_party/WebKit/Source/weborigin/
H A DOriginAccessEntry.h64 return equalIgnoringCase(a.protocol(), b.protocol()) && equalIgnoringCase(a.host(), b.host()) && a.subdomainSettings() == b.subdomainSettings();
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDOMSelection.cpp292 if (equalIgnoringCase(alterString, "extend"))
294 else if (equalIgnoringCase(alterString, "move"))
300 if (equalIgnoringCase(directionString, "forward"))
302 else if (equalIgnoringCase(directionString, "backward"))
304 else if (equalIgnoringCase(directionString, "left"))
306 else if (equalIgnoringCase(directionString, "right"))
312 if (equalIgnoringCase(granularityString, "character"))
314 else if (equalIgnoringCase(granularityString, "word"))
316 else if (equalIgnoringCase(granularityString, "sentence"))
318 else if (equalIgnoringCase(granularityStrin
[all...]
H A DPerformance.cpp119 if (equalIgnoringCase(entryType, "resource"))
124 if (equalIgnoringCase(entryType, "mark"))
126 else if (equalIgnoringCase(entryType, "measure"))
138 if (entryType.isNull() || equalIgnoringCase(entryType, "resource"))
144 if (entryType.isNull() || equalIgnoringCase(entryType, "mark"))
146 if (entryType.isNull() || equalIgnoringCase(entryType, "measure"))
175 if (timingAllowOriginString.isEmpty() || equalIgnoringCase(timingAllowOriginString, "null"))
H A DContentSecurityPolicy.cpp132 return (equalIgnoringCase(name, connectSrc)
133 || equalIgnoringCase(name, defaultSrc)
134 || equalIgnoringCase(name, fontSrc)
135 || equalIgnoringCase(name, frameSrc)
136 || equalIgnoringCase(name, imgSrc)
137 || equalIgnoringCase(name, mediaSrc)
138 || equalIgnoringCase(name, objectSrc)
139 || equalIgnoringCase(name, reportURI)
140 || equalIgnoringCase(name, sandbox)
141 || equalIgnoringCase(nam
[all...]
H A DUserContentURLPattern.cpp81 if (equalIgnoringCase(m_scheme, "file"))
118 if (!equalIgnoringCase(test.protocol(), m_scheme))
121 if (!equalIgnoringCase(m_scheme, "file") && !matchesHost(test))
130 if (equalIgnoringCase(host, m_host))
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
H A DFontCustomPlatformDataMac.cpp81 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::supportsFormat(format);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
H A DFontCustomPlatformDataSkia.cpp83 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::supportsFormat(format);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DAtomicString.h206 inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
207 inline bool equalIgnoringCase(const AtomicString& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); } function in namespace:WTF
208 inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); } function in namespace:WTF
209 inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
210 inline bool equalIgnoringCase(const LChar* a, const AtomicString& b) { return equalIgnoringCase( function in namespace:WTF
211 inline bool equalIgnoringCase(const char* a, const AtomicString& b) { return equalIgnoringCase(reinterpret_cast<const LChar*>(a), b.impl()); } function in namespace:WTF
212 inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); } function in namespace:WTF
[all...]
H A DStringBuilder.h331 bool equalIgnoringCase(const StringBuilder& s, const CharType* buffer, unsigned length) function in namespace:WTF
337 return equalIgnoringCase(s.characters8(), buffer, length);
339 return equalIgnoringCase(s.characters16(), buffer, length);
342 inline bool equalIgnoringCase(const StringBuilder& s, const char* string) function in namespace:WTF
344 return equalIgnoringCase(s, reinterpret_cast<const LChar*>(string), strlen(string));
368 bool equalIgnoringCase(const StringBuilder& a, const StringType& b) function in namespace:WTF
378 return equalIgnoringCase(a.characters8(), b.characters8(), a.length());
379 return equalIgnoringCase(a.characters8(), b.characters16(), a.length());
383 return equalIgnoringCase(a.characters16(), b.characters8(), a.length());
384 return equalIgnoringCase(
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/win/
H A DFontCustomPlatformDataWin.cpp133 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::supportsFormat(format);

Completed in 368 milliseconds

12345