Searched defs:Type (Results 26 - 50 of 52) sorted by last modified time

123

/frameworks/compile/mclinker/include/mcld/Script/
H A DOperator.h37 enum Type { enum in class:mcld::Operator
97 Operator(Arity pArity, Type pType);
107 Type type() const { return m_Type; }
121 template<Operator::Type TYPE>
126 Type m_Type;
H A DOutputSectDesc.h30 enum Type { enum in class:mcld::OutputSectDesc
56 void setType(Type pType) {
60 Type type() const { return m_Type; }
106 Type m_Type;
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttributeValue.h24 // Type of value that an attribute tag holds.
25 enum Type { enum in class:mcld::ELFAttributeValue
/frameworks/base/tools/aapt/
H A DResourceTable.h102 class Type;
213 const sp<Type>& t,
403 // Index of this entry in its Type.
452 class Type : public RefBase { class in class:ResourceTable
454 Type(const String16& name, const SourcePos& pos) function in class:ResourceTable::Type
457 virtual ~Type() { delete mFirstPublicSourcePos; }
514 sp<Type> getType(const String16& type,
532 const DefaultKeyedVector<String16, sp<Type> >& getTypes() const { return mTypes; }
533 const Vector<sp<Type> >& getOrderedTypes() const { return mOrderedTypes; }
544 DefaultKeyedVector<String16, sp<Type> > mType
[all...]
/frameworks/base/tools/aidl/
H A DType.cpp1 #include "Type.h"
7 Type* VOID_TYPE;
8 Type* BOOLEAN_TYPE;
9 Type* BYTE_TYPE;
10 Type* CHAR_TYPE;
11 Type* INT_TYPE;
12 Type* LONG_TYPE;
13 Type* FLOAT_TYPE;
14 Type* DOUBLE_TYPE;
15 Type* STRING_TYP
161 Type::Type(const string& name, int kind, bool canWriteToParcel, bool canWriteToRpcData, function in class:Type
175 Type::Type(const string& package, const string& name, function in class:Type
[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();
74 Type();
75 Type(const Type&);
88 class BasicType : public Type
135 class BooleanType : public Type
160 class CharType : public Type
[all...]
/frameworks/base/tools/preload/
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) {
H A DRecord.java65 enum Type { enum in class:Record
94 /** Type of record. */
95 final Type type;
112 case '>': type = Type.START_LOAD; break;
113 case '<': type = Type.END_LOAD; break;
114 case '+': type = Type.START_INIT; break;
115 case '-': type = Type.END_INIT; break;
/frameworks/base/rs/java/android/renderscript/
H A DType.java20 * <p>A Type describes the {@link android.renderscript.Element} and dimensions used for an {@link
22 * android.renderscript.Type.Builder}.</p>
24 * <p>A Type always includes an {@link android.renderscript.Element} and an X
25 * dimension. A Type may be multidimensional, up to three dimensions. A nonzero
27 * that a Type with only a given X dimension and a Type with the same X
30 * <p>A Type also supports inclusion of level of detail (LOD) or cube map
34 * <p>A Type also supports YUV format information to support an
46 public class Type extends BaseObj { class in inherits:BaseObj
77 * Return the element associated with this Type
187 Type(long id, RenderScript rs) { method in class:Type
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DAtlas.java46 public enum Type { enum in class:Atlas
80 * {@link #Atlas(Atlas.Type, int, int, int)} with {@link #FLAG_DEFAULTS}.
86 * @see #Atlas(Atlas.Type, int, int, int)
88 public Atlas(Type type, int width, int height) {
103 * @see #Atlas(Atlas.Type, int, int)
105 public Atlas(Type type, int width, int height, int flags) {
142 private static Policy findPolicy(Type type, int width, int height, int flags) {
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp2869 struct ResTable::Type struct in class:android::ResTable
2871 Type(const Header* _header, const Package* _package, size_t count) function in struct:android::ResTable::Type
3267 ALOGI(" Type #0x%02x:\n", (int)(j + 1));
3807 ALOGW("Type identifier 0x%x does not exist.", t+1);
4226 const Type* t = typeList[i];
4861 //printf("Pkg: %s, Type: %s, Name: %s\n",
5351 const Type* type = typeList[k];
5492 const Type* const typeSpec = typeList[i];
5778 const Type* existingType = typeList[0];
5787 Type*
[all...]
/frameworks/base/libs/hwui/
H A DLayer.h57 enum Type { enum in class:android::uirenderer::Layer
73 Layer(Type type, RenderState& renderState, const uint32_t layerWidth, const uint32_t layerHeight);
372 const Type type;
H A DMatrix.h68 enum Type { enum in class:android::uirenderer::Matrix4
H A DTessellationCache.h50 enum Type { enum in struct:android::uirenderer::TessellationCache::Description
55 Type type;
72 Description(Type type, const Matrix4& transform, const SkPaint& paint);
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java655 public enum Type { enum in class:AbstractMessageParser.Token
673 Type(String stringRep) { method in class:AbstractMessageParser.Token.Type
683 protected Type type;
686 protected Token(Type type, String text) {
692 public Type getType() { return type; }
725 super(Type.HTML, text);
773 super(Type.MUSIC, track);
793 super(Type.LINK, text);
819 super(Type.GOOGLE_VIDEO, text);
878 super(Type
[all...]
/frameworks/base/core/jni/
H A Dandroid_nfc.h40 uint8_t *Type; member in struct:phFriNfc_NdefRecord
/frameworks/av/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 kPauseAvailable = 1; // Boolean
56 static const Type kSeekBackwardAvailable = 2; // Boolean
57 static const Type kSeekForwardAvailable = 3; // Boolean
58 static const Type kSeekAvailable = 4; // Boolean
61 static const Type kTitle = 5; // String
62 static const Type kComment = 6; // String
63 static const Type kCopyrigh
[all...]
/frameworks/av/include/media/stagefright/
H A DMetaData.h190 enum Type { enum in class:android::MetaData
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h99 enum Type { enum in struct:android::AMessage
114 const char *getEntryNameAt(size_t index, Type *type) const;
141 Type mType;
153 const Item *findItem(const char *name, Type type) const;
156 const char *name, const sp<RefBase> &obj, Type type);
/frameworks/av/media/libeffects/lvm/lib/Bass/lib/
H A DLVDBE.h228 LVDBE_MemoryTypes_en Type; /* Region type */ member in struct:__anon104
/frameworks/av/media/libeffects/lvm/lib/Bundle/src/
H A DLVM_Private.h128 LVM_MemoryTypes_en Type; /* Region type */ member in struct:__anon131
/frameworks/av/media/libeffects/lvm/lib/Common/lib/
H A DLVM_Types.h156 LVM_MemoryTypes_en Type; /* Region type */ member in struct:__anon160
/frameworks/av/media/libeffects/lvm/lib/Eq/lib/
H A DLVEQNB.h230 LVEQNB_MemoryTypes_en Type; /* Region type */ member in struct:__anon178
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/lib/
H A DLVPSA.h93 LVPSA_MemoryTypes_en Type; /* Region type */ member in struct:__anon198
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/lib/
H A DLVCS.h186 LVCS_MemoryTypes_en Type; /* Region type */ member in struct:__anon212

Completed in 518 milliseconds

123