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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/animation/
Animation.h 44 class Element;
52 static PassRefPtrWillBeRawPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, Priority = DefaultPriority, PassOwnPtr<EventDelegate> = nullptr);
54 static PassRefPtrWillBeRawPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Dictionary& timingInputDictionary);
55 static PassRefPtrWillBeRawPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, double duration);
56 static PassRefPtrWillBeRawPtr<Animation> create(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>);
57 static PassRefPtrWillBeRawPtr<Animation> create(Element*, const Vector<Dictionary>& keyframeDictionaryVector, const Dictionary& timingInputDictionary, ExceptionState&);
58 static PassRefPtrWillBeRawPtr<Animation> create(Element*, const Vector<Dictionary>& keyframeDictionaryVector, double duration, ExceptionState&);
59 static PassRefPtrWillBeRawPtr<Animation> create(Element*, const Vector<Dictionary>& keyframeDictionaryVector, ExceptionState&);
69 Element* target() { return m_target; }
96 Animation(Element*, PassRefPtrWillBeRawPtr<AnimationEffect>, const Timing&, Priority, PassOwnPtr<EventDelegate>)
    [all...]
ElementAnimation.idl 31 // http://www.w3.org/TR/web-animations/#idl-def-Element
35 partial interface Element {
CompositorAnimations.h 41 class Element;
61 virtual bool canStartAnimationOnCompositor(const Element&);
63 virtual bool startAnimationOnCompositor(const Element&, double startTime, const Timing&, const AnimationEffect&, Vector<int>& startedAnimationIds);
64 virtual void cancelAnimationOnCompositor(const Element&, int id);
65 virtual void pauseAnimationForTestingOnCompositor(const Element&, int id, double pauseTime);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TypeTest.java 19 import android.renderscript.Element;
33 void testTypeBuilderHelper(Element e) {
49 testTypeBuilderHelper(Element.A_8(mRS));
50 testTypeBuilderHelper(Element.RGB_565(mRS));
51 testTypeBuilderHelper(Element.RGB_888(mRS));
52 testTypeBuilderHelper(Element.RGBA_8888(mRS));
53 testTypeBuilderHelper(Element.F32(mRS));
54 testTypeBuilderHelper(Element.F32_2(mRS));
55 testTypeBuilderHelper(Element.F32_3(mRS));
56 testTypeBuilderHelper(Element.F32_4(mRS))
    [all...]
IntrinsicConvolve3x3.java 23 private void testConvolve3(int w, int h, Element.DataType dt, int vecSize, Script.LaunchOptions sc) {
27 Element e = makeElement(dt, vecSize);
48 if (dt == Element.DataType.UNSIGNED_8) {
86 if (dt == Element.DataType.UNSIGNED_8) {
124 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 4, null);
128 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 3, null);
132 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 2, null);
136 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 1, null);
141 testConvolve3(100, 100, Element.DataType.FLOAT_32, 4, null);
146 testConvolve3(100, 100, Element.DataType.FLOAT_32, 3, null)
    [all...]
IntrinsicConvolve5x5.java 24 Element e, float cf[], String name, int num, int w, int h,
39 if (e.getDataType() == Element.DataType.UNSIGNED_8) {
76 private void testConvolve5(int w, int h, Element.DataType dt, int vecSize, Script.LaunchOptions sc) {
88 Element e = makeElement(dt, vecSize);
98 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 4, null);
102 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 3, null);
106 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 2, null);
110 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 1, null);
115 testConvolve5(100, 100, Element.DataType.FLOAT_32, 4, null);
119 testConvolve5(100, 100, Element.DataType.FLOAT_32, 3, null)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HTML4.java 37 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
47 public HTML.Element lookupElement(String name) {
64 /** Looks for a HTML4 element */
65 public static HTML.Element lookupElement(String name) {
76 * element name.
78 public static Map<String, HTML.Element> getAllElements() {
90 /** Creates and adds a element to the map */
91 private static HTML.Element addElement(String tag, String flags) {
92 return addElement(tag, flags, HTML.Element.Flow.NONE);
95 /** Creates and adds a element to the map *
121 HTML.Element element = new HTML.Element(tag, type, empty, optionalEndTag, breaksFlow, flow); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HTML4.java 38 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
48 public HTML.Element lookupElement(String name) {
65 /** Looks for a HTML4 element */
66 public static HTML.Element lookupElement(String name) {
77 * element name.
79 public static Map<String, HTML.Element> getAllElements() {
91 /** Creates and adds a element to the map */
92 private static HTML.Element addElement(String tag, String flags) {
93 return addElement(tag, flags, HTML.Element.Flow.NONE);
96 /** Creates and adds a element to the map *
122 HTML.Element element = new HTML.Element(tag, type, empty, optionalEndTag, breaksFlow, flow); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
StyleInvalidator.h 14 class Element;
22 void scheduleInvalidation(PassRefPtrWillBeRawPtr<DescendantInvalidationSet>, Element&);
32 bool invalidate(Element&);
33 bool invalidateChildren(Element&);
35 bool checkInvalidationSetsAgainstElement(Element&);
45 bool matchesCurrentInvalidationSets(Element&);
86 typedef WillBeHeapHashMap<RawPtrWillBeMember<Element>, OwnPtrWillBeMember<InvalidationList> > PendingInvalidationMap;
88 InvalidationList& ensurePendingInvalidationList(Element&);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ChildNode.h 15 static Element* previousElementSibling(Node& node)
20 static Element* nextElementSibling(Node& node)
DocumentFragment.idl 25 Element getElementById(DOMString elementId);
DatasetDOMStringMap.h 34 class Element;
39 static PassOwnPtrWillBeRawPtr<DatasetDOMStringMap> create(Element* element)
41 return adoptPtrWillBeNoop(new DatasetDOMStringMap(element));
55 virtual Element* element() OVERRIDE { return m_element; }
60 explicit DatasetDOMStringMap(Element* element)
61 : m_element(element)
65 RawPtrWillBeMember<Element> m_element
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLImageLoader.h 32 static PassOwnPtrWillBeRawPtr<HTMLImageLoader> create(Element* element)
34 return adoptPtrWillBeNoop(new HTMLImageLoader(element));
44 explicit HTMLImageLoader(Element*);
ClassList.h 30 #include "core/dom/Element.h"
37 class Element;
43 static PassOwnPtrWillBeRawPtr<ClassList> create(Element* element)
45 return adoptPtrWillBeNoop(new ClassList(element));
56 virtual Element* element() OVERRIDE { return m_element; }
63 explicit ClassList(Element*);
72 RawPtrWillBeMember<Element> m_element;
HTMLCollection.h 51 Element* item(unsigned offset) const { return m_collectionIndexCache.nodeAt(*this, offset); }
52 virtual Element* namedItem(const AtomicString& name) const;
57 void namedItems(const AtomicString& name, WillBeHeapVector<RefPtrWillBeMember<Element> >&) const;
63 Element* traverseToFirstElement() const;
64 Element* traverseToLastElement() const;
65 Element* traverseForwardToOffset(unsigned offset, Element& currentElement, unsigned& currentOffset) const;
66 Element* traverseBackwardToOffset(unsigned offset, Element& currentElement, unsigned& currentOffset) const;
80 WillBeHeapVector<RawPtrWillBeMember<Element> >* getElementsById(const AtomicString& id) const { return m_idCache.get(id.impl());
    [all...]
HTMLFormControlsCollection.h 46 virtual Element* namedItem(const AtomicString& name) const OVERRIDE;
47 void namedGetter(const AtomicString& name, bool& radioNodeListEnabled, RefPtrWillBeRawPtr<RadioNodeList>&, bool& elementEnabled, RefPtrWillBeRawPtr<Element>&);
59 virtual Element* virtualItemAfter(Element*) const OVERRIDE;
62 mutable RawPtrWillBeMember<Element> m_cachedElement;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderSearchField.h 43 Element* searchDecorationElement() const;
44 Element* cancelButtonElement() const;
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSParserFilter.java 15 import org.w3c.dom.Element;
25 * The document element is never passed to the <code>LSParserFilter</code>
26 * methods, i.e. it is not possible to filter out the document element.
69 * The parser will call this method after each <code>Element</code> start
71 * <code>Element</code> is processed. The intent is to allow the
72 * element, including any children, to be efficiently skipped. Note that
73 * only element nodes are passed to the <code>startElement</code>
75 * <br>The element node passed to <code>startElement</code> for filtering
76 * will include all of the Element's attributes, but none of the
77 * children nodes. The Element may not yet be in place in the documen
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElement.cpp 38 #include "core/dom/Element.h"
89 void CustomElement::define(Element* element, PassRefPtr<CustomElementDefinition> passDefinition)
93 switch (element->customElementState()) {
94 case Element::NotCustomElement:
95 case Element::Upgraded:
99 case Element::WaitingForUpgrade:
100 element->setCustomElementDefinition(definition);
101 CustomElementScheduler::scheduleCallback(definition->callbacks(), element, CustomElementLifecycleCallbacks::Created);
106 void CustomElement::attributeDidChange(Element* element, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue
    [all...]
CustomElementObserver.cpp 34 #include "core/dom/Element.h"
39 // element at a time.
40 typedef WillBeHeapHashMap<RawPtrWillBeWeakMember<Element>, RawPtrWillBeMember<CustomElementObserver> > ElementObserverMap;
48 void CustomElementObserver::notifyElementDidFinishParsingChildren(Element* element)
50 ElementObserverMap::iterator it = elementObservers().find(element);
53 it->value->elementDidFinishParsingChildren(element);
56 void CustomElementObserver::notifyElementWasDestroyed(Element* element)
58 ElementObserverMap::iterator it = elementObservers().find(element);
    [all...]
  /frameworks/base/sax/java/android/sax/
Element.java 25 * An XML element. Provides access to child elements and hooks to listen
26 * for events related to this element.
30 public class Element {
35 final Element parent;
38 ArrayList<Element> requiredChilden;
46 Element(Element parent, String uri, String localName, int depth) {
54 * Gets the child element with the given name. Uses an empty string as the
57 public Element getChild(String localName) {
62 * Gets the child element with the given name
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorFilter.h 32 #include "core/dom/Element.h"
42 void pushParentStackFrame(Element& parent);
45 void setupParentStack(Element& parent);
46 void pushParent(Element& parent);
49 bool parentStackIsConsistent(const ContainerNode* parentNode) const { return !m_parentStack.isEmpty() && m_parentStack.last().element == parentNode; }
57 ParentStackFrame() : element(0) { }
58 ParentStackFrame(Element& element) : element(&element) { }
59 Element* element; member in struct:WebCore::SelectorFilter::ParentStackFrame
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InsertParagraphSeparatorCommand.h 51 void getAncestorsInsideBlock(const Node* insertionNode, Element* outerBlock, WillBeHeapVector<RefPtrWillBeMember<Element> >& ancestors);
52 PassRefPtrWillBeRawPtr<Element> cloneHierarchyUnderNewBlock(const WillBeHeapVector<RefPtrWillBeMember<Element> >& ancestors, PassRefPtrWillBeRawPtr<Element> blockToInsert);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
PointerTrackerQueueTests.java 24 public static class Element implements PointerTrackerQueue.Element {
33 public Element(int id) {
62 private final Element mElement1 = new Element(1);
63 private final Element mElement2 = new Element(2);
64 private final Element mElement3 = new Element(3);
65 private final Element mElement4 = new Element(4)
    [all...]
  /frameworks/rs/cpp/
rsCppStructs.h 42 class Element;
59 RS_ERROR_INVALID_ELEMENT = 3, ///< An invalid Element was passed to a function
174 sp<const Element> U8;
175 sp<const Element> U8_2;
176 sp<const Element> U8_3;
177 sp<const Element> U8_4;
178 sp<const Element> I8;
179 sp<const Element> I8_2;
180 sp<const Element> I8_3;
181 sp<const Element> I8_4
    [all...]

Completed in 528 milliseconds

1 23 4 5 6 7 8 91011>>