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

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

Completed in 809 milliseconds