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

1 2 3

  /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...]
ElementTest.java 19 import android.renderscript.Element;
20 import android.renderscript.Element.DataType;
21 import android.renderscript.Element.DataKind;
26 assertTrue(Element.createPixel(mRS,
29 assertTrue(Element.createPixel(mRS,
32 assertTrue(Element.createPixel(mRS,
35 assertTrue(Element.createPixel(mRS,
38 assertTrue(Element.createPixel(mRS,
41 assertTrue(Element.createPixel(mRS,
48 Element e = null
    [all...]
AllocationTest.java 25 import android.renderscript.Element;
34 void createTypedHelper(Element e) {
56 void createTypedTextureHelper(Element e) {
105 void createSizedHelper(Element e) {
114 createTypedHelper(Element.A_8(mRS));
115 createTypedHelper(Element.RGB_565(mRS));
116 createTypedHelper(Element.RGB_888(mRS));
117 createTypedHelper(Element.RGBA_8888(mRS));
118 createTypedHelper(Element.F32(mRS));
119 createTypedHelper(Element.F32_2(mRS))
    [all...]
ProgramVertexTest.java 22 import android.renderscript.Element;
29 Element mAttrPosElem;
30 Element mAttrNormTexElem;
31 Element mAttrPosNormTexElem;
32 Element mAttrExtra;
43 Element.Builder eb = new Element.Builder(mRS);
44 eb.add(Element.F32_4(mRS), "position");
47 eb = new Element.Builder(mRS);
48 eb.add(Element.F32_3(mRS), "normal")
    [all...]
MeshTest.java 20 import android.renderscript.Element;
32 Element mPosElem;
39 Element.Builder eb = new Element.Builder(mRS);
40 eb.add(Element.F32_4(mRS), "position");
44 typeB = new Type.Builder(mRS, Element.U16(mRS));
48 mIndexAlloc = Allocation.createSized(mRS, Element.U16(mRS), 3);
96 mb.addIndexSetType(Element.U16(mRS), 3, prim);
125 mb.addIndexSetType(Element.U16(mRS), 3, prim);
  /external/webkit/Source/WebCore/inspector/front-end/
utilities.js 157 Element.prototype.removeStyleClass = function(className)
162 Element.prototype.removeMatchingStyleClasses = function(classNameRegex)
169 Element.prototype.addStyleClass = function(className)
174 Element.prototype.hasStyleClass = function(className)
179 Element.prototype.positionAt = function(x, y)
185 Element.prototype.pruneEmptyTextNodes = function()
196 Element.prototype.isScrolledToBottom = function()
231 Element.prototype.query = function(query)
236 Element.prototype.removeChildren = function()
242 Element.prototype.isInsertionCaretInside = function(
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 412 var div = new Element('div');
    [all...]
mootools-1.2.2-core-nc.js 259 case 1: return 'element';
397 if (!win.Element){
398 win.Element = $empty;
400 win.Element.prototype = (Browser.Engine.webkit) ? window["[[DOMElement.prototype]]"] : {};
1294 Script: Element.js
1302 var Element = new Native({
1304 name: 'Element',
1306 legacy: window.Element,
1309 var konstructor = Element.Constructors.get(tag);
1316 Element.Prototype[key] = value
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/tools/
externs.js 8 // JSCompiler doesn't know about this new Element property
9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
  /external/chromium/chrome/browser/resources/touch_ntp/tools/
externs.js 8 // JSCompiler doesn't know about this new Element property
9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
  /external/chromium/net/base/
upload_data.cc 19 UploadData::Element::Element()
30 UploadData::Element::~Element() {
35 void UploadData::Element::SetToChunk(const char* bytes,
44 uint64 UploadData::Element::GetContentLength() {
91 FileStream* UploadData::Element::NewFileStreamForReading() {
132 elements_.push_back(Element());
139 elements_.push_back(Element());
147 elements_.push_back(Element());
    [all...]
upload_data.h 45 class Element {
47 Element();
48 ~Element();
51 // Explicitly sets the type of this Element. Used during IPC
96 // Though similar to bytes, a chunk indicates that the element is sent via
107 // Returns the byte-length of the element. For files that do not exist, 0
112 // Returns a FileStream opened for reading for this element, positioned at
114 // for cleaning up the FileStream. Returns NULL if this element is not of
170 std::vector<Element>* elements() {
174 void SetElements(const std::vector<Element>& elements)
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_node_data.h 42 // Element represents a single node.
43 struct Element {
44 Element();
45 explicit Element(const BookmarkNode* node);
46 ~Element();
48 // If true, this element represents a URL.
58 std::vector<Element> children;
66 // For reading/writing this Element.
106 // Writes elements to data. If there is only one element and it is a URL
154 std::vector<Element> elements
    [all...]
bookmark_node_data.cc 28 BookmarkNodeData::Element::Element() : is_url(false), id_(0) {
31 BookmarkNodeData::Element::Element(const BookmarkNode* node)
37 children.push_back(Element(node->GetChild(i)));
40 BookmarkNodeData::Element::~Element() {
43 void BookmarkNodeData::Element::WriteToPickle(Pickle* pickle) const {
50 for (std::vector<Element>::const_iterator i = children.begin();
57 bool BookmarkNodeData::Element::ReadFromPickle(Pickle* pickle
182 Element element; local
252 Element element; local
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ProgramVertexFixedFunction.java 52 public InternalBuilder addInput(Element e) throws IllegalStateException {
123 Element.Builder b = new Element.Builder(rs);
124 b.add(Element.MATRIX4X4(rs), "MV");
125 b.add(Element.MATRIX4X4(rs), "P");
126 b.add(Element.MATRIX4X4(rs), "TexMatrix");
127 b.add(Element.MATRIX4X4(rs), "MVP");
166 Element.Builder b = new Element.Builder(mRS);
167 b.add(Element.F32_4(mRS), "position")
    [all...]
Mesh.java 182 Element e;
245 * @param e element describing the vertex data layout
250 public Builder addVertexType(Element e, int size) throws IllegalStateException {
301 * @param e element describing the index set data layout
307 public Builder addIndexSetType(Element e, int size, Primitive p) {
317 Type newType(Element e, int size) {
520 Element mElement;
731 Element.Builder b = new Element.Builder(mRS);
733 b.add(Element.createVector(mRS
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebElement.cpp 34 #include "Element.h"
47 return constUnwrap<Element>()->isFormControlElement();
52 return constUnwrap<Element>()->isTextFormControl();
57 return constUnwrap<Element>()->tagName();
62 return equalIgnoringCase(constUnwrap<Element>()->tagName(),
68 return constUnwrap<Element>()->hasAttribute(attrName);
73 return constUnwrap<Element>()->getAttribute(attrName);
79 unwrap<Element>()->setAttribute(attrName, attrValue, exceptionCode);
90 return constUnwrap<Element>()->innerText();
95 return adoptRef(static_cast<Node*>(unwrap<Element>()->shadowRoot()))
    [all...]
  /external/skia/gpu/include/
GrClip.h 114 struct Element {
120 bool operator ==(const Element& e) const {
131 GrCrash("Unknown clip element type.");
135 bool operator !=(const Element& e) const { return !(*this == e); }
144 GrAlignedSTStorage<kPreAllocElements, Element> fListStorage;
145 GrTArray<Element> fList;
  /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/webkit/Source/WebKit/chromium/public/
WebHTTPBody.h 50 struct Element {
79 // Sets the values of the element at the given index. Returns false if
81 WEBKIT_API bool elementAt(size_t index, Element&) const;
  /frameworks/base/sax/java/android/sax/
Element.java 27 * An XML element. Provides access to child elements and hooks to listen
28 * for events related to this element.
32 public class Element {
37 final Element parent;
40 ArrayList<Element> requiredChilden;
48 Element(Element parent, String uri, String localName, int depth) {
56 * Gets the child element with the given name. Uses an empty string as the
59 public Element getChild(String localName) {
64 * Gets the child element with the given name
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 16 * The <code>Element</code> interface represents an element in an HTML or XML
18 * <code>Element</code> interface inherits from <code>Node</code>, the
20 * be used to retrieve the set of all attributes for an element. There are
21 * methods on the <code>Element</code> interface to retrieve either an
32 public interface Element extends Node {
34 * The name of the element. If <code>Node.localName</code> is different
42 * the <code>tagName</code> of an HTML element in the canonical
57 * in the element, its value is changed to be that of the value
113 * <code>nodeName</code>) is already present in the element, it i
    [all...]
  /frameworks/base/libs/rs/
rsElement.cpp 24 Element::Element(Context *rsc) : ObjectBase(rsc) {
31 Element::~Element() {
35 void Element::preDestroy() const {
44 void Element::clear() {
51 size_t Element::getSizeBits() const {
63 void Element::dumpLOGV(const char *prefix) const {
65 LOGV("%s Element: fieldCount: %zu, size bytes: %zu", prefix, mFieldCount, getSizeBytes());
68 LOGV("%s Element field index: %u ------------------", prefix, ct)
    [all...]
rsElement.h 28 // An element is a group of Components that occupies one cell in a structure.
29 class Element : public ObjectBase {
34 void add(const Element *e, const char *nameStr, uint32_t arraySize);
35 ObjectBaseRef<const Element> create(Context *rsc);
37 Vector<ObjectBaseRef<const Element> > mBuilderElementRefs;
38 Vector<const Element *> mBuilderElements;
59 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();}
71 static Element *createFromStream(Context *rsc, IStream *stream);
73 static ObjectBaseRef<const Element> createRef(Context *rsc,
78 static ObjectBaseRef<const Element> createRef(Context *rsc, size_t count
    [all...]
  /external/v8/src/
liveobjectlist.h 118 struct Element {
131 static int CompareElement(const Element* a, const Element* b);
179 Element* Find(HeapObject* obj);
192 // specified key. If no matching element is found, then it returns NULL.
194 inline static LiveObjectList::Element*
195 FindElementFor(T (*GetValue)(LiveObjectList::Element*), T key);
197 inline static int GetElementId(Element* element);
198 inline static HeapObject* GetElementObj(Element* element)
    [all...]

Completed in 482 milliseconds

1 2 3