Searched refs:Element (Results 1 - 25 of 916) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementObserver.h39 class Element;
47 static void notifyElementDidFinishParsingChildren(Element*);
48 static void notifyElementWasDestroyed(Element*);
55 void observe(Element*);
56 void unobserve(Element*);
58 virtual void elementDidFinishParsingChildren(Element*) = 0;
59 virtual void elementWasDestroyed(Element* element) { unobserve(element); }
H A DCustomElementProcessingStep.h38 class Element;
46 virtual void dispatch(Element*) = 0;
H A DCustomElementLifecycleCallbacks.h39 class Element;
55 virtual void created(Element*) = 0;
56 virtual void attached(Element*) = 0;
57 virtual void detached(Element*) = 0;
58 virtual void attributeChanged(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue) = 0;
H A DCustomElementRegistrationContext.h48 class Element;
63 PassRefPtrWillBeRawPtr<Element> createCustomTagElement(Document&, const QualifiedName&);
64 static void setIsAttributeAndTypeExtension(Element*, const AtomicString& type);
65 static void setTypeExtension(Element*, const AtomicString& type);
67 void resolve(Element*, const CustomElementDescriptor&);
75 void didGiveTypeExtension(Element*, const AtomicString& type);
78 void resolveOrScheduleResolution(Element*, const AtomicString& typeExtension);
82 // Element creation
H A DCustomElementUpgradeCandidateMap.h43 class Element;
53 typedef WillBeHeapLinkedHashSet<RawPtrWillBeWeakMember<Element> > ElementSet;
55 void add(const CustomElementDescriptor&, Element*);
63 virtual void elementWasDestroyed(Element*) OVERRIDE;
65 virtual void elementDidFinishParsingChildren(Element*) OVERRIDE;
66 void moveToEnd(Element*);
68 typedef WillBeHeapHashMap<RawPtrWillBeWeakMember<Element>, CustomElementDescriptor> UpgradeCandidateMap;
H A DCustomElement.h46 class Element;
64 static void define(Element*, PassRefPtr<CustomElementDefinition>);
66 // API for Element to kick off changes
68 static void attributeDidChange(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
69 static void didAttach(Element*, const Document&);
70 static void didDetach(Element*, const Document&);
71 static void wasDestroyed(Element*);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPresentationAttributeStyle.h39 class Element;
42 PassRefPtrWillBeRawPtr<StylePropertySet> computePresentationAttributeStyle(Element&);
H A DChildNode.idl29 [PerWorldBindings] readonly attribute Element previousElementSibling;
30 [PerWorldBindings] readonly attribute Element nextElementSibling;
H A DElementFullscreen.h12 class Element;
16 static void requestFullscreen(Element&);
20 static void webkitRequestFullScreen(Element&, unsigned short flags);
23 static void webkitRequestFullscreen(Element&);
H A DStyleElement.h31 class Element;
50 void processStyleSheet(Document&, Element*);
51 void removedFromDocument(Document&, Element*);
52 void removedFromDocument(Document&, Element*, ContainerNode* scopingNode, TreeScope&);
53 void clearDocumentData(Document&, Element*);
54 void childrenChanged(Element*);
55 void finishParsingChildren(Element*);
60 void createSheet(Element*, const String& text = String());
61 void process(Element*);
62 void clearSheet(Element* ownerElemen
[all...]
H A DDocumentOrderedMap.h43 class Element;
49 void add(const AtomicString&, Element*);
50 void remove(const AtomicString&, Element*);
55 Element* getElementById(const AtomicString&, const TreeScope*) const;
56 const WillBeHeapVector<RawPtrWillBeMember<Element> >& getAllElementsById(const AtomicString&, const TreeScope*) const;
57 Element* getElementByMapName(const AtomicString&, const TreeScope*) const;
58 Element* getElementByLowercasedMapName(const AtomicString&, const TreeScope*) const;
59 Element* getElementByLabelForAttribute(const AtomicString&, const TreeScope*) const;
64 template<bool keyMatches(const AtomicString&, const Element&)>
65 Element* ge
[all...]
H A DDocumentFullscreen.h34 class Element;
39 static Element* fullscreenElement(Document&);
47 static Element* webkitCurrentFullScreenElement(Document&);
H A DLiveNodeList.h36 class Element;
45 virtual Element* item(unsigned offset) const OVERRIDE FINAL;
46 virtual bool elementMatches(const Element&) const = 0;
53 Element* traverseToFirst() const;
54 Element* traverseToLast() const;
55 Element* traverseForwardToOffset(unsigned offset, Element& currentNode, unsigned& currentOffset) const;
56 Element* traverseBackwardToOffset(unsigned offset, Element& currentNode, unsigned& currentOffset) const;
63 mutable CollectionItemsCache<LiveNodeList, Element> m_collectionItemsCach
[all...]
H A DParentNode.idl36 [PerWorldBindings] readonly attribute Element firstElementChild;
37 [PerWorldBindings] readonly attribute Element lastElementChild;
41 [RaisesException] Element querySelector(DOMString selectors);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimation.idl35 Constructor(Element? target, sequence<Dictionary> keyframes),
36 Constructor(Element? target, sequence<Dictionary> keyframes, double timingInput),
37 Constructor(Element? target, sequence<Dictionary> keyframes, Dictionary timingInput),
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMergeIdenticalElementsCommand.h35 static PassRefPtrWillBeRawPtr<MergeIdenticalElementsCommand> create(PassRefPtrWillBeRawPtr<Element> element1, PassRefPtrWillBeRawPtr<Element> element2)
43 MergeIdenticalElementsCommand(PassRefPtrWillBeRawPtr<Element>, PassRefPtrWillBeRawPtr<Element>);
48 RefPtrWillBeMember<Element> m_element1;
49 RefPtrWillBeMember<Element> m_element2;
H A DInsertParagraphSeparatorCommand.h50 void applyStyleAfterInsertion(Element* originalEnclosingBlock);
51 void getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, WillBeHeapVector<RefPtrWillBeMember<Element> >& ancestors);
52 PassRefPtrWillBeRawPtr<Element> cloneHierarchyUnderNewBlock(const WillBeHeapVector<RefPtrWillBeMember<Element> >& ancestors, PassRefPtrWillBeRawPtr<Element> blockToInsert);
54 bool shouldUseDefaultParagraphElement(Element*) const;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebElement.cpp35 #include "core/dom/Element.h"
50 return constUnwrap<Element>()->isFormControlElement();
55 return constUnwrap<Element>()->isTextFormControl();
60 return constUnwrap<Element>()->tagName();
70 const Element* element = constUnwrap<Element>();
76 return constUnwrap<Element>()->hasAttribute(attrName);
84 unwrap<Element>()->removeAttribute(attrName);
89 return constUnwrap<Element>()->getAttribute(attrName);
98 unwrap<Element>()
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DWhitespaceStrippingElementMatcher.java25 import org.w3c.dom.Element;
38 * @param targetElement Element to check
45 XPathContext support, Element targetElement) throws TransformerException;
/external/chromium_org/third_party/WebKit/Source/core/plugins/
H A DPluginOcclusionSupport.h26 class Element;
30 void getPluginOcclusions(Element*, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DValidationMessageClient.h36 class Element;
45 virtual void showValidationMessage(const Element& anchor, const String& mainMessage, TextDirection, const String& subMessage, TextDirection) = 0;
49 virtual void hideValidationMessage(const Element& anchor) = 0;
53 virtual bool isValidationMessageVisible(const Element& anchor) = 0;
H A DPointerLockController.h34 class Element;
45 void requestPointerLock(Element* target);
47 void elementRemoved(Element*);
50 Element* element() const;
62 void enqueueEvent(const AtomicString& type, Element*);
67 RefPtrWillBeMember<Element> m_element;
/external/protobuf/src/google/protobuf/
H A Drepeated_field.h71 template <typename Element>
79 const Element& Get(int index) const;
80 Element* Mutable(int index);
81 void Set(int index, const Element& value);
82 void Add(const Element& value);
83 Element* Add();
101 void AddAlreadyReserved(const Element& value);
102 Element* AddAlreadyReserved();
107 Element* mutable_data();
108 const Element* dat
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Drepeated_field.h82 template <typename Element>
95 const Element& Get(int index) const;
96 Element* Mutable(int index);
97 void Set(int index, const Element& value);
98 void Add(const Element& value);
99 Element* Add();
107 void ExtractSubrange(int start, int num, Element* elements);
120 void AddAlreadyReserved(const Element& value);
121 Element* AddAlreadyReserved();
126 Element* mutable_dat
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAllCollection.idl35 [ImplementedAs=item] getter Element (unsigned long index);
36 [Custom] Element item([Default=Undefined] optional unsigned long index);
37 // FIXME: This should return an (HTMLCollection or Element) union.
38 [ImplementedAs=namedGetter] getter (NodeList or Element) namedItem(DOMString name);

Completed in 1074 milliseconds

1234567891011>>