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

1 2 3 4 56 7 8 91011>>

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RSBaseCompute.java 21 import android.renderscript.Element;
88 private void baseTestHelper(int testid, Element inElement, Element outElement, long seed, int fact,
115 baseTestHelper(TEST_F32, Element.F32(mRS), Element.F32(mRS), seed, 1, 0, 1, 0, 1, 1, 1, 0, ulp);
119 baseTestHelper(TEST_F32_2, Element.F32_2(mRS), Element.F32_2(mRS), seed, 1, 0, 1, 0, 2, 2, 2, 0, ulp);
123 baseTestHelper(TEST_F32_3, Element.F32_3(mRS), Element.F32_3(mRS), seed, 1, 0, 4, 1, 3, 4, 4, 1, ulp);
127 baseTestHelper(TEST_F32_4, Element.F32_4(mRS), Element.F32_4(mRS), seed, 1, 0, 1, 0, 4, 4, 4, 0, ulp)
    [all...]
IntrinsicBase.java 22 import android.renderscript.Element;
48 protected Element makeElement(Element.DataType dt, int vecSize) {
49 Element e;
51 e = Element.createVector(mRS, dt, vecSize);
53 if (dt == Element.DataType.UNSIGNED_8) {
54 e = Element.U8(mRS);
56 e = Element.F32(mRS);
62 protected Allocation makeAllocation(int w, int h, Element e) {
70 protected void makeSource(int w, int h, Element e)
    [all...]
BaseObjTest.java 21 import android.renderscript.Element;
28 Element E = Element.I32(mRS);
IntrinsicConvolve5x5.java 24 Element e, float cf[], String name, int num, int w, int h) {
33 if (e.getDataType() == Element.DataType.UNSIGNED_8) {
70 private void testConvolve5(int w, int h, Element.DataType dt, int vecSize) {
82 Element e = makeElement(dt, vecSize);
92 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 4);
96 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 3);
100 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 2);
104 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 1);
109 testConvolve5(100, 100, Element.DataType.FLOAT_32, 4);
113 testConvolve5(100, 100, Element.DataType.FLOAT_32, 3)
    [all...]
AllocationTest.java 25 import android.renderscript.Element;
36 void createTypedHelper(Element e) {
58 void createTypedTextureHelper(Element e) {
107 void createSizedHelper(Element e) {
116 createTypedHelper(Element.A_8(mRS));
117 createTypedHelper(Element.RGB_565(mRS));
118 createTypedHelper(Element.RGB_888(mRS));
119 createTypedHelper(Element.RGBA_8888(mRS));
120 createTypedHelper(Element.F32(mRS));
121 createTypedHelper(Element.F32_2(mRS))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MarkupAccumulator.h 38 class Element;
87 virtual void appendCustomAttributes(StringBuilder&, Element*, Namespaces*);
89 bool shouldAddNamespaceElement(const Element*);
97 virtual void appendElement(StringBuilder&, Element*, Namespaces*);
98 void appendOpenTag(StringBuilder&, Element*, Namespaces*);
99 void appendCloseTag(StringBuilder&, Element*);
100 void appendAttribute(StringBuilder&, Element*, const Attribute&, Namespaces*);
111 String resolveURLIfNeeded(const Element*, const String&) const;
112 void appendQuotedURLAttributeValue(StringBuilder&, const Element*, const Attribute&);
CompositeEditCommand.h 37 class Element;
55 Element* startingRootEditableElement() const { return m_startingRootEditableElement.get(); }
56 Element* endingRootEditableElement() const { return m_endingRootEditableElement.get(); }
69 RefPtr<Element> m_startingRootEditableElement;
70 RefPtr<Element> m_endingRootEditableElement;
101 void applyStyledElement(PassRefPtr<Element>);
102 void removeStyledElement(PassRefPtr<Element>);
114 void mergeIdenticalElements(PassRefPtr<Element>, PassRefPtr<Element>);
121 void removeCSSProperty(PassRefPtr<Element>, CSSPropertyID)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttributeNS.java 24 import org.w3c.dom.Element;
32 * The "hasAttributeNS()" method for an Element should return false if the
33 * element does not have an attribute with the given local name and/or a
34 * namespace URI specified on this element or does not have a default value.
35 * Retrieve the first "address" element and the "hasAttributeNS()" method should
36 * return false since the element has "nomatch" as the local name and
78 Element testNode;
82 testNode = (Element) elementList.item(0);
91 Element testNode;
95 testNode = (Element) elementList.item(0)
    [all...]
GetAttributeNodeNS.java 24 import org.w3c.dom.Element;
35 * Retrieve the first emp:address element node. The getAttributeNodeNS method
79 Element testAddr;
83 testAddr = (Element) elementList.item(0);
91 Element testAddr;
96 testAddr = (Element) elementList.item(0);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElementCallbackDispatcher.h 35 #include "core/dom/Element.h"
76 CustomElementCallbackQueue* createAtFrontOfCurrentElementQueue(PassRefPtr<Element>);
77 CustomElementCallbackQueue* ensureInCurrentElementQueue(PassRefPtr<Element>);
82 // Add a null element as a sentinel. This makes it possible to
93 // The start of the element queue on the top of the processing
97 // The end of the element queue on the top of the processing
109 CustomElementCallbackQueue* createCallbackQueue(PassRefPtr<Element>);
110 CustomElementCallbackQueue* ensureCallbackQueue(PassRefPtr<Element>);
112 // The processing stack, flattened. Element queues lower in the
113 // stack appear toward the head of the vector. The first element
    [all...]
UserActionElementSet.h 37 class Element;
71 void setFlags(Element*, unsigned);
72 void clearFlags(Element*, unsigned);
73 bool hasFlags(const Element*, unsigned flags) const;
75 typedef HashMap<RefPtr<Element>, unsigned> ElementFlagMap;
PseudoElement.h 30 #include "core/dom/Element.h"
36 class PseudoElement FINAL : public Element {
38 static PassRefPtr<PseudoElement> create(Element* parent, PseudoId pseudoId)
58 PseudoElement(Element*, PseudoId);
VisitedLinkState.cpp 42 inline static const AtomicString& linkAttribute(Element* element)
44 ASSERT(element->isLink());
45 if (element->isHTMLElement())
46 return element->fastGetAttribute(HTMLNames::hrefAttr);
47 ASSERT(element->isSVGElement());
48 return element->getAttribute(XLinkNames::hrefAttr);
51 inline static LinkHash linkHashForElement(Document* document, Element* element)
53 if (isHTMLAnchorElement(element))
    [all...]
Element.cpp 27 #include "core/dom/Element.h"
104 static inline bool shouldIgnoreAttributeCase(const Element* e)
111 StyleResolverParentPusher(Element* parent)
139 Element* m_parent;
144 typedef HashMap<Element*, OwnPtr<AttrNodeList> > AttrNodeListMap;
152 static AttrNodeList* attrNodeListForElement(Element* element)
154 if (!element->hasSyntheticAttrChildNodes())
156 ASSERT(attrNodeListMap().contains(element));
157 return attrNodeListMap().get(element);
610 Element* element = offsetParent(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMEditor.h 38 class Element;
54 bool setAttribute(Element*, const String& name, const String& value, ExceptionState&);
55 bool removeAttribute(Element*, const String& name, ExceptionState&);
63 bool setAttribute(Element*, const String& name, const String& value, ErrorString*);
64 bool removeAttribute(Element*, const String& name, ErrorString*);
  /external/chromium_org/webkit/common/
resource_request_body.h 29 typedef webkit_common::DataElement Element;
41 const std::vector<Element>* elements() const { return &elements_; }
42 std::vector<Element>* elements_mutable() { return &elements_; }
43 void swap_elements(std::vector<Element>* elements) {
57 std::vector<Element> elements_;
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Element.java 24 * <p>An Element represents one item within an {@link
25 * android.support.v8.renderscript.Allocation}. An Element is roughly
28 * (equivalent to a float in a kernel)</li> <li>A four-element float vector
31 * integer (equivalent to a char in a kernel)</li> </ul> <p>A complex element is
33 * Elements. From Java code, a complex element contains a list of sub-elements
40 * android.support.v8.renderscript.Element.DataType} and a {@link
41 * android.support.v8.renderscript.Element.DataKind}. The DataType encodes C
42 * type information of an Element, while the DataKind encodes how that Element
45 * DataKind {@link android.support.v8.renderscript.Element.DataKind#USER} canno
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.idl 34 [RaisesException] DOMString elementRenderTreeAsText(Element element);
43 [RaisesException] ShadowRoot ensureShadowRoot(Element host);
44 [RaisesException] ShadowRoot shadowRoot(Element host);
45 [RaisesException] ShadowRoot youngestShadowRoot(Element host);
46 [RaisesException] ShadowRoot oldestShadowRoot(Element host);
54 [RaisesException] Element includerFor(Node node);
55 [RaisesException] DOMString shadowPseudoId(Element element);
56 [RaisesException] void setShadowPseudoId(Element element, DOMString id)
    [all...]
  /external/chromium_org/v8/tools/testrunner/local/
junit_output.py 34 self.root = xml.Element("testsuite")
38 testCaseElement = xml.Element("testcase")
42 failureElement = xml.Element("failure")
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
WhiteBalance.java 22 import android.renderscript.Element;
32 mHist = ScriptIntrinsicHistogram.create(mRS, Element.U8_4(mRS));
33 mSums = Allocation.createSized(mRS, Element.I32_3(mRS), 256);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementnormalize.java 32 * depth of the sub-tree underneath this element into a
66 Element root;
68 Element testName;
75 testName = (Element) elementList.item(2);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodehasattributes01.java 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes.
35 * Retreive an element node without attributes. Verify if hasAttributes returns false.
36 * Retreive another element node with attributes. Verify if hasAttributes returns true.
64 Element element; local
69 element = (Element) elementList.item(0);
70 hasAttributes = element.hasAttributes();
73 element = (Element) elementList.item(0)
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Element.java 17 The internal representation of an actual element (not an element type).
18 An Element has an element type, attributes, and a successor Element
23 public class Element {
26 private ElementType theType; // type of element
27 private AttributesImpl theAtts; // attributes of element
28 private Element theNext; // successor of element
    [all...]
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMOutputCapsule.java 50 import org.w3c.dom.Element;
62 private Element currentElement;
64 private Map<Savable, Element> writtenSavables = new IdentityHashMap<Savable, Element>();
77 * appends a new Element with the given name to currentElement, sets
78 * currentElement to be new Element, and returns the new Element as well
80 private Element appendElement(String name) {
81 Element ret = doc.createElement(name);
121 Element el = appendElement(name)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorCheckerFastPath.h 39 SelectorCheckerFastPath(const CSSSelector*, const Element*);
51 const Element* m_element;

Completed in 295 milliseconds

1 2 3 4 56 7 8 91011>>