/external/chromium_org/third_party/WebKit/Source/core/dom/ |
PseudoElement.h | 36 class PseudoElement FINAL : public Element { 38 static PassRefPtr<PseudoElement> create(Element* parent, PseudoId pseudoId) 40 return adoptRef(new PseudoElement(parent, pseudoId)); 59 PseudoElement(Element*, PseudoId); 74 DEFINE_NODE_TYPE_CASTS(PseudoElement, isPseudoElement());
|
PseudoElement.cpp | 28 #include "core/dom/PseudoElement.h" 43 String PseudoElement::pseudoElementNameForEvents(PseudoId pseudoId) 57 PseudoElement::PseudoElement(Element* parent, PseudoId pseudoId) 66 PassRefPtr<RenderStyle> PseudoElement::customStyleForRenderer() 71 void PseudoElement::dispose() 84 void PseudoElement::attach(const AttachContext& context) 111 bool PseudoElement::rendererIsNeeded(const RenderStyle& style) 116 void PseudoElement::didRecalcStyle(StyleRecalcChange)
|
ElementRareData.h | 29 #include "core/dom/PseudoElement.h" 46 void setPseudoElement(PseudoId, PassRefPtr<PseudoElement>); 47 PseudoElement* pseudoElement(PseudoId) const; 190 RefPtr<PseudoElement> m_generatedBefore; 191 RefPtr<PseudoElement> m_generatedAfter; 192 RefPtr<PseudoElement> m_backdrop; 241 inline void ElementRareData::setPseudoElement(PseudoId pseudoId, PassRefPtr<PseudoElement> element) 264 inline PseudoElement* ElementRareData::pseudoElement(PseudoId pseudoId) cons [all...] |
Element.h | 58 class PseudoElement; 421 PseudoElement* pseudoElement(PseudoId) const; [all...] |
Element.cpp | 59 #include "core/dom/PseudoElement.h" [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSSelector.h | 66 PseudoElement, 309 return m_match == PseudoElement; 314 return m_match == PseudoElement && m_pseudoType == PseudoUnknown; 319 return m_match == PseudoElement && (m_pseudoType == PseudoUserAgentCustomElement || m_pseudoType == PseudoWebKitCustomElement); 358 return m_match == PseudoElement && pseudoType() == PseudoDistributed; 363 return m_match == PseudoElement && pseudoType() == PseudoContent;
|
CSSSelector.cpp | 105 case PseudoElement: 460 if (m_match != PseudoClass && m_match != PseudoElement && m_match != PagePseudoClass) 568 m_match = PseudoElement; 569 } else if (m_match == PseudoElement && !element) 666 } else if (cs->m_match == CSSSelector::PseudoElement) { [all...] |
SelectorChecker.cpp | 138 if (context.selector->m_match == CSSSelector::PseudoElement) { 423 case CSSSelector::PseudoElement: [all...] |
RuleSet.cpp | 115 if (component->pseudoType() == CSSSelector::PseudoCue || (component->m_match == CSSSelector::PseudoElement && component->value() == TextTrackCue::cueShadowPseudoId()))
|
CSSGrammar.y | [all...] |
CSSComputedStyleDeclaration.cpp | 62 #include "core/dom/PseudoElement.h" [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorDOMAgent.h | 175 void pseudoElementCreated(PseudoElement*); 176 void pseudoElementDestroyed(PseudoElement*);
|
InspectorInstrumentation.idl | 65 #include "core/dom/PseudoElement.h" 442 void pseudoElementCreated([Keep] PseudoElement*); 445 void pseudoElementDestroyed([Keep] PseudoElement*);
|
InspectorOverlay.cpp | 38 #include "core/dom/PseudoElement.h" 520 PseudoElement* pseudoElement = 0; 522 pseudoElement = toPseudoElement(element); 541 if (pseudoElement) { 542 if (pseudoElement->pseudoId() == BEFORE) 544 else if (pseudoElement->pseudoId() == AFTER)
|
InspectorDOMAgent.cpp | 50 #include "core/dom/PseudoElement.h" 360 if (element->pseudoElement(BEFORE)) 361 unbind(element->pseudoElement(BEFORE), nodesMap); 362 if (element->pseudoElement(AFTER)) 363 unbind(element->pseudoElement(AFTER), nodesMap); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleResolver.h | 232 PassRefPtr<PseudoElement> createPseudoElementIfNeeded(Element&, PseudoId);
|
StyleResolver.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/ |
AnimationController.cpp | 32 #include "core/dom/PseudoElement.h" 196 element->dispatchEvent(TransitionEvent::create(it->eventType, it->name, it->elapsedTime, PseudoElement::pseudoElementNameForEvents(element->pseudoId())));
|
/external/chromium_org/third_party/WebKit/Source/core/ |
webcore_dom.target.darwin-arm.mk | 112 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
|
webcore_dom.target.darwin-mips.mk | 112 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
|
webcore_dom.target.darwin-x86.mk | 112 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
|
webcore_dom.target.linux-arm.mk | 112 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
|
webcore_dom.target.linux-mips.mk | 112 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
|
webcore_dom.target.linux-x86.mk | 112 third_party/WebKit/Source/core/dom/PseudoElement.cpp \
|
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
CSSAnimations.cpp | 43 #include "core/dom/PseudoElement.h" [all...] |