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

1234567891011>>

/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...]
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 = "??") {
/frameworks/base/libs/hwui/utils/
H A DMacros.h21 #define PREVENT_COPY_AND_ASSIGN(Type) \
23 Type(const Type&) = delete; \
24 void operator=(const Type&) = delete
26 #define HASHABLE_TYPE(Type) \
27 bool operator==(const Type& other) const; \
29 bool operator!=(const Type& other) const { return !(*this == other); } \
30 friend inline hash_t hash_type(const Type& entry) { return entry.hash(); }
32 #define REQUIRE_COMPATIBLE_LAYOUT(Type) \
33 static_assert(std::is_standard_layout<Type>
[all...]
/frameworks/base/libs/hwui/
H A DBakedOpDispatcher.h37 #define X(Type) \
38 static void onMerged##Type##s(BakedOpRenderer& renderer, const MergedBakedOpList& opList);
43 #define X(Type) \
44 static void on##Type(BakedOpRenderer& renderer, const Type& op, const BakedOpState& state);
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/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;
/frameworks/rs/driver/
H A DrsdType.h24 const android::renderscript::Type *);
27 const android::renderscript::Type *);
30 const android::renderscript::Type *,
H A DrsdType.cpp36 bool rsdTypeInit(const Context *, const Type *t) {
40 void rsdTypeDestroy(const Context *rsc, const Type *t) {
44 const Type *t,
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/config/
H A Daudio_policy_criteria.conf39 # Type <Criterion type name>
105 Type InputDevicesMaskType
109 Type OutputDevicesMaskType
113 Type AndroidModeType
117 Type ForceUseForCommunicationType
121 Type ForceUseForMediaType
125 Type ForceUseForRecordType
129 Type ForceUseForDockType
133 Type ForceUseForSystemType
137 Type ForceUseForHdmiSystemAudioTyp
[all...]
/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);
/frameworks/compile/mclinker/include/mcld/Fragment/
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 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;
/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/av/services/audiopolicy/common/managerdefinitions/include/
H A DTypeConverter.h32 typedef uint32_t Type; typedef in struct:android::SampleRateTraits
33 typedef SortedVector<Type> Collection;
37 typedef audio_devices_t Type; typedef in struct:android::DeviceTraits
38 typedef Vector<Type> Collection;
42 typedef audio_output_flags_t Type; typedef in struct:android::OutputFlagTraits
43 typedef Vector<Type> Collection;
47 typedef audio_input_flags_t Type; typedef in struct:android::InputFlagTraits
48 typedef Vector<Type> Collection;
52 typedef audio_format_t Type; typedef in struct:android::FormatTraits
53 typedef Vector<Type> Collectio
57 typedef audio_channel_mask_t Type; typedef in struct:android::ChannelTraits
65 typedef audio_gain_mode_t Type; typedef in struct:android::GainModeTraits
70 typedef audio_stream_type_t Type; typedef in struct:android::StreamTraits
75 typedef device_category Type; typedef in struct:android::DeviceCategoryTraits
81 typedef T Type; typedef in struct:android::DefaultTraits
[all...]
/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,
79 int sort = mReturnType != null ? mReturnType.getSort() : Type.VOID;
81 case Type.VOID:
89 case Type.BOOLEAN:
90 case Type.CHAR:
91 case Type.BYTE:
92 case Type.SHORT:
93 case Type
[all...]
H A DReplaceMethodCallsAdapter.java25 import org.objectweb.asm.Type;
55 private static final String JAVA_LOCALE_CLASS = Type.getInternalName(java.util.Locale.class);
56 private static final Type STRING = Type.getType(String.class);
58 private static final String JAVA_LANG_SYSTEM = Type.getInternalName(System.class);
80 Type.getMethodDescriptor(STRING, Type.getType(Locale.class));
100 private final String STRING_TO_STRING = Type.getMethodDescriptor(STRING, STRING);
101 private final String STRING_TO_LOCALE = Type.getMethodDescriptor(
102 Type
[all...]
/frameworks/rs/
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...]
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...]
/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/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A Dtouch_analytics.proto61 enum Type {
69 optional Type type = 1;
76 enum Type {
108 optional Type type = 1;
118 enum Type {
134 optional Type type = 11;
/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/base/tools/preload/
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/core/java/android/hardware/camera2/utils/
H A DTypeReference.java22 import java.lang.reflect.Type;
48 private final Type mType;
81 * Return the dynamic {@link Type} corresponding to the captured type {@code T}.
83 public Type getType() {
87 private TypeReference(Type type) {
104 public SpecializedBaseTypeReference(Type type) {
127 * Create a specialized type reference from a dynamic {@link Type} instance,
133 * @param type a non-{@code null} {@link Type} instance
139 public static TypeReference<?> createSpecializedTypeReference(Type type) {
162 private static final Class<?> getRawType(Type typ
[all...]
/frameworks/compile/mclinker/lib/Fragment/
H A DFragment.cpp21 : m_Kind(Type(~0)), m_pParent(NULL), m_Offset(~uint64_t(0)) {
24 Fragment::Fragment(Type pKind, SectionData* pParent)
/frameworks/compile/slang/
H A Dslang_rs_export_element.h30 class Type;
58 const clang::Type *T,

Completed in 7222 milliseconds

1234567891011>>