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

1 2 3 4 5 6

  /external/webkit/Source/WebCore/platform/
Logging.cpp 69 if (equalIgnoringCase(channelName, String("BackForward")))
72 if (equalIgnoringCase(channelName, String("Editing")))
75 if (equalIgnoringCase(channelName, String("Events")))
78 if (equalIgnoringCase(channelName, String("Frames")))
81 if (equalIgnoringCase(channelName, String("FTP")))
84 if (equalIgnoringCase(channelName, String("History")))
87 if (equalIgnoringCase(channelName, String("IconDatabase")))
90 if (equalIgnoringCase(channelName, String("Loading")))
93 if (equalIgnoringCase(channelName, String("Media")))
96 if (equalIgnoringCase(channelName, String("Network"))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontCacheAndroid.cpp 63 || equalIgnoringCase(family, "serif")
64 || equalIgnoringCase(family, "sans-serif")
65 || equalIgnoringCase(family, "sans")
66 || equalIgnoringCase(family, "monospace")
67 || equalIgnoringCase(family, "times") // skia aliases for serif
68 || equalIgnoringCase(family, "times new roman")
69 || equalIgnoringCase(family, "palatino")
70 || equalIgnoringCase(family, "georgia")
71 || equalIgnoringCase(family, "baskerville")
72 || equalIgnoringCase(family, "goudy"
    [all...]
FontCustomPlatformData.cpp 82 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype")
84 || equalIgnoringCase(format, "woff")
  /external/webkit/Source/WebCore/loader/
CrossOriginAccessControl.cpp 46 if (equalIgnoringCase(name, "accept") || equalIgnoringCase(name, "accept-language") || equalIgnoringCase(name, "content-language"))
50 if (equalIgnoringCase(name, "content-type")) {
52 return equalIgnoringCase(mimeType, "application/x-www-form-urlencoded")
53 || equalIgnoringCase(mimeType, "multipart/form-data")
54 || equalIgnoringCase(mimeType, "text/plain");
  /external/webkit/Source/WebCore/html/
HTMLMetaElement.cpp 74 if (equalIgnoringCase(name(), "viewport"))
78 else if (equalIgnoringCase(name(), "format-detection"))
80 else if (((equalIgnoringCase(name(), "HandheldFriendly") && equalIgnoringCase(m_content, "true")) || equalIgnoringCase(name(), "MobileOptimized"))
HTMLDivElement.cpp 64 if (equalIgnoringCase(attr->value(), "middle") || equalIgnoringCase(attr->value(), "center"))
66 else if (equalIgnoringCase(attr->value(), "left"))
68 else if (equalIgnoringCase(attr->value(), "right"))
HTMLParagraphElement.cpp 60 if (equalIgnoringCase(attr->value(), "middle") || equalIgnoringCase(attr->value(), "center"))
62 else if (equalIgnoringCase(attr->value(), "left"))
64 else if (equalIgnoringCase(attr->value(), "right"))
HTMLTablePartElement.cpp 83 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"))
HTMLParamElement.cpp 47 return equalIgnoringCase(name, "data") || equalIgnoringCase(name, "movie") || equalIgnoringCase(name, "src");
HTMLElement.cpp 140 if (equalIgnoringCase(attr->value(), "middle"))
160 if (!equalIgnoringCase(attr->value(), "auto"))
166 if (equalIgnoringCase(value, "true")) {
169 } else if (equalIgnoringCase(value, "false"))
534 if (equalIgnoringCase(where, "beforeBegin")) {
539 if (equalIgnoringCase(where, "afterBegin"))
542 if (equalIgnoringCase(where, "beforeEnd"))
545 if (equalIgnoringCase(where, "afterEnd")) {
571 if (equalIgnoringCase(where, "beforeBegin") || equalIgnoringCase(where, "afterEnd"))
    [all...]
HTMLIFrameElement.cpp 91 if (equalIgnoringCase(sandboxToken, "allow-same-origin"))
93 else if (equalIgnoringCase(sandboxToken, "allow-forms"))
95 else if (equalIgnoringCase(sandboxToken, "allow-scripts"))
97 else if (equalIgnoringCase(sandboxToken, "allow-top-navigation"))
HTMLLinkElement.cpp 173 if (equalIgnoringCase(rel, "stylesheet"))
175 else if (equalIgnoringCase(rel, "icon") || equalIgnoringCase(rel, "shortcut icon"))
178 else if (equalIgnoringCase(rel, "apple-touch-icon"))
180 else if (equalIgnoringCase(rel, "apple-touch-icon-precomposed"))
183 else if (equalIgnoringCase(rel, "dns-prefetch"))
185 else if (equalIgnoringCase(rel, "alternate stylesheet") || equalIgnoringCase(rel, "stylesheet alternate")) {
196 if (equalIgnoringCase(*it, "stylesheet"))
198 else if (equalIgnoringCase(*it, "alternate")
    [all...]
  /external/webkit/Source/WebCore/page/
OriginAccessEntry.h 64 return equalIgnoringCase(a.protocol(), b.protocol()) && equalIgnoringCase(a.host(), b.host()) && a.subdomainSettings() == b.subdomainSettings();
DOMSelection.cpp 297 if (equalIgnoringCase(alterString, "extend"))
299 else if (equalIgnoringCase(alterString, "move"))
305 if (equalIgnoringCase(directionString, "forward"))
307 else if (equalIgnoringCase(directionString, "backward"))
309 else if (equalIgnoringCase(directionString, "left"))
311 else if (equalIgnoringCase(directionString, "right"))
317 if (equalIgnoringCase(granularityString, "character"))
319 else if (equalIgnoringCase(granularityString, "word"))
321 else if (equalIgnoringCase(granularityString, "sentence"))
323 else if (equalIgnoringCase(granularityString, "line")
    [all...]
ContentSecurityPolicy.cpp 127 return equalIgnoringCase(url.protocol(), m_scheme);
135 return equalIgnoringCase(url.host(), m_host);
210 if (isFirstSourceInList && equalIgnoringCase("'none'", beginSource, position - beginSource))
240 if (equalIgnoringCase("'self'", begin, end - begin)) {
455 if (equalIgnoringCase(optionsValue, disableXSSProtection))
457 else if (equalIgnoringCase(optionsValue, evalScript))
619 if (!m_scriptSrc && equalIgnoringCase(name, scriptSrc))
621 else if (!m_objectSrc && equalIgnoringCase(name, objectSrc))
623 else if (!m_imgSrc && equalIgnoringCase(name, imgSrc))
625 else if (!m_styleSrc && equalIgnoringCase(name, styleSrc)
    [all...]
  /external/webkit/Source/WebCore/dom/
ViewportArguments.cpp 209 if (equalIgnoringCase(valueString, "desktop-width"))
211 if (equalIgnoringCase(valueString, "device-width"))
213 if (equalIgnoringCase(valueString, "device-height"))
235 if (equalIgnoringCase(valueString, "yes"))
237 if (equalIgnoringCase(valueString, "no"))
239 if (equalIgnoringCase(valueString, "desktop-width"))
241 if (equalIgnoringCase(valueString, "device-width"))
243 if (equalIgnoringCase(valueString, "device-height"))
266 if (equalIgnoringCase(valueString, "yes"))
268 if (equalIgnoringCase(valueString, "no")
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontCustomPlatformDataQt.cpp 66 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype");
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCustomPlatformDataCairo.cpp 66 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype");
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFraction.cpp 66 if (equalIgnoringCase(nalign, "left"))
68 else if (equalIgnoringCase(nalign, "right"))
78 if (equalIgnoringCase(dalign, "left"))
80 else if (equalIgnoringCase(dalign, "right"))
88 if (equalIgnoringCase(thickness, "thin"))
90 else if (equalIgnoringCase(thickness, "medium"))
92 else if (equalIgnoringCase(thickness, "thick"))
94 else if (equalIgnoringCase(thickness, "0"))
  /external/webkit/Source/WebCore/wml/
WMLPElement.cpp 65 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "center"))
67 else if (equalIgnoringCase(value, "left"))
69 else if (equalIgnoringCase(value, "right"))
  /external/webkit/Source/WebCore/platform/graphics/freetype/
FontCustomPlatformDataFreeType.cpp 95 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || equalIgnoringCase(format, "woff");
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.h 149 inline bool equalIgnoringCase(const AtomicString& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl()); }
150 inline bool equalIgnoringCase(const AtomicString& a, const char* b) { return equalIgnoringCase(a.impl(), b); }
151 inline bool equalIgnoringCase(const AtomicString& a, const String& b) { return equalIgnoringCase(a.impl(), b.impl()); }
152 inline bool equalIgnoringCase(const char* a, const AtomicString& b) { return equalIgnoringCase(a, b.impl()); }
153 inline bool equalIgnoringCase(const String& a, const AtomicString& b) { return equalIgnoringCase(a.impl(), b.impl());
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontCustomPlatformData.cpp 119 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || equalIgnoringCase(format, "woff");
  /external/webkit/Source/WebCore/css/
CSSFontFaceSrcValue.cpp 41 return equalIgnoringCase(m_format, "svg");
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontCustomPlatformData.cpp 86 return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype");

Completed in 408 milliseconds

1 2 3 4 5 6