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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementObserver.h38 class Element;
47 static void notifyElementDidFinishParsingChildren(Element*);
48 static void notifyElementWasDestroyed(Element*);
51 void observe(Element*);
52 void unobserve(Element*);
54 virtual void elementDidFinishParsingChildren(Element*) = 0;
55 virtual void elementWasDestroyed(Element* element) { unobserve(element); }
60 typedef HashMap<Element*, CustomElementObserver*> ElementObserverMap;
H A DCustomElementUpgradeCandidateMap.h43 class Element;
53 typedef ListHashSet<Element*> ElementSet;
55 void add(const CustomElementDescriptor&, Element*);
56 void remove(Element*);
60 virtual void elementWasDestroyed(Element*) OVERRIDE;
61 void removeCommon(Element*);
63 virtual void elementDidFinishParsingChildren(Element*) OVERRIDE;
64 void moveToEnd(Element*);
66 typedef HashMap<Element*, CustomElementDescriptor> UpgradeCandidateMap;
H A DCustomElementCallbackScheduler.h43 class Element;
47 static void scheduleAttributeChangedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
48 static void scheduleCreatedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
49 static void scheduleAttachedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
50 static void scheduleDetachedCallback(PassRefPtr<CustomElementLifecycleCallbacks>, PassRefPtr<Element>);
61 CustomElementCallbackQueue* ensureCallbackQueue(PassRefPtr<Element>);
62 CustomElementCallbackQueue* schedule(PassRefPtr<Element>);
63 CustomElementCallbackQueue* scheduleInCurrentElementQueue(PassRefPtr<Element>);
65 typedef HashMap<Element*, OwnPtr<CustomElementCallbackQueue> > ElementCallbackQueueMap;
H A DCustomElementRegistrationContext.h47 class Element;
59 PassRefPtr<Element> createCustomTagElement(Document&, const QualifiedName&);
60 static void setIsAttributeAndTypeExtension(Element*, const AtomicString& type);
61 static void setTypeExtension(Element*, const AtomicString& type);
67 void didGiveTypeExtension(Element*, const AtomicString& type);
70 void resolve(Element*, const AtomicString& typeExtension);
71 void didResolveElement(CustomElementDefinition*, Element*);
72 void didCreateUnresolvedElement(const CustomElementDescriptor&, Element*);
76 // Element creation
H A DCustomElement.h45 class Element;
58 static void define(Element*, PassRefPtr<CustomElementDefinition>);
61 static CustomElementDefinition* definitionFor(Element*);
63 // API for Element to kick off changes
65 static void didFinishParsingChildren(Element*);
66 static void attributeDidChange(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
67 static void didEnterDocument(Element*, const Document&);
68 static void didLeaveDocument(Element*, const Document&);
69 static void wasDestroyed(Element*);
84 void add(Element*, PassRefPt
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPresentationAttributeStyle.h38 class Element;
41 PassRefPtr<StylePropertySet> computePresentationAttributeStyle(Element&);
H A DChildNode.idl27 [PerWorldBindings] readonly attribute Element previousElementSibling;
28 [PerWorldBindings] readonly attribute Element nextElementSibling;
H A DDocumentOrderedMap.h40 class Element;
45 void add(StringImpl*, Element*);
46 void remove(StringImpl*, Element*);
52 Element* getElementById(StringImpl*, const TreeScope*) const;
53 Element* getElementByMapName(StringImpl*, const TreeScope*) const;
54 Element* getElementByLowercasedMapName(StringImpl*, const TreeScope*) const;
55 Element* getElementByLabelForAttribute(StringImpl*, const TreeScope*) const;
60 template<bool keyMatches(StringImpl*, Element*)> Element* get(StringImpl*, const TreeScope*) const;
62 typedef HashMap<StringImpl*, Element*> Ma
[all...]
H A DElementTraversal.h28 #include "core/dom/Element.h"
36 Element* firstWithin(const Node&);
37 Element* firstWithin(const ContainerNode&);
40 Element* next(const Node&);
41 Element* next(const Node&, const Node* stayWithin);
42 Element* next(const ContainerNode&);
43 Element* next(const ContainerNode&, const Node* stayWithin);
46 Element* nextSkippingChildren(const Node&);
47 Element* nextSkippingChildren(const Node&, const Node* stayWithin);
48 Element* nextSkippingChildre
[all...]
H A DStyleElement.h31 class Element;
48 void processStyleSheet(Document&, Element*);
49 void removedFromDocument(Document&, Element*, ContainerNode* scopingNode = 0);
50 void clearDocumentData(Document&, Element*);
51 void childrenChanged(Element*);
52 void finishParsingChildren(Element*);
57 void createSheet(Element*, const String& text = String());
58 void process(Element*);
H A DFullscreenElementStack.h32 #include "core/dom/Element.h"
43 class Element;
57 static Element* fullscreenElementFrom(Document*);
58 static Element* currentFullScreenElementFrom(Document*);
60 static bool isActiveFullScreenElement(const Element*);
67 void requestFullScreenForElement(Element*, unsigned short flags, FullScreenCheckType);
70 void webkitWillEnterFullScreenForElement(Element*);
71 void webkitDidEnterFullScreenForElement(Element*);
72 void webkitWillExitFullScreenForElement(Element*);
73 void webkitDidExitFullScreenForElement(Element*);
[all...]
H A DDocumentFullscreen.h32 class Element;
38 static Element* webkitCurrentFullScreenElement(Document*);
42 static Element* webkitFullscreenElement(Document*);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DValidationMessageClient.h34 class Element;
43 virtual void showValidationMessage(const Element& anchor, const String& message) = 0;
47 virtual void hideValidationMessage(const Element& anchor) = 0;
51 virtual bool isValidationMessageVisible(const Element& anchor) = 0;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTSpan.cpp29 RenderSVGTSpan::RenderSVGTSpan(Element* element)
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMergeIdenticalElementsCommand.h35 static PassRefPtr<MergeIdenticalElementsCommand> create(PassRefPtr<Element> element1, PassRefPtr<Element> element2)
41 MergeIdenticalElementsCommand(PassRefPtr<Element>, PassRefPtr<Element>);
46 RefPtr<Element> m_element1;
47 RefPtr<Element> m_element2;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebElement.cpp35 #include "core/dom/Element.h"
51 return constUnwrap<Element>()->isFormControlElement();
56 return constUnwrap<Element>()->isTextFormControl();
61 return constUnwrap<Element>()->tagName();
66 return equalIgnoringCase(constUnwrap<Element>()->tagName(),
77 const Element* element = constUnwrap<Element>();
83 return constUnwrap<Element>()->hasAttribute(attrName);
91 unwrap<Element>()->removeAttribute(attrName);
96 return constUnwrap<Element>()
[all...]
H A DDOMUtilitiesPrivate.h35 class Element;
49 bool elementHasLegalLinkAttribute(const WebCore::Element* element,
/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/animation/
H A DElementAnimation.idl31 partial interface Element {
H A DElementAnimation.h39 class Element;
44 static void animate(Element*, Vector<Dictionary> keyframesDictionaryVector, double duration = 0);
47 static void startAnimation(Element*, Vector<Dictionary> keyframesDictionaryVector, double duration = 0);
/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/chrome/browser/resources/ntp4/tools/
H A Dexterns.js8 // JSCompiler doesn't know about this new Element property
9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
0 Element.prototype.classList = {}; class
/external/chromium/chrome/browser/resources/touch_ntp/tools/
H A Dexterns.js8 // JSCompiler doesn't know about this new Element property
9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
0 Element.prototype.classList = {}; class
/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...]

Completed in 572 milliseconds

1234567891011>>