Searched refs:tyVar (Results 1 – 8 of 8) sorted by relevance
54 Sig.TyVarSig tyVar = (Sig.TyVarSig) tyArg; in collect() local55 assertThat(tyVar.name()).isEqualTo("E"); in collect()
235 TyVar tyVar = (TyVar) type; in addAnnotationsToType() local236 return Type.TyVar.create(tyVar.sym(), appendAnnotations(tyVar.annos(), extra)); in addAnnotationsToType()
315 TyVar tyVar = (TyVar) type; in bindType() local316 return TyVar.create(tyVar.sym(), constEvaluator.evaluateAnnotations(tyVar.annos())); in bindType()
344 TyVarInfo getTyVarInfo(TyVarSymbol tyVar) { in getTyVarInfo() argument345 Symbol owner = tyVar.owner(); in getTyVarInfo()358 return tyParams.get(tyVar); in getTyVarInfo()
727 for (TyVarSymbol tyVar : type.tyParams()) { in getTypeVariables()728 result.add((TypeVariable) factory.asTypeMirror(TyVar.create(tyVar, ImmutableList.of()))); in getTypeVariables()
302 TyVar tyVar = (TyVar) type; in instantiate() local303 if (mapping.containsKey(tyVar.sym())) { in instantiate()304 return instantiate(mapping, mapping.get(tyVar.sym())); in instantiate()
129 public void tyVar() { in tyVar() method in LowerSignatureTest
212 public void tyVar() { in tyVar() method in TurbineTypeMirrorTest