Searched defs:isAlternate (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DStyleSheetCandidate.cpp64 bool StyleSheetCandidate::isAlternate() const function in class:blink::StyleSheetCandidate
84 return !isEnabledViaScript() && !title().isEmpty() && !isAlternate() && currentPreferrableName.isEmpty();
95 if (isAlternate() && title.isEmpty())
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DLinkRelAttribute.h46 bool isAlternate() const { return m_isAlternate; } function in class:blink::LinkRelAttribute
H A DLinkRelAttributeTest.cpp58 static inline void testLinkRelAttribute(String value, bool isStyleSheet, IconType iconType, bool isAlternate, bool isDNSPrefetch, bool isLinkSubresource, bool isLinkPrerender, bool isImport = false) argument
63 ASSERT_EQ(isAlternate, linkRelAttribute.isAlternate()) << value.utf8().data();
H A DHTMLLinkElement.h160 bool isAlternate() const { return linkStyle()->isUnset() && m_relAttribute.isAlternate(); } function in class:blink::FINAL
/external/llvm/lib/Analysis/
H A DCostModel.cpp99 bool isAlternate = true; local
103 for (unsigned i = 0; i < MaskSize && isAlternate; ++i) {
106 isAlternate = Mask[i] == (int)((i & 1) ? MaskSize + i : i);
109 if (isAlternate)
112 isAlternate = true;
114 for (unsigned i = 0; i < MaskSize && isAlternate; ++i) {
117 isAlternate = Mask[i] == (int)((i & 1) ? i : MaskSize + i);
120 return isAlternate;

Completed in 120 milliseconds