HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 76 - 100 of 1680) sorted by null

1 2 34 5 6 7 8 91011>>

  /packages/apps/Mms/src/org/w3c/dom/smil/
Time.java 16 import org.w3c.dom.Element;
31 * all ascendent time containers of this element and all <code>Time</code>
75 * The base element for a sync-based or event-based time.
80 public Element getBaseElement();
81 public void setBaseElement(Element baseElement)
108 * The name of the marker from the media element, for media marker times.
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElement.cpp 40 #include "core/dom/Element.h"
90 void CustomElement::define(Element* element, PassRefPtr<CustomElementDefinition> passDefinition)
93 element->setCustomElementState(Element::Defined);
94 definitions().add(element, definition);
95 CustomElementCallbackScheduler::scheduleCreatedCallback(definition->callbacks(), element);
98 CustomElementDefinition* CustomElement::definitionFor(Element* element)
100 return definitions().get(element);
    [all...]
DocumentOrderedMap.cpp 35 #include "core/dom/Element.h"
46 inline bool keyMatchesId(StringImpl* key, Element* element)
48 return element->getIdAttribute().impl() == key;
51 inline bool keyMatchesName(StringImpl* key, Element* element)
53 return element->getNameAttribute().impl() == key;
56 inline bool keyMatchesMapName(StringImpl* key, Element* element)
58 return element->hasTagName(mapTag) && toHTMLMapElement(element)->getName().impl() == key
    [all...]
NodeTraversal.h 28 #include "core/dom/Element.h"
34 // First element child of the node.
35 Element* firstWithin(const Node*);
36 Element* firstWithin(const ContainerNode*);
38 // Pre-order traversal skipping non-element nodes.
39 Element* next(const Node*);
40 Element* next(const Node*, const Node* stayWithin);
41 Element* next(const ContainerNode*);
42 Element* next(const ContainerNode*, const Node* stayWithin);
45 Element* nextSkippingChildren(const Node*)
    [all...]
DocumentFullscreen.idl 25 [EnabledAtRuntime=fullscreen] readonly attribute Element webkitCurrentFullScreenElement;
30 [EnabledAtRuntime=fullscreen] readonly attribute Element webkitFullscreenElement;
CustomElementCallbackInvocation.h 42 class Element;
51 virtual void dispatch(Element*) = 0;
DocumentFragment.h 38 void parseHTML(const String&, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
39 bool parseXML(const String&, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
DocumentFragment.idl 25 [RaisesException] Element querySelector(DOMString selectors);
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicHistogram.java 40 * {@link Element#U8_4}, {@link Element#U8_3},
41 * {@link Element#U8_2}, {@link Element#U8}
44 * @param e Element type for inputs
48 public static ScriptIntrinsicHistogram create(RenderScript rs, Element e) {
49 if ((!e.isCompatible(Element.U8_4(rs))) &&
50 (!e.isCompatible(Element.U8_3(rs))) &&
51 (!e.isCompatible(Element.U8_2(rs))) &&
52 (!e.isCompatible(Element.U8(rs))))
    [all...]
ScriptIntrinsic3DLUT.java 31 private Element mElement;
33 private ScriptIntrinsic3DLUT(int id, RenderScript rs, Element e) {
39 * Supported elements types are {@link Element#U8_4}
44 * @param e Element type for intputs and outputs
48 public static ScriptIntrinsic3DLUT create(RenderScript rs, Element e) {
51 if (!e.isCompatible(Element.U8_4(rs))) {
52 throw new RSIllegalArgumentException("Element must be compatible with uchar4.");
61 * The lookup table must use the same {@link android.renderscript.Element} as the intrinsic.
73 throw new RSIllegalArgumentException("LUT element type must match.");
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLScriptRunnerHost.h 34 class Element;
  /external/chromium_org/third_party/WebKit/Source/web/
ValidationMessageClientImpl.h 53 virtual void showValidationMessage(const WebCore::Element& anchor, const String& message) OVERRIDE;
54 virtual void hideValidationMessage(const WebCore::Element& anchor) OVERRIDE;
55 virtual bool isValidationMessageVisible(const WebCore::Element& anchor) OVERRIDE;
60 const WebCore::Element* m_currentAnchor;
  /external/chromium_org/webkit/common/
resource_request_body.cc 15 elements_.push_back(Element());
24 elements_.push_back(Element());
30 elements_.push_back(Element());
37 elements_.push_back(Element());
  /frameworks/rs/
rsElement.h 36 // An element is a group of Components that occupies one cell in a structure.
37 class Element : public ObjectBase {
49 const Element **fields;
85 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();}
99 static Element *createFromStream(Context *rsc, IStream *stream);
101 static ObjectBaseRef<const Element> createRef(Context *rsc,
106 static ObjectBaseRef<const Element> createRef(Context *rsc, size_t count,
107 const Element **,
112 static const Element* create(Context *rsc,
117 ObjectBaseRef<const Element> elem = createRef(rsc, dt, dk, isNorm, vecSize)
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
Attr.java 17 * <code>Element</code> object. Typically the allowable values for the
20 * since they are not actually child nodes of the element they describe, the
31 * <code>Element</code> nodes contained within a
41 * attribute does not exist on this element in the structure model until it
180 * <code>Element</code> interface.
184 * also the method <code>Element.setAttribute()</code>.
195 * <code>Element</code> interface.
199 * also the method <code>Element.setAttribute()</code>.
211 * The <code>Element</code> node this attribute is attached to or
215 public Element getOwnerElement()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlWhitelist.java 26 * Looks up the HTML.Element object associated with the given element tag
29 * @param name The tag name of the element to lookup
30 * @return The HTML.Element object associated with the given element tag name,
33 HTML.Element lookupElement(String name);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlWhitelist.java 27 * Looks up the HTML.Element object associated with the given element tag
30 * @param name The tag name of the element to lookup
31 * @return The HTML.Element object associated with the given element tag name,
34 HTML.Element lookupElement(String name);
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.h 37 class Element;
59 SelectorCheckingContext(const CSSSelector* selector, Element* element, VisitedMatchType visitedMatchType)
61 , element(element)
75 Element* element; member in struct:WebCore::SelectorChecker::SelectorCheckingContext
92 Match matchForShadowDistributed(const Element*, const SiblingTraversalStrategy&, PseudoId&, SelectorCheckingContext& nextContext) const;
101 static bool tagMatches(const Element*, const QualifiedName&);
103 static bool matchesFocusPseudoClass(const Element*);
    [all...]
  /frameworks/rs/cpp/
Element.cpp 26 android::RSC::sp<const Element> Element::getSubElement(uint32_t index) {
28 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Element contains no sub-elements");
32 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Illegal sub-element index");
38 const char * Element::getSubElementName(uint32_t index) {
40 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Element contains no sub-elements");
44 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Illegal sub-element index");
50 size_t Element::getSubElementArraySize(uint32_t index) {
52 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Element contains no sub-elements");
56 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Illegal sub-element index")
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 24 import org.w3c.dom.Element;
61 Element root = document.getDocumentElement();
71 Element one = (Element) list.item(0);
72 Element two = (Element) list.item(1);
73 Element three = (Element) list.item(2);
74 Element four = (Element) list.item(3)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_drag_source.h 15 std::vector<BookmarkNodeData::Element> dropData_;
25 (const std::vector<BookmarkNodeData::Element>&)dropData
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_pasteboard_helper_mac.h 29 const std::vector<BookmarkNodeData::Element>& elements,
34 std::vector<BookmarkNodeData::Element>& elements,
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationStack.h 40 class Element;
54 // FIXME: This should be PassRefPtr<CompositableValue> composite(Element*, CSSPropertyId)
55 const Vector<Animation*>& activeAnimations(const Element* element) const { return m_activeAnimations; }
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlsCollection.h 55 virtual Element* virtualItemAfter(unsigned& offsetInArray, Element*) const OVERRIDE;
HTMLNameCollection.h 46 virtual Element* virtualItemAfter(unsigned& offsetInArray, Element*) const OVERRIDE;

Completed in 983 milliseconds

1 2 34 5 6 7 8 91011>>