Searched defs:Type (Results 1 - 25 of 68) sorted by relevance

123

/frameworks/compile/mclinker/include/mcld/LD/
H A DRelocationFactory.h28 typedef Relocation::Type Type; typedef in class:mcld::RelocationFactory
43 Relocation* produce(Type pType, FragmentRef& pFragRef, Address pAddend = 0);
H A DRelocator.h26 typedef Relocation::Type Type; typedef in class:mcld::Relocator
98 virtual const char* getName(Type pType) const = 0;
101 virtual Size getSize(Type pType) const = 0;
/frameworks/compile/mclinker/include/mcld/Script/
H A DInputToken.h22 enum Type { Unknown, File, NameSpec }; enum in class:mcld::InputToken
26 InputToken(Type pType, const std::string& pName, bool pAsNeeded);
31 Type type() const { return m_Type; }
40 Type m_Type;
H A DAssignment.h33 enum Type { DEFAULT, HIDDEN, PROVIDE, PROVIDE_HIDDEN }; enum in class:mcld::Assignment
36 Assignment(Level pLevel, Type pType, SymOperand& pSymbol, RpnExpr& pRpnExpr);
44 Type type() const { return m_Type; }
65 Type m_Type;
H A DOperand.h31 enum Type { SYMBOL, INTEGER, SECTION, SECTION_DESC, FRAGMENT }; enum in class:mcld::Operand
34 explicit Operand(Type pType);
38 Type type() const { return m_Type; }
49 Type m_Type;
/frameworks/av/include/media/
H A DMediaResource.h28 enum Type { enum in class:android::MediaResource
42 MediaResource(Type type, uint64_t value);
43 MediaResource(Type type, SubType subType, uint64_t value);
53 Type mType;
58 inline static const char *asString(MediaResource::Type i, const char *def = "??") {
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/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/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h34 typedef uint32_t Type; typedef in class:mcld::Relocation
40 Relocation(Type pType,
61 static Relocation* Create(Type pType,
69 Type type() const { return m_Type; }
102 void setType(Type pType);
110 Type m_Type;
H A DFragment.h29 enum Type { Alignment, Fillment, Region, Target, Stub, Null }; enum in class:mcld::Fragment
34 explicit Fragment(Type pKind, SectionData* pParent = NULL);
38 Type getKind() const { return m_Kind; }
59 Type m_Kind;
H A DStub.h32 typedef Relocation::Type Type; typedef in class:mcld::Stub
36 Fixup(DWord pOffset, SWord pAddend, Type pType)
45 Type type() const { return m_Type; }
50 Type m_Type;
129 void addFixup(DWord pOffset, SWord pAddend, Type pType);
/frameworks/compile/slang/
H A Dslang_rs_reflection_cpp.h40 std::string Type; member in struct:slang::RSReflectionCpp::Argument
43 Argument(std::string Type, std::string Name, std::string DefaultValue = "") argument
44 : Type(Type), Name(Name), DefaultValue(DefaultValue) {}
H A Dslang_rs_special_kernel_param.cpp117 const clang::QualType Type = PVD->getType(); local
118 const clang::QualType QT = Type.getCanonicalType();
185 << ParamName << Type.getAsString();
191 if (Type != FirstLocationSpecialParameterType) {
198 << Type.getAsString();
203 FirstLocationSpecialParameterType = Type;
213 << Type.getAsString();
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DCallable.java20 public enum Type { enum in class:Callable
29 public final Type type;
41 public Callable(Type type, String name, String setterName, ModelClass resolvedType,
/frameworks/rs/
H A DrsType.cpp30 Type::Type(Context *rsc) : ObjectBase(rsc) { function in class:Type
35 void Type::preDestroy() const {
44 Type::~Type() {
48 void Type::operator delete(void* ptr) {
50 Type *t = (Type*) ptr;
55 void Type::clear() {
75 void Type
[all...]
H A DrsType.h34 class Type : public ObjectBase { class in namespace:android::renderscript
64 Type * createTex2D(const Element *, size_t w, size_t h, bool mip);
106 static Type *createFromStream(Context *rsc, IStream *stream);
108 ObjectBaseRef<Type> cloneAndResize1D(Context *rsc, uint32_t dimX) const;
109 ObjectBaseRef<Type> cloneAndResize2D(Context *rsc, uint32_t dimX, uint32_t dimY) const;
111 static ObjectBaseRef<Type> getTypeRef(Context *rsc, const Element *e,
114 static Type* getType(Context *rsc, const Element *e,
116 ObjectBaseRef<Type> type = getTypeRef(rsc, e, params, len);
121 static ObjectBaseRef<Type> getTypeRef(Context *rsc, const Element *e, uint32_t dimX, uint32_t dimY = 0) {
150 virtual ~Type();
[all...]
/frameworks/base/libs/hwui/
H A DOutline.h29 enum class Type { class in class:android::uirenderer::Outline
38 , mType(Type::None)
44 if (mType == Type::RoundRect
54 mType = Type::RoundRect;
73 mType = Type::ConvexPath;
80 mType = Type::Empty;
86 mType = Type::None;
92 return mType == Type::Empty;
109 return mShouldClip && (mType == Type::RoundRect);
118 if (mType == Type
[all...]
/frameworks/compile/mclinker/include/mcld/MC/
H A DSymbolCategory.h126 enum Type { File, Local, LocalDyn, Common, Dynamic, Regular }; enum in class:mcld::SymbolCategory::Category
129 Type type;
138 explicit Category(Type pType)
149 static Type categorize(const ResolveInfo& pInfo);
153 SymbolCategory& add(LDSymbol& pSymbol, Category::Type pTarget);
156 Category::Type pSource,
157 Category::Type pTarget);
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFAttributeValue.h22 // Type of value that an attribute tag holds.
23 enum Type { enum in class:mcld::ELFAttributeValue
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapEventReport.java41 public enum Type { enum in class:BluetoothMapEventReport
50 private Type(String specName) { method in class:BluetoothMapEventReport.Type
60 private final Type mType;
68 private final BluetoothMapBmessage.Type mMsgType;
73 if (mType != Type.MEMORY_FULL && mType != Type.MEMORY_AVAILABLE) {
91 if (mType != Type.MEMORY_FULL && mType != Type.MEMORY_AVAILABLE) {
107 private Type parseType(String type) throws IllegalArgumentException {
108 for (Type
[all...]
/frameworks/rs/cpp/
H A DType.cpp32 void Type::calcElementCount() {
69 Type::Type(void *id, sp<RS> rs) : BaseObj(id, rs) { function in class:Type
79 void Type::updateFromNative() {
110 sp<const Type> Type::create(sp<RS> rs, sp<const Element> e, uint32_t dimX, uint32_t dimY, uint32_t dimZ) {
112 Type *t = new Type(id, rs);
127 Type::Builder::Builder(sp<RS> rs, sp<const Element> e) {
138 void Type
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h166 enum Type { enum in struct:android::AMessage
181 const char *getEntryNameAt(size_t index, Type *type) const;
215 Type mType;
227 const Item *findItem(const char *name, Type type) const;
230 const char *name, const sp<RefBase> &obj, Type type);
/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/lib/
H A DLVPSA.h93 LVPSA_MemoryTypes_en Type; /* Region type */ member in struct:__anon214
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/lib/
H A DLVCS.h186 LVCS_MemoryTypes_en Type; /* Region type */ member in struct:__anon228

Completed in 5163 milliseconds

123