Searched defs:Element (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/sax/java/android/sax/
H A DElement.java32 public class Element { class
37 final Element parent;
40 ArrayList<Element> requiredChilden;
48 Element(Element parent, String uri, String localName, int depth) { method in class:Element
59 public Element getChild(String localName) {
66 public Element getChild(String uri, String localName) {
85 public Element requireChild(String localName) {
94 public Element requireChild(String uri, String localName) {
95 Element chil
[all...]
/frameworks/rs/cpp/
H A DElement.h27 class Element : public BaseObj { class in namespace:android::renderscriptCpp
50 sp<const Element> getSubElement(uint32_t index);
94 static sp<const Element> BOOLEAN(RenderScript *rs);
95 static sp<const Element> U8(RenderScript *rs);
96 static sp<const Element> I8(RenderScript *rs);
97 static sp<const Element> U16(RenderScript *rs);
98 static sp<const Element> I16(RenderScript *rs);
99 static sp<const Element> U32(RenderScript *rs);
100 static sp<const Element> I32(RenderScript *rs);
101 static sp<const Element> U6
[all...]
H A DElement.cpp24 #include "Element.h"
29 sp<const Element> Element::getSubElement(uint32_t index) {
31 mRS->throwError("Element contains no sub-elements");
39 const char * Element::getSubElementName(uint32_t index) {
41 mRS->throwError("Element contains no sub-elements");
49 size_t Element::getSubElementArraySize(uint32_t index) {
51 mRS->throwError("Element contains no sub-elements");
59 uint32_t Element::getSubElementOffsetBytes(uint32_t index) {
61 mRS->throwError("Element contain
151 Element::Element(void *id, RenderScript *rs, function in class:Element
225 Element::Element(void *id, RenderScript *rs, function in class:Element
362 isCompatible(sp<const Element>e) argument
383 add(sp< Element>e, android::String8 &name, uint32_t arraySize) argument
[all...]
/frameworks/rs/
H A DrsElement.cpp24 Element::Element(Context *rsc) : ObjectBase(rsc) { function in class:Element
33 Element::~Element() {
37 void Element::preDestroy() const {
46 void Element::clear() {
59 size_t Element::getSizeBits() const {
71 size_t Element::getSizeBitsUnpadded() const {
83 void Element::dumpLOGV(const char *prefix) const {
85 ALOGV("%s Element
[all...]
H A DrsElement.h37 class Element : public ObjectBase { class in namespace:android::renderscript
49 const Element **fields;
63 void add(const Element *e, const char *nameStr, uint32_t arraySize);
64 ObjectBaseRef<const Element> create(Context *rsc);
66 Vector<ObjectBaseRef<const Element> > mBuilderElementRefs;
67 Vector<const Element *> mBuilderElements;
97 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();}
110 static Element *createFromStream(Context *rsc, IStream *stream);
112 static ObjectBaseRef<const Element> createRef(Context *rsc,
117 static ObjectBaseRef<const Element> createRe
[all...]
/frameworks/support/renderscript/v8/rs_support/
H A DrsElement.cpp24 Element::Element(Context *rsc) : ObjectBase(rsc) { function in class:Element
33 Element::~Element() {
37 void Element::preDestroy() const {
46 void Element::clear() {
59 size_t Element::getSizeBits() const {
71 size_t Element::getSizeBitsUnpadded() const {
83 void Element::dumpLOGV(const char *prefix) const {
85 ALOGV("%s Element
[all...]
H A DrsElement.h37 class Element : public ObjectBase { class in namespace:android::renderscript
49 const Element **fields;
63 void add(const Element *e, const char *nameStr, uint32_t arraySize);
64 ObjectBaseRef<const Element> create(Context *rsc);
66 Vector<ObjectBaseRef<const Element> > mBuilderElementRefs;
67 Vector<const Element *> mBuilderElements;
97 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();}
110 static Element *createFromStream(Context *rsc, IStream *stream);
112 static ObjectBaseRef<const Element> createRef(Context *rsc,
117 static ObjectBaseRef<const Element> createRe
[all...]
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_structs.h152 * internal members of the C++ class Element owned by librs. Unfortunately,
165 typedef struct Element { struct
/frameworks/base/graphics/java/android/renderscript/
H A DElement.java24 * Element is the basic data type of Renderscript. An element can be of two forms: Basic elements or Complex forms.
50 public class Element extends BaseObj { class in inherits:BaseObj
52 Element[] mElements;
220 public Element getSubElement(int index) {
222 throw new RSIllegalArgumentException("Element contains no sub-elements");
238 throw new RSIllegalArgumentException("Element contains no sub-elements");
255 throw new RSIllegalArgumentException("Element contains no sub-elements");
271 throw new RSIllegalArgumentException("Element contains no sub-elements");
294 * Utility function for returning an Element containing a single Boolean.
298 * @return Element
748 Element(int id, RenderScript rs, Element[] e, String[] n, int[] as) { method in class:Element
765 Element(int id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) { method in class:Element
784 Element(int id, RenderScript rs) { method in class:Element
[all...]
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DElement.java25 * Element is the basic data type of Renderscript. An element can be of two forms: Basic elements or Complex forms.
51 public class Element extends BaseObj { class in inherits:BaseObj
53 android.renderscript.Element mE;
55 NElement(android.renderscript.Element e) {
68 Element[] mElements;
229 public Element getSubElement(int index) {
231 throw new RSIllegalArgumentException("Element contains no sub-elements");
247 throw new RSIllegalArgumentException("Element contains no sub-elements");
264 throw new RSIllegalArgumentException("Element contains no sub-elements");
280 throw new RSIllegalArgumentException("Element contain
709 Element(int id, RenderScript rs, Element[] e, String[] n, int[] as) { method in class:Element
726 Element(int id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) { method in class:Element
745 Element(int id, RenderScript rs) { method in class:Element
[all...]

Completed in 2937 milliseconds