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

/frameworks/av/services/audiopolicy/engineconfigurable/src/
H A DElement.h31 class Element class in namespace:android::audio_policy
34 Element(const std::string &name) function in class:android::audio_policy::Element
37 ~Element() {}
92 Element(const Element &object);
93 Element &operator=(const Element &object);
H A DInputSource.h19 #include "Element.h"
28 * @tparam audio_source_t Policy Base Element identified by the audio_source_t definition.
31 class Element<audio_source_t> class in namespace:android::audio_policy
34 Element(const std::string &name) function in class:android::audio_policy::Element
38 ~Element() {}
75 Element(const Element &object);
76 Element &operator=(const Element &object);
84 typedef Element<audio_source_
[all...]
H A DStrategy.h19 #include "Element.h"
31 class Element<routing_strategy> class in namespace:android::audio_policy
34 Element(const std::string &name) function in class:android::audio_policy::Element
38 ~Element() {}
75 Element(const Element &object);
76 Element &operator=(const Element &object);
84 typedef Element<routing_strategy> Strategy;
H A DUsage.h19 #include "Element.h"
31 class Element<audio_usage_t> class in namespace:android::audio_policy
34 Element(const std::string &name) function in class:android::audio_policy::Element
38 ~Element() {}
75 Element(const Element &object);
76 Element &operator=(const Element &object);
83 typedef Element<audio_usage_t> Usage;
H A DStream.h19 #include "Element.h"
33 class Element<audio_stream_type_t> class in namespace:android::audio_policy
41 Element(const std::string &name) function in class:android::audio_policy::Element
47 ~Element() {}
90 Element(const Element &object);
91 Element &operator=(const Element &object);
110 typedef Element<audio_stream_type_t> Stream;
/frameworks/base/sax/java/android/sax/
H A DElement.java30 public class Element { class
35 final Element parent;
38 ArrayList<Element> requiredChilden;
46 Element(Element parent, String uri, String localName, int depth) { method in class:Element
57 public Element getChild(String localName) {
64 public Element getChild(String uri, String localName) {
83 public Element requireChild(String localName) {
92 public Element requireChild(String uri, String localName) {
93 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
176 Element::Element(void *id, android::RSC::sp<RS> rs, function in class:Element
269 Element::Element(void *id, android::RSC::sp<RS> rs, function in class:Element
425 add(android::RSC::sp<const Element>e, const char * name, uint32_t arraySize) argument
[all...]
H A DrsCppStructs.h45 class Element;
62 RS_ERROR_INVALID_ELEMENT = 3, ///< An invalid Element was passed to a function
180 sp<const Element> U8;
181 sp<const Element> U8_2;
182 sp<const Element> U8_3;
183 sp<const Element> U8_4;
184 sp<const Element> I8;
185 sp<const Element> I8_2;
186 sp<const Element> I8_3;
187 sp<const Element> I8_
652 class Element : public BaseObj { class in namespace:android::RSC
[all...]
/frameworks/base/tools/aapt2/
H A DXmlDom.h93 * An Element XML node.
95 struct Element : public BaseNode<Element> { struct in namespace:aapt::xml
100 Element();
103 xml::Element* findChild(const StringPiece16& ns, const StringPiece16& name);
104 xml::Element* findChildWithAttribute(const StringPiece16& ns, const StringPiece16& name,
106 std::vector<xml::Element*> getChildElements();
136 virtual void visit(Element* node) = 0;
H A DXmlDom.cpp106 std::unique_ptr<Element> el = util::make_unique<Element>();
201 static void copyAttributes(Element* el, android::ResXMLParser* parser) {
258 std::unique_ptr<Element> node = util::make_unique<Element>();
342 Element::Element() : BaseNode(NodeType::kElement) { function in class:aapt::xml::Element
345 std::unique_ptr<Node> Element::clone() const {
346 Element* el = new Element();
[all...]
/frameworks/rs/
H A DrsElement.cpp24 Element::Element(Context *rsc) : ObjectBase(rsc) { function in class:Element
33 Element::~Element() {
37 void Element::operator delete(void* ptr) {
39 Element *e = (Element*) ptr;
44 void Element::preDestroy() const {
53 void Element::clear() {
71 size_t Element
[all...]
H A DrsElement.h37 class Element : public ObjectBase { class in namespace:android::renderscript
49 const Element **fields;
87 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();}
101 static Element *createFromStream(Context *rsc, IStream *stream);
103 static ObjectBaseRef<const Element> createRef(Context *rsc,
108 static ObjectBaseRef<const Element> createRef(Context *rsc, size_t count,
109 const Element **,
114 static const Element* create(Context *rsc,
119 ObjectBaseRef<const Element> elem = createRef(rsc, dt, dk, isNorm, vecSize);
123 static const Element* creat
[all...]
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
H A DLoaderDicom.java55 class Element { class in class:LoaderDicom
123 class TagSet extends HashMap<Integer, Element> {
124 Element get(int group, int element) {
128 void put(Element e) {
153 Element e = new Element();
179 e = new Element();
192 private long readTag(Element e) {
229 private void skipValue(Element e) {
244 private void readValue(Element
[all...]
/frameworks/rs/driver/runtime/
H A Drs_structs.h189 * internal members of the C++ class Element owned by librs. Unfortunately,
202 typedef struct Element { struct
/frameworks/base/rs/java/android/renderscript/
H A DElement.java20 * <p>An Element represents one item within an {@link
21 * android.renderscript.Allocation}. An Element is roughly equivalent to a C
35 * android.renderscript.Element.DataType} and a {@link
36 * android.renderscript.Element.DataKind}. The DataType encodes C type
37 * information of an Element, while the DataKind encodes how that Element should
40 * android.renderscript.Element.DataKind#USER} cannot be used as input for a
44 * as {@link android.renderscript.Element#RGBA_8888} or {@link
45 * android.renderscript#Element.A_8}.</p>
53 public class Element extend class in inherits:BaseObj
796 Element(long id, RenderScript rs, Element[] e, String[] n, int[] as) { method in class:Element
813 Element(long id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) { method in class:Element
832 Element(long 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
717 Element(long id, RenderScript rs, Element[] e, String[] n, int[] as) { method in class:Element
734 Element(long id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) { method in class:Element
753 Element(long id, RenderScript rs) { method in class:Element
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 156 milliseconds