Home | History | Annotate | Download | only in marshal

Lines Matching refs:typeReference

19 import android.hardware.camera2.utils.TypeReference;
56 public static <T> Marshaler<T> getMarshaler(TypeReference<T> typeToken, int nativeType) {
101 public MarshalToken(TypeReference<T> typeReference, int nativeType) {
102 this.typeReference = typeReference;
104 this.hash = typeReference.hashCode() ^ nativeType;
107 final TypeReference<T> typeReference;
115 return typeReference.equals(otherToken.typeReference) &&