Home
last modified time | relevance | path

Searched refs:WildUpperBoundedTy (Results 1 – 10 of 10) sorted by relevance

/external/turbine/javatests/com/google/turbine/lower/
DLowerSignatureTest.java34 import com.google.turbine.type.Type.WildUpperBoundedTy;
122 WildUpperBoundedTy.create( in wildcard()
/external/turbine/javatests/com/google/turbine/processing/
DTurbineTypesFactoryTest.java37 import com.google.turbine.type.Type.WildUpperBoundedTy;
119 .asTypeMirror(WildUpperBoundedTy.create(ClassTy.STRING, ImmutableList.of())) in wildcardType()
DTurbineTypeMirrorTest.java105 Type.WildUpperBoundedTy.create( in equals()
170 Type.WildUpperBoundedTy.create( in wildTy()
/external/turbine/java/com/google/turbine/type/
DType.java357 abstract class WildUpperBoundedTy extends WildTy { class
359 public static WildUpperBoundedTy create(Type bound, ImmutableList<AnnoInfo> annotations) { in create()
/external/turbine/java/com/google/turbine/binder/
DConstBinder.java55 import com.google.turbine.type.Type.WildUpperBoundedTy;
331 return WildUpperBoundedTy.create( in bindType()
DTypeBinder.java719 return Type.WildUpperBoundedTy.create(bindTy(scope, t.upper().get()), annotations); in bindWildTy()
/external/turbine/java/com/google/turbine/types/
DCanonicalize.java317 return Type.WildUpperBoundedTy.create( in instantiateWildTy()
375 return Type.WildUpperBoundedTy.create(canonicalize(base, type.bound()), type.annotations()); in canonicalizeWildTy()
/external/turbine/java/com/google/turbine/binder/bytecode/
DBytecodeBinder.java82 return Type.WildUpperBoundedTy.create( in wildTy()
/external/turbine/java/com/google/turbine/lower/
DLowerSignature.java119 return new UpperBoundTySig(signature(((Type.WildUpperBoundedTy) ty).bound())); in wildTy()
/external/turbine/java/com/google/turbine/processing/
DTurbineTypes.java574 return Type.WildUpperBoundedTy.create(subst(type.bound(), mapping), ImmutableList.of()); in substWildTy()
1027 type = WildTy.WildUpperBoundedTy.create(asTurbineType(extendsBound), ImmutableList.of());