Home
last modified time | relevance | path

Searched refs:bindTy (Results 1 – 3 of 3) sorted by relevance

/external/turbine/java/com/google/turbine/binder/bytecode/
DBytecodeBinder.java65 tyArgs.add(bindTy(arg, scope)); in bindClassTy()
80 bindTy(((LowerBoundTySig) sig).bound(), scope), ImmutableList.of()); in wildTy()
83 bindTy(((UpperBoundTySig) sig).bound(), scope), ImmutableList.of()); in wildTy()
88 static Type bindTy(Sig.TySig sig, Function<String, TyVarSymbol> scope) { in bindTy() method in BytecodeBinder
107 return Type.ArrayTy.create(bindTy(arrayTySig.elementType(), scope), ImmutableList.of()); in bindArrayTy()
120 bindTy( in bindValue()
DBytecodeBoundClass.java331 bounds.add(BytecodeBinder.bindTy(sig.classBound(), scope)); in bindTyParam()
334 bounds.add(BytecodeBinder.bindTy(t, scope)); in bindTyParam()
354 BytecodeBinder.bindTy(
417 ret = BytecodeBinder.bindTy(sig.returnType(), scope); in bindMethod()
441 BytecodeBinder.bindTy(tySig, scope), in bindMethod()
450 exceptions.add(BytecodeBinder.bindTy(e, scope)); in bindMethod()
/external/turbine/java/com/google/turbine/binder/
DTypeBinder.java400 bounds.add(bindTy(scope, bound)); in bindTyParams()
442 returnType = bindTy(scope, t.ret().get()); in bindMethod()
465 bindTy(scope, p.ty()), in bindMethod()
549 Type type = bindTy(scope, decl.ty()); in bindField()
621 return bindTy(scope, ty); in bindTyArg()
625 private Type bindTy(CompoundScope scope, Tree t) { in bindTy() method in TypeBinder
711 return Type.ArrayTy.create(bindTy(scope, t.elem()), bindAnnotations(scope, t.annos())); in bindArrTy()
717 return Type.WildLowerBoundedTy.create(bindTy(scope, t.lower().get()), annotations); in bindWildTy()
719 return Type.WildUpperBoundedTy.create(bindTy(scope, t.upper().get()), annotations); in bindWildTy()