HomeSort by relevance Sort by last modified time
    Searched full:pseudoid (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
PseudoStyleRequest.h 35 PseudoStyleRequest(PseudoId pseudoId, RenderScrollbar* scrollbar = 0, ScrollbarPart scrollbarPart = NoPart)
36 : pseudoId(pseudoId)
45 return parentStyle && pseudoId != BACKDROP;
48 PseudoId pseudoId;
SelectorChecker.h 64 , pseudoId(NOPSEUDO)
78 PseudoId pseudoId;
89 Match match(const SelectorCheckingContext&, PseudoId&, const SiblingTraversalStrategy&) const;
92 Match matchForShadowDistributed(const Element*, const SiblingTraversalStrategy&, PseudoId&, SelectorCheckingContext& nextContext) const;
ElementRuleCollector.cpp 127 const AtomicString& pseudoId = element->shadowPseudoId();
128 if (!pseudoId.isEmpty()) {
130 collectMatchingRulesForList(matchRequest.ruleSet->shadowPseudoElementRules(pseudoId.impl()), cascadeScope, cascadeOrder, matchRequest, ruleRange);
202 inline bool ElementRuleCollector::ruleMatches(const RuleData& ruleData, const ContainerNode* scope, PseudoId& dynamicPseudo)
206 if (m_pseudoStyleRequest.pseudoId != NOPSEUDO)
228 context.pseudoId = m_pseudoStyleRequest.pseudoId;
235 if (m_pseudoStyleRequest.pseudoId != NOPSEUDO && m_pseudoStyleRequest.pseudoId != dynamicPseudo)
246 PseudoId dynamicPseudo = NOPSEUDO
    [all...]
SelectorChecker.cpp 80 const AtomicString& pseudoId = selector->pseudoType() == CSSSelector::PseudoWebKitCustomElement ? element->shadowPseudoId() : element->pseudo();
81 if (pseudoId != selector->value())
138 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext& context, PseudoId& dynamicPseudo, const SiblingTraversalStrategy& siblingTraversalStrategy) const
155 PseudoId pseudoId = CSSSelector::pseudoId(context.selector->pseudoType());
156 if (pseudoId == FIRST_LETTER) {
160 if (pseudoId != NOPSEUDO && m_mode != SharingRules)
161 dynamicPseudo = pseudoId;
176 PseudoId ignoreDynamicPseudo = NOPSEUDO
    [all...]
CSSComputedStyleDeclaration.h 126 PseudoId m_pseudoElementSpecifier;
ElementRuleCollector.h 113 bool ruleMatches(const RuleData&, const ContainerNode* scope, PseudoId&);
CSSSelector.h 196 static PseudoId pseudoId(PseudoType);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PseudoElement.h 38 static PassRefPtr<PseudoElement> create(Element* parent, PseudoId pseudoId)
40 return adoptRef(new PseudoElement(parent, pseudoId));
55 static String pseudoElementNameForEvents(PseudoId);
58 PseudoElement(Element*, PseudoId);
61 virtual PseudoId customPseudoId() const OVERRIDE { return m_pseudoId; }
63 PseudoId m_pseudoId;
PseudoElement.cpp 43 String PseudoElement::pseudoElementNameForEvents(PseudoId pseudoId)
47 switch (pseudoId) {
57 PseudoElement::PseudoElement(Element* parent, PseudoId pseudoId)
59 , m_pseudoId(pseudoId)
61 ASSERT(pseudoId != NOPSEUDO);
ElementRareData.h 46 void setPseudoElement(PseudoId, PassRefPtr<PseudoElement>);
47 PseudoElement* pseudoElement(PseudoId) const;
230 inline void ElementRareData::setPseudoElement(PseudoId pseudoId, PassRefPtr<PseudoElement> element)
232 switch (pseudoId) {
250 inline PseudoElement* ElementRareData::pseudoElement(PseudoId pseudoId) const
252 switch (pseudoId) {
Element.cpp     [all...]
Node.h 241 bool isPseudoElement() const { return pseudoId() != NOPSEUDO; }
242 bool isBeforePseudoElement() const { return pseudoId() == BEFORE; }
243 bool isAfterPseudoElement() const { return pseudoId() == AFTER; }
244 PseudoId pseudoId() const { return (isElementNode() && hasCustomStyleCallbacks()) ? customPseudoId() : NOPSEUDO; }
578 RenderStyle* computedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) { return virtualComputedStyle(pseudoElementSpecifier); }
    [all...]
Element.h 453 RenderStyle* computedStyle(PseudoId = NOPSEUDO);
546 PseudoElement* pseudoElement(PseudoId) const;
547 RenderObject* pseudoElementRenderer(PseudoId) const;
703 void updatePseudoElement(PseudoId, StyleChange);
704 void createPseudoElementIfNeeded(PseudoId);
748 virtual RenderStyle* virtualComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) { return computedStyle(pseudoElementSpecifier); }
    [all...]
Node.cpp 296 for (PseudoId pseudoId = FIRST_PUBLIC_PSEUDOID; ch == NoChange && pseudoId < FIRST_INTERNAL_PSEUDOID; pseudoId = static_cast<PseudoId>(pseudoId + 1)) {
297 if (s1->hasPseudoStyle(pseudoId)) {
298 RenderStyle* ps2 = s2->getCachedPseudoStyle(pseudoId);
302 RenderStyle* ps1 = s1->getCachedPseudoStyle(pseudoId);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
ProgressShadowElement.h 66 DEFINE_STATIC_LOCAL(AtomicString, pseudoId, ("-webkit-progress-bar", AtomicString::ConstructFromLiteral));
67 setPart(pseudoId);
83 DEFINE_STATIC_LOCAL(AtomicString, pseudoId, ("-webkit-progress-value", AtomicString::ConstructFromLiteral));
84 setPart(pseudoId);
ProgressShadowElement.cpp 62 DEFINE_STATIC_LOCAL(AtomicString, pseudoId, ("-webkit-progress-inner-element", AtomicString::ConstructFromLiteral));
63 setPart(pseudoId);
HTMLContentElement.cpp 114 PseudoId ignoreDynamicPseudo = NOPSEUDO;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbar.cpp 148 PassRefPtr<RenderStyle> RenderScrollbar::getScrollbarPseudoStyle(ScrollbarPart partType, PseudoId pseudoId)
153 RefPtr<RenderStyle> result = owningRenderer()->getUncachedPseudoStyle(PseudoStyleRequest(pseudoId, this, partType), owningRenderer()->style());
196 static PseudoId pseudoForScrollbarPart(ScrollbarPart part)
RenderScrollbar.h 77 PassRefPtr<RenderStyle> getScrollbarPseudoStyle(ScrollbarPart, PseudoId);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.h 173 RenderStyle* computedStyle(PseudoId = NOPSEUDO);
174 virtual RenderStyle* virtualComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) { return computedStyle(pseudoElementSpecifier); }
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.h 245 PassRefPtr<CSSRuleList> pseudoStyleRulesForElement(Element*, PseudoId, unsigned rulesToInclude = AllButEmptyCSSRules);
375 PseudoId ignoreDynamicPseudo = NOPSEUDO;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
StylesSidebarPane.js 111 // Keep in sync with RenderStyleConstants.h PseudoId enum. Array below contains pseudo id names for corresponding enum indexes.
414 for (var pseudoId in this.sections) {
415 var styleRules = this._refreshStyleRules(this.sections[pseudoId], computedStyle);
445 var pseudoId = pseudoElementCSSRules.pseudoId;
447 var entry = { isStyleSeparator: true, pseudoId: pseudoId };
457 this.sections[pseudoId] = this._rebuildSectionsForStyleRules(styleRules, usedProperties, pseudoId, anchorElement);
638 _rebuildSectionsForStyleRules: function(styleRules, usedProperties, pseudoId, anchorElement
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 980 for (PseudoId pseudoId = FIRST_PUBLIC_PSEUDOID; pseudoId < AFTER_LAST_INTERNAL_PSEUDOID; pseudoId = static_cast<PseudoId>(pseudoId + 1)) {
981 RefPtr<CSSRuleList> matchedRules = styleResolver->pseudoStyleRulesForElement(element, pseudoId, StyleResolver::AllCSSRules);
984 .setPseudoId(static_cast<int>(pseudoId))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMWindow.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyleConstants.h 71 enum PseudoId {

Completed in 895 milliseconds

1 2