HomeSort by relevance Sort by last modified time
    Searched refs:tagHistory (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
RuleSet.cpp 61 ASSERT(selector.tagHistory());
62 return isSelectorMatchingHTMLBasedOnRuleHash(*selector.tagHistory());
77 for (const CSSSelector* component = selector; component; component = component->tagHistory()) {
94 for (; current; current = current->tagHistory()) {
101 current = current->tagHistory();
106 for (; current; current = current->tagHistory()) {
117 for (const CSSSelector* component = &selector; component; component = component->tagHistory()) {
132 , m_hasMultipartSelector(!!selector().tagHistory())
184 for (; it && it->relation() == CSSSelector::SubSelector; it = it->tagHistory()) {
201 // Custom pseudos come before ids and classes in the order of tagHistory, and have a relation o
    [all...]
CSSSelector.cpp 79 for (const CSSSelector* selector = this; selector; selector = selector->tagHistory()) {
135 for (const CSSSelector* component = this; component; component = component->tagHistory()) {
424 if (tagHistory()) {
426 tagHistory()->show(indent + 2);
589 sel1 = sel1->tagHistory();
590 sel2 = sel2->tagHistory();
674 if (cs->relation() == CSSSelector::SubSelector && cs->tagHistory())
675 return cs->tagHistory()->selectorText() + str.toString() + rightSide;
718 if (cs->relation() != CSSSelector::SubSelector || !cs->tagHistory())
720 cs = cs->tagHistory();
    [all...]
CSSSelectorList.cpp 60 for (CSSParserSelector* selector = selectorVector[i].get(); selector; selector = selector->tagHistory())
74 current = current->tagHistory();
127 for (const CSSSelector* current = &selector; current; current = current->tagHistory()) {
SelectorFilter.cpp 140 for (const CSSSelector* current = selector.tagHistory(); current; current = current->tagHistory()) {
PageRuleCollector.cpp 89 for (const CSSSelector* component = selector; component; component = component->tagHistory()) {
RuleFeature.cpp 126 for (const CSSSelector* component = &selector; component; component = component->tagHistory()) {
254 for (const CSSSelector* current = &selector; current; current = current->tagHistory()) {
272 return current->tagHistory();
276 return current->tagHistory();
279 return current->tagHistory();
298 for (const CSSSelector* current = &selector; current; current = current->tagHistory()) {
401 for (const CSSSelector* current = &selector; current; current = current->tagHistory()) {
SelectorChecker.cpp 192 ASSERT(context.selector->tagHistory());
193 nextContext.selector = context.selector->tagHistory();
533 for (subContext.selector = selector.selectorList()->first(); subContext.selector; subContext.selector = subContext.selector->tagHistory()) {
    [all...]
CSSSelector.h 38 // ** tagHistory() and relation():
41 // http://www.w3.org/TR/css3-selectors/#simple-selectors-dfn). The tagHistory() method returns the next
43 // the one in tagHistory(). For example, the CSS selector .a.b #c is represented as:
54 // The order of tagHistory() varies depending on the situation.
56 // right-to-left (in the example above, this is why .c is earlier in the tagHistory() chain than .a.b).
260 const CSSSelector* tagHistory() const { return m_isLastInTagHistory ? 0 : const_cast<CSSSelector*>(this + 1); }
299 // FIXME: selectors with no tagHistory() get a relation() of Descendant (and sometimes even SubSelector). It should instead be
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParserValues.cpp 135 while (end->tagHistory())
136 end = end->tagHistory();
154 for (CSSParserSelector* selector = const_cast<CSSParserSelector*>(this); selector; selector = selector->tagHistory()) {
CSSParserValues.h 242 CSSParserSelector* tagHistory() const { return m_tagHistory.get(); }
BisonCSSParser-in.cpp     [all...]
CSSGrammar.y 1123 while (end->tagHistory())
1124 end = end->tagHistory();
1133 while (end->tagHistory())
1134 end = end->tagHistory();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
SelectRuleFeatureSet.cpp 43 for (const CSSSelector* current = &selector; current; current = current->tagHistory()) {
ElementShadow.cpp 328 for (const CSSSelector* component = selector; component; component = component->tagHistory())
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLContentElement.cpp 108 for (const CSSSelector* subSelector = selector; subSelector; subSelector = subSelector->tagHistory()) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.cpp 212 for (const CSSSelector* selector = m_selectors[0]; selector; selector = selector->tagHistory()) {
399 for (const CSSSelector* selector = &firstSelector; selector; selector = selector->tagHistory()) {
452 if (!firstSelector.tagHistory()) {
  /external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
StyleSheetInvalidationAnalysis.cpp 52 for (const CSSSelector* current = selector; current; current = current->tagHistory()) {

Completed in 320 milliseconds