Searched defs:Type (Results 1 - 25 of 64) sorted by last modified time

123

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseRecyclerViewAnimationsTest.java529 public static enum Type { enum in class:BaseRecyclerViewAnimationsTest.PositionConstraint
535 Type mType;
547 constraint.mType = Type.scrap;
556 constraint.mType = Type.adapterScrap;
565 constraint.mType = Type.adapter;
597 if (mType == Type.scrap || (mType == Type.adapterScrap && !state.isPreLayout())) {
613 if (mType == Type.scrap) {
617 } else if (mType == Type.adapter || mType == Type
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DType.java26 * <p>A Type describes the {@link android.support.v8.renderscript.Element} and
29 * {@link android.support.v8.renderscript.Type.Builder}.</p>
31 * <p>A Type always includes an {@link android.support.v8.renderscript.Element}
32 * and an X dimension. A Type may be multidimensional, up to three dimensions.
34 * present. Note that a Type with only a given X dimension and a Type with the
37 * <p>A Type also supports inclusion of level of detail (LOD) or cube map
41 * <p>A Type also supports YUV format information to support an {@link
54 public class Type extends BaseObj { class in inherits:BaseObj
79 * Return the element associated with this Type
188 Type(long id, RenderScript rs) { method in class:Type
[all...]
/frameworks/rs/api/
H A DSpecification.cpp314 Type::~Type() {
401 Type* type = systemSpecification.findOrCreateType(name, &created);
786 Type* type = spec->getType();
787 mDocumentedTypes.insert(pair<string, Type*>(type->getName(), type));
885 Type* SystemSpecification::findOrCreateType(const string& name, bool* created) {
886 return findOrCreate<Type>(name, &mTypes, created);
H A DSpecification.h38 class Type;
47 const char* cType; // Type in a C file
48 const char* javaType; // Type in a Java file
202 * We'll only have one instance of Type for each name.
204 class Type : public Definition { class in inherits:Definition
209 Type(const std::string& name) : Definition(name) {} function in class:Type
210 ~Type();
291 Type* mType; // Not owned
309 TypeSpecification(Type* type) : mType(type) {}
311 Type* getTyp
[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...]
H A DrsCppStructs.h46 class Type;
561 * given Type.
575 sp<const Type> mType;
597 void updateCacheInfo(sp<const Type> t);
599 Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage);
618 * Return Type for the allocation.
619 * @return pointer to underlying Type
621 sp<const Type> getType() const {
671 * Generate a mipmap chain. This is only valid if the Type of the Allocation
839 * Creates an Allocation for use by scripts with a given Type
1565 class Type : public BaseObj { class in namespace:android::RSC
[all...]
/frameworks/rs/driver/runtime/
H A Drs_structs.h59 uint32_t originArray[4/*Type::mMaxArrays*/];
80 uint32_t dimArray[4/*Type::mMaxArrays*/];
231 * internal members of the C++ class Type owned by librs. Unfortunately,
244 typedef struct Type { struct
/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/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DCivicLocationElement.java149 Type, enum constant in enum:CivicLocationElement.CAType
185 s_caTypes.put(TYPE, CAType.Type);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/configparse/
H A DMIMEContainer.java19 private static final String Type = "Content-Type"; field in class:MIMEContainer
46 List<String> type = headers.get(Type);
48 throw new IOException("Missing " + Type + " @ " + in.getLineNumber());
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/native/include/media/hardware/
H A DVideoAPI.h29 enum Type { enum in struct:android::MediaImage
41 Type mType;
61 enum Type : uint32_t {
81 Type mType;
195 kType1 = 0, // Static Metadata Type 1
204 // Static Metadata Descriptor Type 1
227 inline static const char *asString(MediaImage::Type i, const char *def = "??") {
244 inline static const char *asString(MediaImage2::Type i, const char *def = "??") {
257 MediaImage2::PlaneIndex i, MediaImage2::Type j, char def = '?') {
/frameworks/native/vulkan/libvulkan/
H A Ddriver_gen.h30 enum Type { enum in struct:vulkan::driver::ProcHook
48 Type type;
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessage.java36 Type mBmsgType;
53 public enum Type { enum in class:BluetoothMapBmessage
100 public Type getType() {
104 public BluetoothMapBmessage setType(Type type) {
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...]
H A DBluetoothMapMessage.java51 private final Type mType;
69 public enum Type { enum in class:BluetoothMapMessage
148 private Type strToType(String s) {
150 return Type.EMAIL;
152 return Type.SMS_GSM;
154 return Type.SMS_CDMA;
156 return Type.MMS;
159 return Type.UNKNOWN;
268 * @return {@link Type} object corresponding to <code>type</code> parameter
271 public Type getTyp
[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. ...
/frameworks/compile/slang/
H A Dslang_rs_context.h259 void insertExportReduceResultType(RSExportType *Type) { mExportReduceResultType.insert(Type); } argument
293 // Insert the specified Typename/Type pair into the map. If the key already
296 bool insertExportType(const llvm::StringRef &TypeName, RSExportType *Type);
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/compile/mclinker/include/mcld/ADT/
H A DStringHash.h22 enum Type { RS, JS, PJW, ELF, BKDR, SDBM, DJB, DEK, BP, FNV, AP, ES }; enum in namespace:mcld::hash
/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;

Completed in 542 milliseconds

123