Home | History | Annotate | Download | only in marshal

Lines Matching defs:typeReference

19 import android.hardware.camera2.utils.TypeReference;
58 public static <T> Marshaler<T> getMarshaler(TypeReference<T> typeToken, int nativeType) {
106 public MarshalToken(TypeReference<T> typeReference, int nativeType) {
107 this.typeReference = typeReference;
109 this.hash = typeReference.hashCode() ^ nativeType;
112 final TypeReference<T> typeReference;
120 return typeReference.equals(otherToken.typeReference) &&