Searched refs:Element (Results 76 - 100 of 916) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResolver.h52 class Element;
79 typedef WillBeHeapDeque<RawPtrWillBeMember<Element>, styleSharingListSize> StyleSharingList;
103 void pushParentElement(Element&);
104 void popParentElement(Element&);
106 PassRefPtr<RenderStyle> styleForElement(Element*, RenderStyle* parentStyle = 0, StyleSharingBehavior = AllowStyleSharing,
109 PassRefPtr<RenderStyle> styleForKeyframe(Element&, const RenderStyle&, RenderStyle* parentStyle, const StyleKeyframe*, const AtomicString& animationName);
110 static PassRefPtrWillBeRawPtr<AnimatableValue> createAnimatableValueSnapshot(Element&, CSSPropertyID, CSSValue&);
113 PassRefPtr<RenderStyle> pseudoStyleForElement(Element*, const PseudoStyleRequest&, RenderStyle* parentStyle);
140 void styleTreeResolveScopedKeyframesRules(const Element*, WillBeHeapVector<RawPtrWillBeMember<ScopedStyleResolver>, 8>&);
151 PassRefPtrWillBeRawPtr<CSSRuleList> cssRulesForElement(Element*, unsigne
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DScriptLoader.h33 class Element;
40 static PassOwnPtr<ScriptLoader> create(Element*, bool createdByParser, bool isEvaluated);
43 Element* element() const { return m_element; }
76 ScriptLoader(Element*, bool createdByParser, bool isEvaluated);
90 Element* m_element;
106 ScriptLoader* toScriptLoaderIfPossible(Element*);
108 inline PassOwnPtr<ScriptLoader> ScriptLoader::create(Element* element, bool createdByParser, bool isEvaluated)
H A DNamedNodeMap.h29 #include "core/dom/Element.h"
42 friend class Element;
44 static PassOwnPtrWillBeRawPtr<NamedNodeMap> create(Element* element)
68 Element* element() const { return m_element; }
73 explicit NamedNodeMap(Element* element)
76 // Only supports NamedNodeMaps with Element associated.
80 RawPtrWillBeMember<Element> m_element;
H A DUserActionElementSet.h38 class Element;
76 void setFlags(Element*, unsigned);
77 void clearFlags(Element*, unsigned);
78 bool hasFlags(const Element*, unsigned flags) const;
80 typedef WillBeHeapHashMap<RefPtrWillBeMember<Element>, unsigned> ElementFlagMap;
H A DPseudoElement.h30 #include "core/dom/Element.h"
35 class PseudoElement FINAL : public Element {
37 static PassRefPtrWillBeRawPtr<PseudoElement> create(Element* parent, PseudoId pseudoId)
55 PseudoElement(Element*, PseudoId);
H A DDocumentFullscreen.idl24 [RuntimeEnabled=FullscreenUnprefixed] readonly attribute Element? fullscreenElement;
34 [MeasureAs=PrefixedDocumentCurrentFullScreenElement] readonly attribute Element webkitCurrentFullScreenElement;
39 [MeasureAs=PrefixedDocumentFullscreenElement, ImplementedAs=fullscreenElement] readonly attribute Element webkitFullscreenElement;
H A DDocumentFullscreen.cpp38 Element* DocumentFullscreen::fullscreenElement(Document& document)
57 Element* DocumentFullscreen::webkitCurrentFullScreenElement(Document& document)
H A DSelectorQuery.h41 class Element;
44 typedef StaticNodeTypeList<Element> StaticElementList;
49 bool matches(Element&) const;
51 PassRefPtrWillBeRawPtr<Element> queryFirst(ContainerNode& rootNode) const;
55 bool selectorMatches(const CSSSelector&, Element&, const ContainerNode&) const;
72 bool selectorListMatches(ContainerNode& rootNode, Element&, typename SelectorQueryTrait::OutputType&) const;
91 bool matches(Element&) const;
93 PassRefPtrWillBeRawPtr<Element> queryFirst(ContainerNode& rootNode) const;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DHitRegion.h9 #include "core/dom/Element.h"
27 RefPtrWillBeMember<Element> control;
42 void updateAccessibility(Element* canvas);
48 Element* control() const { return m_control.get(); }
57 RefPtrWillBeMember<Element> m_control;
72 void removeHitRegionByControl(Element*);
77 HitRegion* getHitRegionByControl(Element*) const;
90 typedef WillBeHeapHashMap<RefPtrWillBeMember<Element>, RefPtrWillBeMember<HitRegion> > HitRegionControlMap;
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.h54 class Element;
85 String elementRenderTreeAsText(Element*, ExceptionState&);
94 bool isSharingStyle(Element*, Element*) const;
98 ShadowRoot* shadowRoot(Element* host);
99 ShadowRoot* youngestShadowRoot(Element* host);
100 ShadowRoot* oldestShadowRoot(Element* host);
106 const AtomicString& shadowPseudoId(Element*);
111 bool isValidContentSelect(Element* insertionPoint, ExceptionState&);
114 bool hasSelectorForIdInShadow(Element* hos
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLErrors.cpp35 #include "core/dom/Element.h"
91 static inline PassRefPtrWillBeRawPtr<Element> createXHTMLParserErrorHeader(Document* doc, const String& errorMessages)
93 RefPtrWillBeRawPtr<Element> reportElement = doc->createElement(QualifiedName(nullAtom, "parsererror", xhtmlNamespaceURI), true);
99 RefPtrWillBeRawPtr<Element> h3 = doc->createElement(h3Tag, true);
103 RefPtrWillBeRawPtr<Element> fixed = doc->createElement(divTag, true);
125 RefPtrWillBeRawPtr<Element> documentElement = m_document->documentElement();
127 RefPtrWillBeRawPtr<Element> rootElement = m_document->createElement(htmlTag, true);
128 RefPtrWillBeRawPtr<Element> body = m_document->createElement(bodyTag, true);
133 RefPtrWillBeRawPtr<Element> rootElement = m_document->createElement(htmlTag, true);
134 RefPtrWillBeRawPtr<Element> hea
[all...]
/external/chromium_org/content/common/
H A Dresource_request_body.h29 typedef storage::DataElement Element; typedef in class:content::ResourceRequestBody
41 const std::vector<Element>* elements() const { return &elements_; }
42 std::vector<Element>* elements_mutable() { return &elements_; }
43 void swap_elements(std::vector<Element>* elements) {
57 std::vector<Element> elements_;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DSelectorFilter.h32 #include "core/dom/Element.h"
47 explicit ParentStackFrame(Element& element) : element(&element) { }
51 RawPtrWillBeMember<Element> element;
55 void pushParentStackFrame(Element& parent);
58 void setupParentStack(Element& parent);
59 void pushParent(Element& parent);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DClassList.h30 #include "core/dom/Element.h"
37 class Element;
43 static PassOwnPtrWillBeRawPtr<ClassList> create(Element* element)
56 virtual Element* element() OVERRIDE { return m_element; }
63 explicit ClassList(Element*);
72 RawPtrWillBeMember<Element> m_element;
H A DHTMLAllCollection.cpp29 #include "core/dom/Element.h"
49 Element* HTMLAllCollection::namedItemWithIndex(const AtomicString& name, unsigned index) const
54 if (WillBeHeapVector<RawPtrWillBeMember<Element> >* elements = cache.getElementsById(name)) {
60 if (WillBeHeapVector<RawPtrWillBeMember<Element> >* elements = cache.getElementsByName(name)) {
68 void HTMLAllCollection::namedGetter(const AtomicString& name, RefPtrWillBeRawPtr<NodeList>& returnValue0, RefPtrWillBeRawPtr<Element>& returnValue1)
70 WillBeHeapVector<RefPtrWillBeMember<Element> > namedItems;
H A DRadioNodeList.h52 bool checkElementMatchesRadioNodeListFilter(const Element&) const;
54 bool matchesByIdOrName(const Element&) const;
57 virtual bool elementMatches(const Element&) const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCompositeEditCommand.h37 class Element;
58 Element* startingRootEditableElement() const { return m_startingRootEditableElement.get(); }
59 Element* endingRootEditableElement() const { return m_endingRootEditableElement.get(); }
70 RefPtrWillBeMember<Element> m_startingRootEditableElement;
71 RefPtrWillBeMember<Element> m_endingRootEditableElement;
102 void applyStyledElement(PassRefPtrWillBeRawPtr<Element>);
103 void removeStyledElement(PassRefPtrWillBeRawPtr<Element>);
114 void mergeIdenticalElements(PassRefPtrWillBeRawPtr<Element>, PassRefPtrWillBeRawPtr<Element>);
122 void removeCSSProperty(PassRefPtrWillBeRawPtr<Element>, CSSPropertyI
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementCallbackQueue.h34 #include "core/dom/Element.h"
50 static PassOwnPtrWillBeRawPtr<CustomElementCallbackQueue> create(PassRefPtrWillBeRawPtr<Element>);
71 explicit CustomElementCallbackQueue(PassRefPtrWillBeRawPtr<Element>);
73 RefPtrWillBeMember<Element> m_element;
H A DCustomElementRegistrationContext.cpp38 #include "core/dom/Element.h"
71 PassRefPtrWillBeRawPtr<Element> CustomElementRegistrationContext::createCustomTagElement(Document& document, const QualifiedName& tagName)
75 RefPtrWillBeRawPtr<Element> element;
83 return Element::create(tagName, &document);
86 element->setCustomElementState(Element::WaitingForUpgrade);
91 void CustomElementRegistrationContext::didGiveTypeExtension(Element* element, const AtomicString& type)
96 void CustomElementRegistrationContext::resolveOrScheduleResolution(Element* element, const AtomicString& typeExtension)
106 ASSERT(element->customElementState() == Element::WaitingForUpgrade);
111 void CustomElementRegistrationContext::resolve(Element* element, const CustomElementDescriptor& descriptor)
117 ASSERT(element->customElementState() == Element
[all...]
/external/chromium_org/v8/tools/testrunner/local/
H A Djunit_output.py34 self.root = xml.Element("testsuite")
38 testCaseElement = xml.Element("testcase")
42 failureElement = xml.Element("failure")
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_node_data.h46 // Element represents a single node.
47 struct Element { struct in struct:bookmarks::BookmarkNodeData
48 Element();
49 explicit Element(const BookmarkNode* node);
50 ~Element();
68 std::vector<Element> children;
78 // For reading/writing this Element.
169 std::vector<Element> elements;
H A Dbookmark_pasteboard_helper_mac.h24 const std::vector<bookmarks::BookmarkNodeData::Element>& elements,
30 std::vector<bookmarks::BookmarkNodeData::Element>& elements,
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8CustomElementLifecycleCallbacks.h45 class Element;
60 virtual void created(Element*) OVERRIDE;
61 virtual void attached(Element*) OVERRIDE;
62 virtual void detached(Element*) OVERRIDE;
63 virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) OVERRIDE;
65 void call(const ScopedPersistent<v8::Function>& weakCallback, Element*);
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DElement.java18 An Element has an element type, attributes, and a successor Element
23 public class Element { class
28 private Element theNext; // successor of element
32 Return an Element from a specified ElementType.
37 public Element(ElementType type, boolean defaultAttributes) { method in class:Element
65 public Element next() { return theNext; }
72 public void setNext(Element next) { theNext = next; }
137 public boolean canContain(Element other) {
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DElementAnimation.h40 #include "core/dom/Element.h"
50 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Dictionary& timingInputDictionary)
55 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, double duration)
60 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect)
65 static AnimationPlayer* animate(Element& element, const Vector<Dictionary>& keyframeDictionaryVector, const Dictionary& timingInputDictionary, ExceptionState& exceptionState)
74 static AnimationPlayer* animate(Element& element, const Vector<Dictionary>& keyframeDictionaryVector, double duration, ExceptionState& exceptionState)
83 static AnimationPlayer* animate(Element& element, const Vector<Dictionary>& keyframeDictionaryVector, ExceptionState& exceptionState)
92 static WillBeHeapVector<RefPtrWillBeMember<AnimationPlayer> > getAnimationPlayers(Element& element)
110 static AnimationPlayer* animateInternal(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Timing& timing)

Completed in 896 milliseconds

1234567891011>>