NOPSEUDO         1534 Source/core/css/CSSComputedStyleDeclaration.cpp     return styledNode->computedStyle(styledNode->isPseudoElement() ? NOPSEUDO : m_pseudoElementSpecifier);
NOPSEUDO          261 Source/core/css/CSSSelector.cpp         return NOPSEUDO;
NOPSEUDO          264 Source/core/css/CSSSelector.cpp         return NOPSEUDO;
NOPSEUDO          268 Source/core/css/CSSSelector.cpp     return NOPSEUDO;
NOPSEUDO           52 Source/core/css/ElementRuleCollector.cpp     , m_pseudoStyleRequest(NOPSEUDO)
NOPSEUDO          271 Source/core/css/ElementRuleCollector.cpp     if (m_pseudoStyleRequest.pseudoId != NOPSEUDO && m_pseudoStyleRequest.pseudoId != result->dynamicPseudo)
NOPSEUDO          295 Source/core/css/ElementRuleCollector.cpp         if (dynamicPseudo != NOPSEUDO && m_pseudoStyleRequest.pseudoId == NOPSEUDO) {
NOPSEUDO          166 Source/core/css/SelectorChecker.cpp             if (pseudoId != NOPSEUDO && m_mode != SharingRules && result)
NOPSEUDO          189 Source/core/css/SelectorChecker.cpp         if (context.pseudoId != NOPSEUDO && (!result || context.pseudoId != result->dynamicPseudo))
NOPSEUDO          193 Source/core/css/SelectorChecker.cpp             TemporaryChange<PseudoId> dynamicPseudoScope(result->dynamicPseudo, NOPSEUDO);
NOPSEUDO          226 Source/core/css/SelectorChecker.cpp     PseudoId dynamicPseudo = result ? result->dynamicPseudo : NOPSEUDO;
NOPSEUDO          230 Source/core/css/SelectorChecker.cpp     nextContext.hasScrollbarPseudo = dynamicPseudo != NOPSEUDO && (context.scrollbar || dynamicPseudo == SCROLLBAR_CORNER || dynamicPseudo == RESIZER);
NOPSEUDO          232 Source/core/css/SelectorChecker.cpp     if ((context.elementStyle || m_mode == CollectingCSSRules || m_mode == CollectingStyleRules || m_mode == QueryingRules) && dynamicPseudo != NOPSEUDO
NOPSEUDO          265 Source/core/css/SelectorChecker.cpp     nextContext.pseudoId = NOPSEUDO;
NOPSEUDO           69 Source/core/css/SelectorChecker.h             , pseudoId(NOPSEUDO)
NOPSEUDO           95 Source/core/css/SelectorChecker.h             : dynamicPseudo(NOPSEUDO)
NOPSEUDO          153 Source/core/css/resolver/MatchedPropertiesCache.cpp     if (style->unique() || (style->styleType() != NOPSEUDO && parentStyle->unique()))
NOPSEUDO          432 Source/core/css/resolver/StyleAdjuster.cpp     if (style->display() == INLINE && style->styleType() == NOPSEUDO && style->writingMode() != parentStyle->writingMode())
NOPSEUDO          210 Source/core/css/resolver/StyleBuilderCustom.cpp     if (state.element() && state.element()->isSVGElement() && state.style()->styleType() == NOPSEUDO)
NOPSEUDO         1341 Source/core/css/resolver/StyleBuilderCustom.cpp                     if (state.style()->styleType() == NOPSEUDO)
NOPSEUDO         1021 Source/core/css/resolver/StyleResolver.cpp     collectPseudoRulesForElement(element, collector, NOPSEUDO, rulesToInclude);
NOPSEUDO         1037 Source/core/css/resolver/StyleResolver.cpp     return pseudoCSSRulesForElement(element, NOPSEUDO, rulesToInclude);
NOPSEUDO          341 Source/core/dom/Element.h     RenderStyle* computedStyle(PseudoId = NOPSEUDO);
NOPSEUDO          624 Source/core/dom/Element.h     virtual RenderStyle* virtualComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) OVERRIDE { return computedStyle(pseudoElementSpecifier); }
NOPSEUDO          218 Source/core/dom/Node.h     bool isPseudoElement() const { return pseudoId() != NOPSEUDO; }
NOPSEUDO          221 Source/core/dom/Node.h     PseudoId pseudoId() const { return (isElementNode() && hasCustomStyleCallbacks()) ? customPseudoId() : NOPSEUDO; }
NOPSEUDO          545 Source/core/dom/Node.h     RenderStyle* computedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) { return virtualComputedStyle(pseudoElementSpecifier); }
NOPSEUDO          797 Source/core/dom/Node.h         return NOPSEUDO;
NOPSEUDO          818 Source/core/dom/Node.h     virtual RenderStyle* virtualComputedStyle(PseudoId = NOPSEUDO);
NOPSEUDO           61 Source/core/dom/PseudoElement.cpp     ASSERT(pseudoId != NOPSEUDO);
NOPSEUDO         1286 Source/core/inspector/InspectorCSSAgent.cpp     PseudoId selectorPseudoId = selector->matchesPseudoElement() ? CSSSelector::pseudoId(selector->pseudoType()) : NOPSEUDO;
NOPSEUDO         1137 Source/core/rendering/RenderBlock.cpp             && (!anonymousBlock->previousSibling() || (anonymousBlock->previousSibling()->style()->styleType() != NOPSEUDO && anonymousBlock->previousSibling()->isFloating() && !anonymousBlock->previousSibling()->previousSibling()))
NOPSEUDO         1138 Source/core/rendering/RenderBlock.cpp             && (!anonymousBlock->nextSibling() || (anonymousBlock->nextSibling()->style()->styleType() != NOPSEUDO && anonymousBlock->nextSibling()->isFloating() && !anonymousBlock->nextSibling()->nextSibling()))) {
NOPSEUDO          119 Source/core/rendering/RenderCounter.cpp     case NOPSEUDO:
NOPSEUDO         2156 Source/core/rendering/RenderObject.cpp         if (!child->isAnonymous() || child->style()->styleType() != NOPSEUDO)
NOPSEUDO          509 Source/core/rendering/RenderObject.h         return isAnonymous() && (style()->display() == BLOCK || style()->display() == BOX) && style()->styleType() == NOPSEUDO && isRenderBlock() && !isListMarker() && !isRenderFlowThread()
NOPSEUDO          265 Source/core/rendering/style/RenderStyle.cpp     if (!m_cachedPseudoStyles || styleType() != NOPSEUDO)
NOPSEUDO          282 Source/core/rendering/style/RenderStyle.cpp     if (styleType() != NOPSEUDO)
NOPSEUDO          299 Source/core/rendering/style/RenderStyle.cpp     ASSERT(pseudo->styleType() > NOPSEUDO);
NOPSEUDO          328 Source/core/rendering/style/RenderStyle.h         noninherited_flags._styleType = NOPSEUDO;
NOPSEUDO         1846 Source/core/rendering/style/RenderStyle.h     ASSERT(pseudo > NOPSEUDO);
NOPSEUDO         1853 Source/core/rendering/style/RenderStyle.h     ASSERT(pseudo > NOPSEUDO);
NOPSEUDO          190 Source/core/svg/SVGElement.h     RenderStyle* computedStyle(PseudoId = NOPSEUDO);
NOPSEUDO          191 Source/core/svg/SVGElement.h     virtual RenderStyle* virtualComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) OVERRIDE FINAL { return computedStyle(pseudoElementSpecifier); }