HomeSort by relevance Sort by last modified time
    Searched refs:TypeReference (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /frameworks/base/core/java/android/hardware/camera2/marshal/
MarshalQueryable.java 18 import android.hardware.camera2.utils.TypeReference;
50 TypeReference<T> managedType, int nativeType);
62 public boolean isTypeMappingSupported(TypeReference<T> managedType, int nativeType);
Marshaler.java 18 import android.hardware.camera2.utils.TypeReference;
36 protected final TypeReference<T> mTypeReference;
46 * @param typeReference the managed type reference
56 MarshalQueryable<T> query, TypeReference<T> typeReference, int nativeType) {
57 mTypeReference = checkNotNull(typeReference, "typeReference must not be null");
60 if (!query.isTypeMappingSupported(typeReference, nativeType)) {
63 + typeReference + " and native type "
140 public TypeReference<T> getTypeReference()
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraUtilsTypeReferenceTest.java 19 import static android.hardware.camera2.utils.TypeReference.*;
21 import android.hardware.camera2.utils.TypeReference;
100 private static <T> TypeReference<T> createTypeRefWithTypeVar() {
101 return new TypeReference<T>() {{ }};
106 TypeReference<Integer> typeRefInt = new TypeReference<Integer>() {{ }};
107 TypeReference<Integer> typeRefInt2 = new TypeReference<Integer>() {{ }};
113 TypeReference<Float> typeRefFloat = new TypeReference<Float>() {{ }}
    [all...]
  /art/libdexfile/dex/
type_reference.h 32 class TypeReference : public DexFileReference {
34 TypeReference(const DexFile* file, dex::TypeIndex index)
44 bool operator()(const TypeReference& tr1, const TypeReference& tr2) const {
  /external/skia/src/sksl/ir/
SkSLTypeReference.h 20 struct TypeReference : public Expression {
21 TypeReference(const Context& context, int offset, const Type& type)
  /external/skqp/src/sksl/ir/
SkSLTypeReference.h 20 struct TypeReference : public Expression {
21 TypeReference(const Context& context, int offset, const Type& type)
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
TypeSection.java 34 import org.jf.dexlib2.iface.reference.TypeReference;
38 public interface TypeSection<StringKey, TypeKey, TypeRef extends TypeReference> extends NullableIndexSection<TypeKey> {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
ImmutableTypeReference.java 36 import org.jf.dexlib2.iface.reference.TypeReference;
51 public static ImmutableTypeReference of(@Nonnull TypeReference typeReference) {
52 if (typeReference instanceof ImmutableTypeReference) {
53 return (ImmutableTypeReference)typeReference;
55 return new ImmutableTypeReference(typeReference.getType());
61 public static ImmutableList<ImmutableTypeReference> immutableListOf(@Nullable List<? extends TypeReference> list) {
65 private static final ImmutableConverter<ImmutableTypeReference, TypeReference> CONVERTER =
66 new ImmutableConverter<ImmutableTypeReference, TypeReference>() {
68 protected boolean isImmutable(@Nonnull TypeReference item)
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
BaseTypeReference.java 34 import org.jf.dexlib2.iface.reference.TypeReference;
38 public abstract class BaseTypeReference implements TypeReference {
47 if (o instanceof TypeReference) {
48 return getType().equals(((TypeReference)o).getType());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
ExceptionHandler.java 34 import org.jf.dexlib2.iface.reference.TypeReference;
53 * @return A TypeReference to the type of exception that is handled by this handler, or null if this is a
56 @Nullable TypeReference getExceptionTypeReference();
MethodParameter.java 35 import org.jf.dexlib2.iface.reference.TypeReference;
44 * It also acts as a TypeReference to the type of this parameter. Any equality/comparison is based on its identity as a
45 * TypeReference, and should not take into account any details other than the parameter type.
50 public interface MethodParameter extends TypeReference, LocalInfo {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/debug/
StartLocal.java 35 import org.jf.dexlib2.iface.reference.TypeReference;
43 @Nullable TypeReference getTypeReference();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
TypePool.java 34 import org.jf.dexlib2.iface.reference.TypeReference;
41 implements TypeSection<CharSequence, CharSequence, TypeReference> {
62 @Override public int getItemIndex(@Nonnull TypeReference key) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/debug/
BuilderStartLocal.java 38 import org.jf.dexlib2.iface.reference.TypeReference;
45 @Nullable private final TypeReference type;
50 @Nullable TypeReference type,
61 @Nullable @Override public TypeReference getTypeReference() { return type; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/reference/
TypeReference.java 40 * When possible, elsewhere in the interface, a type is referenced directly as a String. A TypeReference is only used
47 * calling toString() on a TypeReference yields the type descriptor as a String. This is the same value returned by
50 public interface TypeReference extends Reference, CharSequence, Comparable<CharSequence> {
61 * Returns a hashcode for this TypeReference.
65 * @return The hash code value for this TypeReference
70 * Compares this TypeReference to another TypeReference, or more generally to another CharSequence for equality.
72 * This TypeReference is equal to a CharSequence iff this.getType().equals(other.toString()).
74 * Equivalently, This TypeReference is equal to another TypeReference iff this.getType().equals(other.getType())
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableBlackLevelPattern.java 21 import android.hardware.camera2.utils.TypeReference;
35 protected MarshalerBlackLevelPattern(TypeReference<BlackLevelPattern> typeReference,
37 super(MarshalQueryableBlackLevelPattern.this, typeReference, nativeType);
66 TypeReference<BlackLevelPattern> managedType, int nativeType) {
72 TypeReference<BlackLevelPattern> managedType, int nativeType) {
MarshalQueryableBoolean.java 23 import android.hardware.camera2.utils.TypeReference;
33 protected MarshalerBoolean(TypeReference<Boolean> typeReference, int nativeType) {
34 super(MarshalQueryableBoolean.this, typeReference, nativeType);
55 public Marshaler<Boolean> createMarshaler(TypeReference<Boolean> managedType,
61 public boolean isTypeMappingSupported(TypeReference<Boolean> managedType, int nativeType) {
MarshalQueryableColorSpaceTransform.java 21 import android.hardware.camera2.utils.TypeReference;
39 protected MarshalerColorSpaceTransform(TypeReference<ColorSpaceTransform> typeReference,
41 super(MarshalQueryableColorSpaceTransform.this, typeReference, nativeType);
73 TypeReference<ColorSpaceTransform> managedType, int nativeType) {
79 TypeReference<ColorSpaceTransform> managedType, int nativeType) {
MarshalQueryableNativeByteToInteger.java 23 import android.hardware.camera2.utils.TypeReference;
35 protected MarshalerNativeByteToInteger(TypeReference<Integer> typeReference,
37 super(MarshalQueryableNativeByteToInteger.this, typeReference, nativeType);
58 public Marshaler<Integer> createMarshaler(TypeReference<Integer> managedType,
64 public boolean isTypeMappingSupported(TypeReference<Integer> managedType, int nativeType) {
MarshalQueryableRect.java 21 import android.hardware.camera2.utils.TypeReference;
35 protected MarshalerRect(TypeReference<Rect> typeReference,
37 super(MarshalQueryableRect.this, typeReference, nativeType);
68 public Marshaler<Rect> createMarshaler(TypeReference<Rect> managedType, int nativeType) {
73 public boolean isTypeMappingSupported(TypeReference<Rect> managedType, int nativeType) {
MarshalQueryableRggbChannelVector.java 21 import android.hardware.camera2.utils.TypeReference;
35 protected MarshalerRggbChannelVector(TypeReference<RggbChannelVector> typeReference,
37 super(MarshalQueryableRggbChannelVector.this, typeReference, nativeType);
65 TypeReference<RggbChannelVector> managedType, int nativeType) {
71 TypeReference<RggbChannelVector> managedType, int nativeType) {
MarshalQueryableSize.java 21 import android.hardware.camera2.utils.TypeReference;
35 protected MarshalerSize(TypeReference<Size> typeReference, int nativeType) {
36 super(MarshalQueryableSize.this, typeReference, nativeType);
60 public Marshaler<Size> createMarshaler(TypeReference<Size> managedType, int nativeType) {
65 public boolean isTypeMappingSupported(TypeReference<Size> managedType, int nativeType) {
MarshalQueryableSizeF.java 20 import android.hardware.camera2.utils.TypeReference;
37 protected MarshalerSizeF(TypeReference<SizeF> typeReference, int nativeType) {
38 super(MarshalQueryableSizeF.this, typeReference, nativeType);
63 TypeReference<SizeF> managedType, int nativeType) {
68 public boolean isTypeMappingSupported(TypeReference<SizeF> managedType, int nativeType) {
MarshalQueryableStreamConfiguration.java 21 import android.hardware.camera2.utils.TypeReference;
39 protected MarshalerStreamConfiguration(TypeReference<StreamConfiguration> typeReference,
41 super(MarshalQueryableStreamConfiguration.this, typeReference, nativeType);
71 TypeReference<StreamConfiguration> managedType, int nativeType) {
76 public boolean isTypeMappingSupported(TypeReference<StreamConfiguration> managedType,
MarshalQueryableStreamConfigurationDuration.java 21 import android.hardware.camera2.utils.TypeReference;
49 TypeReference<StreamConfigurationDuration> typeReference, int nativeType) {
50 super(MarshalQueryableStreamConfigurationDuration.this, typeReference, nativeType);
79 TypeReference<StreamConfigurationDuration> managedType, int nativeType) {
84 public boolean isTypeMappingSupported(TypeReference<StreamConfigurationDuration> managedType,

Completed in 679 milliseconds

1 2 3 4 5 6 7