HomeSort by relevance Sort by last modified time
    Searched refs:PseudoElement (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
PseudoElement.h 35 class PseudoElement FINAL : public Element {
37 static PassRefPtrWillBeRawPtr<PseudoElement> create(Element* parent, PseudoId pseudoId)
39 return adoptRefWillBeNoop(new PseudoElement(parent, pseudoId));
55 PseudoElement(Element*, PseudoId);
69 DEFINE_ELEMENT_TYPE_CASTS(PseudoElement, isPseudoElement());
PseudoElement.cpp 28 #include "core/dom/PseudoElement.h"
60 String PseudoElement::pseudoElementNameForEvents(PseudoId pseudoId)
74 PseudoElement::PseudoElement(Element* parent, PseudoId pseudoId)
83 PassRefPtr<RenderStyle> PseudoElement::customStyleForRenderer()
88 void PseudoElement::dispose()
103 void PseudoElement::attach(const AttachContext& context)
128 bool PseudoElement::rendererIsNeeded(const RenderStyle& style)
133 void PseudoElement::didRecalcStyle(StyleRecalcChange)
ElementRareData.h 30 #include "core/dom/PseudoElement.h"
52 void setPseudoElement(PseudoId, PassRefPtrWillBeRawPtr<PseudoElement>);
53 PseudoElement* pseudoElement(PseudoId) const;
149 RefPtrWillBeMember<PseudoElement> m_generatedBefore;
150 RefPtrWillBeMember<PseudoElement> m_generatedAfter;
151 RefPtrWillBeMember<PseudoElement> m_backdrop;
191 inline void ElementRareData::setPseudoElement(PseudoId pseudoId, PassRefPtrWillBeRawPtr<PseudoElement> element)
214 inline PseudoElement* ElementRareData::pseudoElement(PseudoId pseudoId) cons
    [all...]
Element.h 61 class PseudoElement;
407 PseudoElement* pseudoElement(PseudoId) const;
    [all...]
Element.cpp 65 #include "core/dom/PseudoElement.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelector.h 114 PseudoElement, // Example: ::first-line
402 return m_match == PseudoElement;
407 return m_match == PseudoElement && (m_pseudoType == PseudoUserAgentCustomElement || m_pseudoType == PseudoWebKitCustomElement);
440 return m_match == PseudoElement && pseudoType() == PseudoContent;
445 return m_match == PseudoElement && pseudoType() == PseudoShadow;
CSSSelector.cpp 110 case PseudoElement:
456 if (m_match != PseudoClass && m_match != PseudoElement && m_match != PagePseudoClass)
566 m_match = PseudoElement;
567 } else if (m_match == PseudoElement && !element)
669 } else if (cs->m_match == CSSSelector::PseudoElement) {
777 case CSSSelector::PseudoElement:
SelectorChecker.cpp 131 if (context.selector->match() == CSSSelector::PseudoElement) {
449 case CSSSelector::PseudoElement:
512 && selector.match() != CSSSelector::PseudoElement))
    [all...]
RuleSet.cpp 118 if (component->pseudoType() == CSSSelector::PseudoCue || (component->match() == CSSSelector::PseudoElement && component->value() == TextTrackCue::cueShadowPseudoId()))
RuleFeature.cpp 51 if (selector.match() == CSSSelector::PseudoElement) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.h 187 void pseudoElementCreated(PseudoElement*);
188 void pseudoElementDestroyed(PseudoElement*);
InspectorInstrumentation.idl 68 #include "core/dom/PseudoElement.h"
450 void pseudoElementCreated([Keep] PseudoElement*);
453 void pseudoElementDestroyed([Keep] PseudoElement*);
InspectorOverlay.cpp 37 #include "core/dom/PseudoElement.h"
616 PseudoElement* pseudoElement = 0;
618 pseudoElement = toPseudoElement(element);
637 if (pseudoElement) {
638 if (pseudoElement->pseudoId() == BEFORE)
640 else if (pseudoElement->pseudoId() == AFTER)
InspectorDOMAgent.cpp 46 #include "core/dom/PseudoElement.h"
377 if (element->pseudoElement(BEFORE))
378 unbind(element->pseudoElement(BEFORE), nodesMap);
379 if (element->pseudoElement(AFTER))
380 unbind(element->pseudoElement(AFTER), nodesMap);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.h 205 PassRefPtrWillBeRawPtr<PseudoElement> createPseudoElementIfNeeded(Element& parent, PseudoId);
StyleResolver.cpp 716 PassRefPtrWillBeRawPtr<PseudoElement> StyleResolver::createPseudoElementIfNeeded(Element& parent, PseudoId pseudoId)
735 return PseudoElement::create(&parent, pseudoId);
748 RefPtrWillBeRawPtr<PseudoElement> pseudo = PseudoElement::create(&parent, pseudoId);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSGrammar.y     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp 47 #include "core/dom/PseudoElement.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk 116 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
webcore_dom.target.darwin-arm64.mk 116 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
webcore_dom.target.darwin-mips.mk 116 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
webcore_dom.target.darwin-mips64.mk 116 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
webcore_dom.target.darwin-x86.mk 116 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
webcore_dom.target.darwin-x86_64.mk 116 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
webcore_dom.target.linux-arm.mk 116 third_party/WebKit/Source/core/dom/PseudoElement.cpp \

Completed in 199 milliseconds

1 2