Searched defs:Element (Results 1 - 8 of 8) 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.cpp26 android::RSC::sp<const Element> Element::getSubElement(uint32_t index) {
28 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Element contains no sub-elements");
38 const char * Element::getSubElementName(uint32_t index) {
40 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Element contains no sub-elements");
50 size_t Element::getSubElementArraySize(uint32_t index) {
52 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Element contains no sub-elements");
62 uint32_t Element::getSubElementOffsetBytes(uint32_t index) {
64 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "Element contains no sub-elements");
75 #define CREATE_USER(N, T) android::RSC::sp<const Element> Elemen
169 Element::Element(void *id, android::RSC::sp<RS> rs, function in class:Element
243 Element::Element(void *id, android::RSC::sp<RS> rs, function in class:Element
365 add(android::RSC::sp< Element>e, std::string &name, uint32_t arraySize) argument
[all...]
H A DrsCppStructs.h41 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_
579 class Element : public BaseObj { class in namespace:android::RSC
[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() {
64 size_t Element::getSizeBits() const {
76 size_t Element::getSizeBitsUnpadded() const {
88 void Element::dumpLOGV(const char *prefix) const {
90 ALOGV("%s Element
[all...]
H A DrsElement.h37 class Element : public ObjectBase { class in namespace:android::renderscript
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);
121 static const Element* creat
[all...]
/frameworks/rs/driver/runtime/
H A Drs_structs.h164 * internal members of the C++ class Element owned by librs. Unfortunately,
177 typedef struct Element { struct
/frameworks/base/graphics/java/android/renderscript/
H A DElement.java23 * <p>An Element represents one item within an {@link
24 * android.renderscript.Allocation}. An Element is roughly equivalent to a C
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 a
47 * as {@link android.renderscript.Element#RGBA_8888} or {@link
48 * android.renderscript#Element.A_8}.</p>
56 public class Element extend class in inherits:BaseObj
762 Element(int id, RenderScript rs, Element[] e, String[] n, int[] as) { method in class:Element
779 Element(int id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) { method in class:Element
798 Element(int id, RenderScript rs) { method in class:Element
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DElement.java24 * <p>An Element represents one item within an {@link
25 * android.support.v8.renderscript.Allocation}. An Element is roughly
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} cannot
50 * {@link android.support.v8.renderscript.Element#RGBA_8888} or {@link
51 * android.support.v8.renderscript#Element.A_8}.</p>
61 public class Element extend class in inherits:BaseObj
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 588 milliseconds