HomeSort by relevance Sort by last modified time
    Searched refs:equalIgnoringCase (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/platform/
Logging.cpp 78 if (equalIgnoringCase(channelName, String("BackForward")))
81 if (equalIgnoringCase(channelName, String("Editing")))
84 if (equalIgnoringCase(channelName, String("Events")))
87 if (equalIgnoringCase(channelName, String("Frames")))
90 if (equalIgnoringCase(channelName, String("FTP")))
93 if (equalIgnoringCase(channelName, String("History")))
96 if (equalIgnoringCase(channelName, String("IconDatabase")))
99 if (equalIgnoringCase(channelName, String("Loading")))
102 if (equalIgnoringCase(channelName, String("Media")))
105 if (equalIgnoringCase(channelName, String("Network"))
    [all...]
MIMETypeRegistry.cpp 89 if (equalIgnoringCase(mimeType, "image/jpeg") || equalIgnoringCase(mimeType, "image/png"))
91 if (equalIgnoringCase(mimeType, "image/webp"))
URLPatternMatcher.cpp 65 if (equalIgnoringCase(m_scheme, "file")) {
102 if (!equalIgnoringCase(test.protocol(), m_scheme))
105 if (!equalIgnoringCase(m_scheme, "file") && !matchesHost(test))
114 if (equalIgnoringCase(host, m_host))
  /external/chromium_org/third_party/WebKit/Source/core/html/
LinkRelAttribute.cpp 60 if (equalIgnoringCase(*it, "stylesheet")) {
63 } else if (equalIgnoringCase(*it, "import")) {
66 } else if (equalIgnoringCase(*it, "alternate")) {
68 } else if (equalIgnoringCase(*it, "icon")) {
73 } else if (equalIgnoringCase(*it, "prefetch")) {
75 } else if (equalIgnoringCase(*it, "dns-prefetch")) {
77 } else if (equalIgnoringCase(*it, "subresource")) {
79 } else if (equalIgnoringCase(*it, "prerender")) {
81 } else if (equalIgnoringCase(*it, "next")) {
83 } else if (equalIgnoringCase(*it, "apple-touch-icon"))
    [all...]
HTMLDivElement.cpp 44 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "center"))
46 else if (equalIgnoringCase(value, "left"))
48 else if (equalIgnoringCase(value, "right"))
HTMLParagraphElement.cpp 44 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "center"))
46 else if (equalIgnoringCase(value, "left"))
48 else if (equalIgnoringCase(value, "right"))
HTMLTablePartElement.cpp 62 if (equalIgnoringCase(value, "top"))
64 else if (equalIgnoringCase(value, "middle"))
66 else if (equalIgnoringCase(value, "bottom"))
68 else if (equalIgnoringCase(value, "baseline"))
73 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "center"))
75 else if (equalIgnoringCase(value, "absmiddle"))
77 else if (equalIgnoringCase(value, "left"))
79 else if (equalIgnoringCase(value, "right"))
HTMLParamElement.cpp 55 return equalIgnoringCase(name, "data") || equalIgnoringCase(name, "movie") || equalIgnoringCase(name, "src");
HTMLElement.cpp 158 return equalIgnoringCase(value, "auto") || equalIgnoringCase(value, "ltr") || equalIgnoringCase(value, "rtl");
164 if (equalIgnoringCase(value, "middle"))
169 if (value.isEmpty() || equalIgnoringCase(value, "true")) {
173 } else if (equalIgnoringCase(value, "plaintext-only")) {
177 } else if (equalIgnoringCase(value, "false"))
182 if (equalIgnoringCase(value, "true")) {
185 } else if (equalIgnoringCase(value, "false"))
188 if (equalIgnoringCase(value, "auto")
    [all...]
HTMLBRElement.cpp 55 if (equalIgnoringCase(value, "all"))
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParserValuesTest.cpp 65 ASSERT_TRUE(cssParserString.equalIgnoringCase("shadow"));
66 ASSERT_TRUE(cssParserString.equalIgnoringCase("ShaDow"));
67 ASSERT_FALSE(cssParserString.equalIgnoringCase("shadow-all"));
68 ASSERT_FALSE(cssParserString.equalIgnoringCase("sha"));
69 ASSERT_FALSE(cssParserString.equalIgnoringCase("abCD"));
80 ASSERT_TRUE(cssParserString.equalIgnoringCase("shadow"));
81 ASSERT_TRUE(cssParserString.equalIgnoringCase("ShaDow"));
82 ASSERT_FALSE(cssParserString.equalIgnoringCase("shadow-all"));
83 ASSERT_FALSE(cssParserString.equalIgnoringCase("sha"));
84 ASSERT_FALSE(cssParserString.equalIgnoringCase("abCD"))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SandboxFlags.cpp 55 if (equalIgnoringCase(sandboxToken, "allow-same-origin")) {
57 } else if (equalIgnoringCase(sandboxToken, "allow-forms")) {
59 } else if (equalIgnoringCase(sandboxToken, "allow-scripts")) {
62 } else if (equalIgnoringCase(sandboxToken, "allow-top-navigation")) {
64 } else if (equalIgnoringCase(sandboxToken, "allow-popups")) {
66 } else if (equalIgnoringCase(sandboxToken, "allow-pointer-lock")) {
68 } else if (equalIgnoringCase(sandboxToken, "allow-orientation-lock")) {
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
FetchUtils.cpp 90 if (equalIgnoringCase(name, "accept")
91 || equalIgnoringCase(name, "accept-language")
92 || equalIgnoringCase(name, "content-language"))
95 if (equalIgnoringCase(name, "content-type")) {
97 return equalIgnoringCase(mimeType, "application/x-www-form-urlencoded")
98 || equalIgnoringCase(mimeType, "multipart/form-data")
99 || equalIgnoringCase(mimeType, "text/plain");
126 return equalIgnoringCase(method, "TRACE")
127 || equalIgnoringCase(method, "TRACK")
128 || equalIgnoringCase(method, "CONNECT")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
AlternateFontFamily.h 51 if (equalIgnoringCase(familyName, courier))
58 if (equalIgnoringCase(familyName, msSans))
67 if (equalIgnoringCase(familyName, msSerif) || equalIgnoringCase(familyName, times))
79 if (equalIgnoringCase(familyName, courier))
85 if (equalIgnoringCase(familyName, courierNew))
92 if (equalIgnoringCase(familyName, times))
94 if (equalIgnoringCase(familyName, timesNewRoman))
100 if (equalIgnoringCase(familyName, arial))
102 if (equalIgnoringCase(familyName, helvetica)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TextInputType.cpp 53 if (equalIgnoringCase(type, InputTypeNames::datetime))
55 else if (equalIgnoringCase(type, InputTypeNames::week))
HiddenInputType.cpp 102 if (equalIgnoringCase(element().name(), "_charset_")) {
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeSanitizer.cpp 71 return equalIgnoringCase(format, "woff")
72 || (RuntimeEnabledFeatures::woff2Enabled() && equalIgnoringCase(format, "woff2"));
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
OriginAccessEntry.h 79 return equalIgnoringCase(a.protocol(), b.protocol())
80 && equalIgnoringCase(a.host(), b.host())
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DOMSelection.cpp 292 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(granularityString, "line")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/csp/
CSPSource.cpp 40 return equalIgnoringCase(url.protocol(), m_scheme);
46 if (equalIgnoringCase(host, m_host))
ContentSecurityPolicy.cpp 94 return (equalIgnoringCase(name, ConnectSrc)
95 || equalIgnoringCase(name, DefaultSrc)
96 || equalIgnoringCase(name, FontSrc)
97 || equalIgnoringCase(name, FrameSrc)
98 || equalIgnoringCase(name, ImgSrc)
99 || equalIgnoringCase(name, MediaSrc)
100 || equalIgnoringCase(name, ObjectSrc)
101 || equalIgnoringCase(name, ReportURI)
102 || equalIgnoringCase(name, Sandbox)
103 || equalIgnoringCase(name, ScriptSrc
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontCustomPlatformDataMac.cpp 80 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::supportsFormat(format);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
AtomicString.h 204 inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); }
205 inline bool equalIgnoringCase(const AtomicString& a, const LChar* b) { return equalIgnoringCase(a.impl(), b); }
206 inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), reinterpret_cast<const LChar*>(b)); }
207 inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); }
208 inline bool equalIgnoringCase(const LChar* a, const AtomicString& b) { return equalIgnoringCase(a, b.impl());
    [all...]
StringBuilder.h 335 bool equalIgnoringCase(const StringBuilder& s, const CharType* buffer, unsigned length)
341 return equalIgnoringCase(s.characters8(), buffer, length);
343 return equalIgnoringCase(s.characters16(), buffer, length);
346 inline bool equalIgnoringCase(const StringBuilder& s, const char* string)
348 return equalIgnoringCase(s, reinterpret_cast<const LChar*>(string), strlen(string));
372 bool equalIgnoringCase(const StringBuilder& a, const StringType& b)
382 return equalIgnoringCase(a.characters8(), b.characters8(), a.length());
383 return equalIgnoringCase(a.characters8(), b.characters16(), a.length());
387 return equalIgnoringCase(a.characters16(), b.characters8(), a.length());
388 return equalIgnoringCase(a.characters16(), b.characters16(), a.length())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/timing/
Performance.cpp 112 if (equalIgnoringCase(entryType, "resource"))
117 if (equalIgnoringCase(entryType, "mark"))
119 else if (equalIgnoringCase(entryType, "measure"))
131 if (entryType.isNull() || equalIgnoringCase(entryType, "resource"))
137 if (entryType.isNull() || equalIgnoringCase(entryType, "mark"))
139 if (entryType.isNull() || equalIgnoringCase(entryType, "measure"))
168 if (timingAllowOriginString.isEmpty() || equalIgnoringCase(timingAllowOriginString, "null"))

Completed in 354 milliseconds

1 2 3 4 5 6