Home
last modified time | relevance | path

Searched refs:m_match (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSSelector.h308 Match match() const { return static_cast<Match>(m_match); } in match()
311 m_match = match; in setMatch()
312 ASSERT(static_cast<Match>(m_match) == match); // using a bitfield. in setMatch()
331 mutable unsigned m_match : 4; // enum Match variable
402 return m_match == PseudoElement; in matchesPseudoElement()
407 …return m_match == PseudoElement && (m_pseudoType == PseudoUserAgentCustomElement || m_pseudoType =… in isCustomPseudoElement()
412 …return m_match == PseudoClass && (m_pseudoType == PseudoHost || m_pseudoType == PseudoHostContext); in isHostPseudoClass()
435 return m_match >= FirstAttributeSelectorMatch; in isAttributeSelector()
440 return m_match == PseudoElement && pseudoType() == PseudoContent; in isContentPseudoElement()
445 return m_match == PseudoElement && pseudoType() == PseudoShadow; in isShadowPseudoElement()
[all …]
DCSSSelector.cpp55 ASSERT(m_match != Tag); in createRareData()
98 switch (m_match) { in specificityForOneSelector()
136 switch (component->m_match) { in specificityForPage()
412 printf("%*sm_match: %d\n", indent, "", m_match); in show()
414 if (m_match != Tag) in show()
417 if (m_match == Tag) in show()
456 if (m_match != PseudoClass && m_match != PseudoElement && m_match != PagePseudoClass) in extractPseudoType()
559 bool matchPagePseudoClass = (m_match == PagePseudoClass); in extractPseudoType()
562 else if (m_match == PseudoClass && element) { in extractPseudoType()
566 m_match = PseudoElement; in extractPseudoType()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentMarker.cpp73 bool activeMatch() const { return m_match; } in activeMatch()
78 : m_match(match) in DocumentMarkerTextMatch()
82 bool m_match; member in blink::FINAL
/external/chromium_org/courgette/
Dadjustment_method.cc297 Node* m_match = m_node->edges_in_frequency_order.front(); in TrySolveNode() local
300 if (p_match->count_ > 1.1 * m_match->count_ || in TrySolveNode()
301 m_match->count_ > 1.1 * p_match->count_) { in TrySolveNode()
303 << p_match->count_ << ":" << m_match->count_ << " " in TrySolveNode()
304 << ToString(p_match) << " vs " << ToString(m_match); in TrySolveNode()
312 LabelInfo* m_label_info = m_match->in_edge_; in TrySolveNode()