Searched refs:Type (Results 1 - 25 of 79) sorted by relevance

1234

/frameworks/base/include/media/
H A DMetadata.h49 typedef int32_t Type; typedef in class:android::media::Metadata
50 typedef SortedVector<Type> Filter;
52 static const Type kAny = 0;
55 static const Type kTitle = 1; // String
56 static const Type kComment = 2; // String
57 static const Type kCopyright = 3; // String
58 static const Type kAlbum = 4; // String
59 static const Type kArtist = 5; // String
60 static const Type kAuthor = 6; // String
61 static const Type kCompose
[all...]
/frameworks/base/libs/rs/
H A DrsSimpleMesh.h35 ObjectBaseRef<const Type> mIndexType;
36 ObjectBaseRef<const Type> mPrimitiveType;
37 ObjectBaseRef<const Type> *mVertexTypes;
H A DrsAllocation.h35 Allocation(Context *rsc, const Type *);
36 Allocation(Context *rsc, const Type *, void *bmp, void *callbackData, RsBitmapCallback_t callback);
48 const Type * getType() const {return mType.get();}
81 ObjectBaseRef<const Type> mType;
120 void init(Context *rsc, const Type *);
H A DrsType.h28 class Type : public ObjectBase class in namespace:android::renderscript
31 Type(Context *);
32 virtual ~Type();
34 Type * createTex2D(const Element *, size_t w, size_t h, bool mip);
127 Type(const Type &);
145 Vector<Type *> mTypes;
H A DrsType.cpp23 Type::Type(Context *rsc) : ObjectBase(rsc) function in class:Type
32 Type::~Type()
45 void Type::clear()
67 size_t Type::getOffsetForFace(uint32_t face) const
73 void Type::compute()
117 uint32_t Type::getLODOffset(uint32_t lod, uint32_t x) const
124 uint32_t Type::getLODOffset(uint32_t lod, uint32_t x, uint32_t y) const
131 uint32_t Type
[all...]
H A DrsScript.h66 ObjectBaseRef<const Type> mTypes[MAX_SCRIPT_BANKS];
H A DrsSimpleMesh.cpp123 sm->mIndexType.set((const Type *)idx);
124 sm->mPrimitiveType.set((const Type *)prim);
127 sm->mVertexTypes = new ObjectBaseRef<const Type>[vtxCount];
130 sm->mVertexTypes[ct].set((const Type *)vtx[ct]);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DStubMethodAdapter.java24 import org.objectweb.asm.Type;
38 private Type mReturnType;
51 public StubMethodAdapter(MethodVisitor mv, String methodName, Type returnType,
78 int sort = mReturnType != null ? mReturnType.getSort() : Type.VOID;
80 case Type.VOID:
87 case Type.BOOLEAN:
88 case Type.CHAR:
89 case Type.BYTE:
90 case Type.SHORT:
91 case Type
[all...]
H A DDelegateMethodAdapter.java28 import org.objectweb.asm.Type;
87 * @param desc A method descriptor (c.f. {@link Type#getReturnType(String)} +
88 * {@link Type#getArgumentTypes(String)})
155 Type.getObjectType(Type.getInternalName(LayoutlibDelegate.class)).toString(),
166 ArrayList<Type> paramTypes = new ArrayList<Type>();
180 Type outerType = Type.getObjectType(outerClass);
202 paramTypes.add(Type
[all...]
H A DRenameClassAdapter.java26 import org.objectweb.asm.Type;
79 return renameType(Type.getType(desc));
87 String renameType(Type type) {
92 if (type.getSort() == Type.OBJECT) {
95 } else if (type.getSort() == Type.ARRAY) {
109 * This is like renameType() except that it returns a Type object.
112 Type renameTypeAsType(Type type) {
117 if (type.getSort() == Type.OBJECT) {
121 return Type
[all...]
H A DTransformClassAdapter.java24 import org.objectweb.asm.Type;
106 Type t = Type.getReturnType(desc);
107 if (t.getSort() == Type.OBJECT) {
165 * Extracts the return {@link Type} of this descriptor.
167 Type returnType(String desc) {
170 return Type.getReturnType(desc);
/frameworks/base/tools/aidl/
H A DAST.h12 class Type;
38 virtual void GatherTypes(set<Type*>* types) const = 0;
59 Type* type;
64 Variable(Type* type, const string& name);
65 Variable(Type* type, const string& name, int dimension);
68 virtual void GatherTypes(set<Type*>* types) const;
76 Type* clazz;
80 FieldVariable(Type* clazz, const string& name);
97 virtual void GatherTypes(set<Type*>* types) const;
132 Type* cas
[all...]
H A DType.h10 class Type class
26 Type(const string& name, int kind, bool canWriteToParcel,
28 Type(const string& package, const string& name,
31 virtual ~Type();
67 Type();
68 Type(const Type&);
80 class BasicType : public Type
111 class BooleanType : public Type
131 class CharType : public Type
[all...]
H A DType.cpp1 #include "Type.h"
5 Type* VOID_TYPE;
6 Type* BOOLEAN_TYPE;
7 Type* BYTE_TYPE;
8 Type* CHAR_TYPE;
9 Type* INT_TYPE;
10 Type* LONG_TYPE;
11 Type* FLOAT_TYPE;
12 Type* DOUBLE_TYPE;
13 Type* STRING_TYP
132 Type::Type(const string& name, int kind, bool canWriteToParcel, bool canBeOut) function in class:Type
144 Type::Type(const string& package, const string& name, function in class:Type
[all...]
H A DAndroid.mk19 Type.cpp \
/frameworks/base/tools/preload/
H A DRecord.java35 enum Type { enum in class:Record
64 /** Type of record. */
65 final Type type;
82 case '>': type = Type.START_LOAD; break;
83 case '<': type = Type.END_LOAD; break;
84 case '+': type = Type.START_INIT; break;
85 case '-': type = Type.END_INIT; break;
H A DOperation.java29 * Type of operation.
31 enum Type { enum in class:Operation
44 /** Type of operation. */
45 final Type type;
58 int index, Type type) {
/frameworks/base/graphics/java/android/renderscript/
H A DProgram.java36 Type mConstants[];
74 Type mConstants[];
75 Type mTextures[];
87 mConstants = new Type[MAX_CONSTANT];
114 public int addConstant(Type t) throws IllegalStateException {
136 p.mConstants = new Type[mConstantCount];
H A DType.java25 public class Type extends BaseObj { class in inherits:BaseObj
97 Type(int id, RenderScript rs) { method in class:Type
111 public static Type createFromClass(RenderScript rs, Class c, int size) {
115 Type t = b.create();
149 public static Type createFromClass(RenderScript rs, Class c, int size, String scriptName) {
150 Type t = createFromClass(rs, c, size);
192 static synchronized Type internalCreate(RenderScript rs, Builder b) {
199 return new Type(id, rs);
202 public Type create() {
203 Type
[all...]
H A DSimpleMesh.java27 Type[] mVertexTypes;
28 Type mIndexType;
29 //Type mBatcheType;
57 public Type getVertexType(int slot) {
61 public Type getIndexType() {
69 Type t;
88 public int addVertexType(Type t) throws IllegalStateException {
113 public void setIndexType(Type t) {
130 Type newType(Element e, int size) {
131 Type
[all...]
H A DScript.java26 Type[] mTypes;
82 Type[] mTypes;
90 mTypes = new Type[MAX_SLOT];
96 public void setType(Type t, int slot) {
101 public void setType(Type t, String name, int slot) {
H A DAllocation.java34 Type mType;
37 Allocation(int id, RenderScript rs, Type t) {
43 public Type getType() {
240 static public Allocation createTyped(RenderScript rs, Type type)
245 throw new IllegalStateException("Bad Type");
255 Type.Builder b = new Type.Builder(rs, e);
257 Type t = b.create();
283 static private Type typeFromBitmap(RenderScript rs, Bitmap b) {
285 Type
[all...]
/frameworks/base/media/libeffects/lvm/lib/StereoWidening/src/
H A DLVCS_Init.c81 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_SLOW_DATA].Type = LVCS_PERSISTENT;
88 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_DATA].Type = LVCS_DATA;
95 pMemoryTable->Region[LVCS_MEMREGION_PERSISTENT_FAST_COEF].Type = LVCS_COEFFICIENT;
103 pMemoryTable->Region[LVCS_MEMREGION_TEMPORARY_FAST].Type = LVCS_SCRATCH;
/frameworks/base/include/media/stagefright/foundation/
H A DAMessage.h69 enum Type { enum in struct:android::AMessage
96 Type mType;
108 const Item *findItem(const char *name, Type type) const;
/frameworks/base/core/jni/
H A Dandroid_nfc.h40 uint8_t *Type; member in struct:phFriNfc_NdefRecord

Completed in 2499 milliseconds

1234