HomeSort by relevance Sort by last modified time
    Searched full:element (Results 126 - 150 of 13053) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeSetPrefix.java 30 import org.w3c.dom.Element;
41 * Element and Attr interfaces, when applicable.
43 * Create a new element node with a namespace prefix. Add it to a new
45 * Check if the prefix was set correctly on the element.
84 Element element; local
90 element = doc.createElementNS("http://www.w3.org/DOM/Test",
92 docFragment.appendChild(element);
93 element.setPrefix("dmstc");
94 elementTagName = element.getTagName()
127 Element element; local
168 Element element; local
196 Element element; local
230 Element element; local
251 Element element; local
    [all...]
NamedNodeMapSetNamedItemNS.java 29 import org.w3c.dom.Element;
41 * Retreive the first element whose localName is address and namespaceURI
86 Node element; local
95 element = elementList.item(0);
96 attributes = element.getAttributes();
98 ((Element) /* Node */element).setAttributeNodeNS(newAttr1);
107 Element element; local
113 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root")
131 Element element; local
166 Element element; local
232 Element element; local
258 Element element; local
284 Element element; local
    [all...]
  /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...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTreeBuilder.java 38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>();
72 HTML.Element element = t.getElement(); local
73 if (element.isEmpty()) {
82 tree.addStartTag(HtmlDocument.createTag(element,
85 EndTag end = HtmlDocument.createEndTag(element);
90 push(element); // Track the open tags
98 HTML.Element element = t.getElement() local
144 HTML.Element element = pop(); local
196 HTML.Element element = tag.getElement(); local
232 HTML.Element element= endTag.getElement(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTreeBuilder.java 38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>();
72 HTML.Element element = t.getElement(); local
73 if (element.isEmpty()) {
82 tree.addStartTag(HtmlDocument.createTag(element,
85 EndTag end = HtmlDocument.createEndTag(element);
90 push(element); // Track the open tags
98 HTML.Element element = t.getElement() local
144 HTML.Element element = pop(); local
196 HTML.Element element = tag.getElement(); local
232 HTML.Element element= endTag.getElement(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLFormattingElementList.h 36 class Element;
65 Element* element() const function in class:WebCore::HTMLFormattingElementList::Entry
68 // callers should check isMarker() before calling element().
70 return m_item->element();
75 bool operator==(Element* element) const { return !m_item ? !element : m_item->element() == element; }
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicConvolve3x3.java 34 * Supported elements types are {@link Element#U8}, {@link
35 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4},
36 * {@link Element#F32}, {@link Element#F32_2}, {@link
37 * Element#F32_3}, and {@link Element#F32_4}
48 * @param e Element type for intputs and outputs
52 public static ScriptIntrinsicConvolve3x3 create(RenderScript rs, Element e)
    [all...]
ScriptIntrinsicConvolve5x5.java 34 * Supported elements types are {@link Element#U8}, {@link
35 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4},
36 * {@link Element#F32}, {@link Element#F32_2}, {@link
37 * Element#F32_3}, and {@link Element#F32_4}
49 * @param e Element type for intputs and outputs
53 public static ScriptIntrinsicConvolve5x5 create(RenderScript rs, Element e)
    [all...]
Element.java 23 * <p>An Element represents one item within an {@link
24 * android.renderscript.Allocation}. An Element is roughly equivalent to a C
27 * kernel)</li> <li>A four-element float vector (equivalent to a float4 in a
30 * kernel)</li> </ul> <p>A complex element is roughly equivalent to a C struct
32 * element contains a list of sub-elements and names that represents a
38 * android.renderscript.Element.DataType} and a {@link
39 * android.renderscript.Element.DataKind}. The DataType encodes C type
40 * information of an Element, while the DataKind encodes how that Element should
43 * android.renderscript.Element.DataKind#USER} cannot be used as input for
    [all...]
  /frameworks/rs/cpp/
rsCppStructs.h 41 class Element;
58 RS_ERROR_INVALID_ELEMENT = 3, ///< An invalid Element was passed to a function
169 sp<const Element> U8;
170 sp<const Element> U8_2;
171 sp<const Element> U8_3;
172 sp<const Element> U8_4;
173 sp<const Element> I8;
174 sp<const Element> I8_2;
175 sp<const Element> I8_3;
176 sp<const Element> I8_4
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
grabber.js 23 * Create a Grabber object to enable grabbing and dragging a given element.
25 * @param {!Element} element The element that can be grabbed and moved.
27 function Grabber(element) {
29 * The element the grabber is attached to.
30 * @type {!Element}
33 this.element_ = element;
37 * element is manipulated.
41 this.touchHandler_ = new TouchHandler(this.element);
    [all...]
  /external/chromium/chrome/browser/resources/touch_ntp/
grabber.js 23 * Create a Grabber object to enable grabbing and dragging a given element.
25 * @param {!Element} element The element that can be grabbed and moved.
27 function Grabber(element) {
29 * The element the grabber is attached to.
30 * @type {!Element}
33 this.element_ = element;
37 * element is manipulated.
41 this.touchHandler_ = new TouchHandler(this.element);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorCheckerFastPath.cpp 33 #include "core/dom/Element.h"
42 template <bool checkValue(const Element&, const CSSSelector*)>
43 inline bool fastCheckSingleSelector(const CSSSelector*& selector, const Element*& element, const CSSSelector*& topChildOrSubselector, const Element*& topChildOrSubselectorMatchElement)
45 for (; element; element = element->parentElement()) {
46 if (checkValue(*element, selector)) {
52 topChildOrSubselectorMatchElement = element;
130 const Element* element = &m_element; local
    [all...]
SelectorChecker.cpp 69 static bool matchesCustomPseudoElement(const Element* element, const CSSSelector* selector)
71 ShadowRoot* root = element->containingShadowRoot();
75 const AtomicString& pseudoId = selector->pseudoType() == CSSSelector::PseudoWebKitCustomElement ? element->shadowPseudoId() : element->pseudo();
83 Element* SelectorChecker::parentElement(const SelectorCheckingContext& context) const
87 return context.element->parentOrShadowHostElement();
91 return context.element->parentElement();
94 return (context.behaviorAtBoundary & SelectorChecker::BoundaryBehaviorMask) != SelectorChecker::StaysWithinTreeScope ? context.element->parentOrShadowHostElement() : context.element->parentElement()
465 Element& element = *context.element; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp 57 bool SharedStyleFinder::canShareStyleWithControl(Element& candidate) const
59 if (!candidate.hasTagName(inputTag) || !element().hasTagName(inputTag))
63 HTMLInputElement& thisInput = toHTMLInputElement(element());
74 if (candidate.isDisabledFormControl() != element().isDisabledFormControl())
77 if (candidate.isDefaultButtonForForm() != element().isDefaultButtonForForm())
83 if (willValidate != element().willValidate())
86 if (willValidate && (candidate.isValidFormControlElement() != element().isValidFormControlElement()))
89 if (candidate.isInRange() != element().isInRange())
92 if (candidate.isOutOfRange() != element().isOutOfRange())
109 static inline const AtomicString& typeAttributeValue(const Element& element
    [all...]
  /external/chromium_org/content/test/data/accessibility/
input-button-in-menu-expected-android.txt 3 android.widget.Button clickable focusable name='Button in menu element'
5 android.widget.Button clickable focusable name='Button in element with menu role'
input-image-button-in-menu.html 4 <input type="image" src="bullet.png" alt="Bullet" value="Image button in menu element">
7 <input type="image" src="bullet.png" alt="Bullet" value="Image button in element with menu role">
  /external/chromium_org/native_client_sdk/src/build_tools/screenshot_extension/
manifest.json 2 "name": "Capture element",
4 "description": "A simple extension to allow capturing a tab (or element).",
  /external/chromium_org/third_party/skia/src/animator/
SkExtraPathEffects.xsd 7 <xs:element name="composePathEffect" >
10 <xs:element ref="Sk:dash"/>
11 <xs:element ref="extra:shape1DPathEffect"/>
15 </xs:element>
17 <xs:element name="shape1DPathEffect" >
20 <xs:element ref="Sk:matrix"/>
21 <xs:element ref="Sk:path"/>
30 </xs:element>
  /external/droiddriver/src/com/google/android/droiddriver/finders/
ByXPath.java 31 import org.w3c.dom.Element;
76 Element domNode = ((AbstractUiElement) context).getDomNode();
79 Element foundNode = (Element) xPathExpression.evaluate(domNode, XPathConstants.NODE);
114 public static Element buildDomNode(AbstractUiElement uiElement) {
119 Element element = getDocument().createElement(XPaths.tag(className)); local
120 element.setUserData(UI_ELEMENT, uiElement, null /* UserDataHandler */);
122 setAttribute(element, Attribute.CLASS, className);
123 setAttribute(element, Attribute.RESOURCE_ID, uiElement.getResourceId())
    [all...]
  /external/skia/src/animator/
SkExtraPathEffects.xsd 7 <xs:element name="composePathEffect" >
10 <xs:element ref="Sk:dash"/>
11 <xs:element ref="extra:shape1DPathEffect"/>
15 </xs:element>
17 <xs:element name="shape1DPathEffect" >
20 <xs:element ref="Sk:matrix"/>
21 <xs:element ref="Sk:path"/>
30 </xs:element>
  /external/apache-harmony/support/src/test/resources/config/
excludes.xsd 9 <xsd:element name="suite">
12 <xsd:element ref="type" minOccurs="0" maxOccurs="unbounded"/>
15 </xsd:element>
24 <xsd:element name="type">
27 <xsd:element ref="exclude" minOccurs="1" maxOccurs="unbounded"/>
31 </xsd:element>
34 * An exclude element can have an optional reason
35 * element.
37 <xsd:element name="exclude">
40 <xsd:element ref="reason" minOccurs="0" maxOccurs="1"/
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementObserver.cpp 42 void CustomElementObserver::notifyElementDidFinishParsingChildren(Element* element)
44 ElementObserverMap::iterator it = elementObservers().find(element);
47 it->value->elementDidFinishParsingChildren(element);
50 void CustomElementObserver::notifyElementWasDestroyed(Element* element)
52 ElementObserverMap::iterator it = elementObservers().find(element);
55 it->value->elementWasDestroyed(element);
58 void CustomElementObserver::observe(Element* element)
    [all...]
  /external/oprofile/doc/
ophelp.xsd 4 <xs:element name="help_events">
7 <xs:element minOccurs="1" maxOccurs="1" ref="header"/>
8 <xs:element minOccurs="1" maxOccurs="unbounded" ref="event"/>
18 </xs:element>
20 <xs:element name="header">
25 </xs:element>
27 <xs:element name="event">
30 <xs:element minOccurs="0" maxOccurs="1" ref="unit_masks"/>
38 </xs:element>
40 <xs:element name="unit_masks"
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
util.js 24 * @param {String} elementId Element id of the HTML element to be fetched.
25 * @return {Element} Element corresponding to the element id.

Completed in 2079 milliseconds

1 2 3 4 56 7 8 91011>>