Searched refs:bindTy (Results 1 – 3 of 3) sorted by relevance
/external/turbine/java/com/google/turbine/binder/bytecode/ |
D | BytecodeBinder.java | 65 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() 89 static Type bindTy(Sig.TySig sig, Function<String, TyVarSymbol> scope) { in bindTy() method in BytecodeBinder 109 return Type.ArrayTy.create(bindTy(arrayTySig.elementType(), scope), ImmutableList.of()); in bindArrayTy() 122 bindTy( in bindValue()
|
D | BytecodeBoundClass.java | 330 bounds.add(BytecodeBinder.bindTy(sig.classBound(), scope)); in bindTyParam() 333 bounds.add(BytecodeBinder.bindTy(t, scope)); in bindTyParam() 352 BytecodeBinder.bindTy( 411 ret = BytecodeBinder.bindTy(sig.returnType(), scope); in bindMethod() 428 formals.add(new ParamInfo(BytecodeBinder.bindTy(tySig, scope), name, annotations, access)); in bindMethod() 434 exceptions.add(BytecodeBinder.bindTy(e, scope)); in bindMethod()
|
/external/turbine/java/com/google/turbine/binder/ |
D | TypeBinder.java | 394 bounds.add(bindTy(scope, bound)); in bindTyParams() 433 returnType = bindTy(scope, t.ret().get()); in bindMethod() 455 bindTy(scope, p.ty()), in bindMethod() 540 Type type = bindTy(scope, decl.ty()); in bindField() 612 return bindTy(scope, ty); in bindTyArg() 616 private Type bindTy(CompoundScope scope, Tree t) { in bindTy() method in TypeBinder 702 return Type.ArrayTy.create(bindTy(scope, t.elem()), bindAnnotations(scope, t.annos())); in bindArrTy() 708 return Type.WildLowerBoundedTy.create(bindTy(scope, t.lower().get()), annotations); in bindWildTy() 710 return Type.WildUpperBoundedTy.create(bindTy(scope, t.upper().get()), annotations); in bindWildTy()
|