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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementObserver.h 39 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); }
CustomElementProcessingStep.h 38 class Element;
46 virtual void dispatch(Element*) = 0;
CustomElementUpgradeCandidateMap.h 43 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;
CustomElementLifecycleCallbacks.h 39 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;
CustomElement.h 46 class Element;
63 static void define(Element*, PassRefPtr<CustomElementDefinition>);
65 // API for Element to kick off changes
67 static void attributeDidChange(Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
68 static void didEnterDocument(Element*, const Document&);
69 static void didLeaveDocument(Element*, const Document&);
70 static void wasDestroyed(Element*);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PresentationAttributeStyle.h 38 class Element;
41 PassRefPtr<StylePropertySet> computePresentationAttributeStyle(Element&);
ChildNode.idl 29 [PerWorldBindings] readonly attribute Element previousElementSibling;
30 [PerWorldBindings] readonly attribute Element nextElementSibling;
StyleElement.h 31 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* ownerElement = 0)
    [all...]
DocumentOrderedMap.h 40 class Element;
45 void add(StringImpl*, Element*);
46 void remove(StringImpl*, Element*);
51 Element* getElementById(StringImpl*, const TreeScope*) const;
52 const Vector<Element*>& getAllElementsById(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;
58 template<bool keyMatches(StringImpl*, Element&)> Element* get(StringImpl*, const TreeScope*) const
66 Element* element; member in struct:WebCore::DocumentOrderedMap::MapEntry
    [all...]
NamedNodesCollection.h 34 #include "core/dom/Element.h"
44 static PassRefPtrWillBeRawPtr<NodeList> create(const WillBeHeapVector<RefPtrWillBeMember<Element> >& nodes)
50 virtual Element* item(unsigned) const OVERRIDE;
55 explicit NamedNodesCollection(const WillBeHeapVector<RefPtrWillBeMember<Element> > nodes)
58 WillBeHeapVector<RefPtrWillBeMember<Element> > m_nodes;
DocumentFullscreen.h 32 class Element;
38 static Element* webkitCurrentFullScreenElement(Document&);
42 static Element* webkitFullscreenElement(Document&);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ElementTest.java 19 import android.renderscript.Element;
20 import android.renderscript.Element.DataType;
21 import android.renderscript.Element.DataKind;
27 assertTrue(Element.createPixel(mRS,
30 assertTrue(Element.createPixel(mRS,
33 assertTrue(Element.createPixel(mRS,
36 assertTrue(Element.createPixel(mRS,
39 assertTrue(Element.createPixel(mRS,
42 assertTrue(Element.createPixel(mRS,
49 Element e = null
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MergeIdenticalElementsCommand.h 35 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;
  /packages/apps/Mms/src/org/w3c/dom/smil/
SMILSwitchElement.java 15 import org.w3c.dom.Element;
18 * Defines a block of content control. See the switch element definition .
22 * Returns the slected element at runtime. <code>null</code> if the
23 * selected element is not yet available.
24 * @return The selected <code>Element</code> for thisd <code>switch</code>
25 * element.
27 public Element getSelectedElement();
SMILElement.java 16 import org.w3c.dom.Element;
19 * The <code>SMILElement</code> interface is the base for all SMIL element
21 * DOM, extending the base <code>Element</code> class to denote SMIL-specific
29 public interface SMILElement extends Element {
  /external/chromium_org/third_party/WebKit/Source/core/page/
ValidationMessageClient.h 35 class Element;
41 // Show validation message for the specified anchor element. An
44 virtual void showValidationMessage(const Element& anchor, const String& message) = 0;
48 virtual void hideValidationMessage(const Element& anchor) = 0;
50 // Returns true if the validation message for the specified anchor element
52 virtual bool isValidationMessageVisible(const Element& anchor) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
Animation.idl 35 Constructor(Element? target, sequence<Dictionary> keyframes),
36 Constructor(Element? target, sequence<Dictionary> keyframes, double timingInput),
37 Constructor(Element? target, sequence<Dictionary> keyframes, Dictionary timingInput),
EffectInput.h 15 class Element;
20 static PassRefPtrWillBeRawPtr<AnimationEffect> convert(Element*, const Vector<Dictionary>& keyframeDictionaryVector, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/web/
WebElement.cpp 35 #include "core/dom/Element.h"
52 return constUnwrap<Element>()->isFormControlElement();
57 return constUnwrap<Element>()->isTextFormControl();
62 return constUnwrap<Element>()->tagName();
67 return equalIgnoringCase(constUnwrap<Element>()->tagName(),
78 const Element* element = constUnwrap<Element>(); local
79 return HTMLNames::xhtmlNamespaceURI == element->namespaceURI() && element->localName() == String(tagName).lower()
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ElementThunker.java 23 class ElementThunker extends Element {
24 android.renderscript.Element mN;
26 android.renderscript.Element getNObj() {
46 static android.renderscript.Element.DataKind convertKind(DataKind cdk) {
49 return android.renderscript.Element.DataKind.USER;
51 return android.renderscript.Element.DataKind.PIXEL_L;
53 return android.renderscript.Element.DataKind.PIXEL_A;
55 return android.renderscript.Element.DataKind.PIXEL_LA;
57 return android.renderscript.Element.DataKind.PIXEL_RGB;
59 return android.renderscript.Element.DataKind.PIXEL_RGBA
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
WhitespaceStrippingElementMatcher.java 25 import org.w3c.dom.Element;
28 * A class that implements this interface can tell if a given element should
34 * Get information about whether or not an element should strip whitespace.
38 * @param targetElement Element to check
45 XPathContext support, Element targetElement) throws TransformerException;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.h 26 #include "core/dom/Element.h"
30 class Element;
57 Element* findElementForStyleSharing() const;
64 bool canShareStyleWithElement(Element& candidate) const;
65 bool canShareStyleWithControl(Element& candidate) const;
66 bool sharingCandidateHasIdenticalStyleAffectingAttributes(Element& candidate) const;
67 bool sharingCandidateCanShareHostStyles(Element& candidate) const;
68 bool sharingCandidateDistributedToSameInsertionPoint(Element& candidate) const;
71 Element& element() const { return *m_context.element(); function in class:WebCore::SharedStyleFinder
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginOcclusionSupport.h 26 class Element;
30 void getPluginOcclusions(Element*, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMediaControlElements.h 39 RenderTextTrackContainerElement(Element*);
  /frameworks/rs/driver/
rsdElement.cpp 25 bool rsdElementInit(const Context *, const Element *e) {
29 void rsdElementDestroy(const Context *rsc, const Element *e) {
33 const Element *element,
36 obj->p = element;

Completed in 1087 milliseconds

1 2 3 4 5 6 7 8 91011>>