Searched refs:typarams (Results 1 – 9 of 9) sorted by relevance
/external/turbine/java/com/google/turbine/tree/ |
D | Tree.java | 786 private final ImmutableList<TyParam> typarams; field in Tree.MethDecl 798 ImmutableList<TyParam> typarams, in MethDecl() argument 808 this.typarams = typarams; in MethDecl() 836 public ImmutableList<TyParam> typarams() { in typarams() method in Tree.MethDecl 837 return typarams; in typarams() 934 private final ImmutableList<TyParam> typarams; field in Tree.TyDecl 948 ImmutableList<TyParam> typarams, in TyDecl() argument 960 this.typarams = typarams; in TyDecl() 993 public ImmutableList<TyParam> typarams() { in typarams() method in Tree.TyDecl 994 return typarams; in typarams()
|
D | Pretty.java | 327 if (!methDecl.typarams().isEmpty()) { in visitMethDecl() 330 for (Tree.TyParam t : methDecl.typarams()) { in visitMethDecl() 423 if (!tyDecl.typarams().isEmpty()) { in visitTyDecl() 426 for (Tree.TyParam t : tyDecl.typarams()) { in visitTyDecl()
|
/external/turbine/java/com/google/turbine/lower/ |
D | LowerSignature.java | 136 ImmutableList<Sig.TyParamSig> typarams = tyParamSig(method.tyParams(), env); in methodSignature() local 158 MethodSig sig = new MethodSig(typarams, fparams.build(), ret, excn.build()); in methodSignature() 200 ImmutableList<Sig.TyParamSig> typarams = tyParamSig(info.typeParameterTypes(), env); in classSignature() local 206 ClassSig sig = new ClassSig(typarams, xtnd, impl.build()); in classSignature()
|
D | Lower.java | 420 ImmutableList<Sig.TyParamSig> typarams = ImmutableList.of(); in methodDescriptor() local 427 return SigWriter.method(new MethodSig(typarams, fparams.build(), result, excns)); in methodDescriptor()
|
/external/turbine/java/com/google/turbine/parse/ |
D | Parser.java | 259 ImmutableList<TyParam> typarams; in recordDeclaration() local 261 typarams = typarams(); in recordDeclaration() 263 typarams = ImmutableList.of(); in recordDeclaration() 286 typarams, in recordDeclaration() 301 ImmutableList<TyParam> typarams; in interfaceDeclaration() local 303 typarams = typarams(); in interfaceDeclaration() 305 typarams = ImmutableList.of(); in interfaceDeclaration() 331 typarams, in interfaceDeclaration() 603 tyParams = typarams(); in classDeclaration() 802 typaram = typarams(); in classMember() [all …]
|
/external/turbine/java/com/google/turbine/processing/ |
D | TurbineMessager.java | 192 trees = ((SourceTypeBoundClass) cinfo).decl().typarams(); in tyParamPosition() 200 trees = minfo.decl().typarams(); in tyParamPosition()
|
/external/turbine/java/com/google/turbine/binder/ |
D | ConstBinder.java | 326 ImmutableMap<TyVarSymbol, TyVarInfo> typarams) { in bindTypeParameters() argument 328 for (Map.Entry<TyVarSymbol, TyVarInfo> entry : typarams.entrySet()) { in bindTypeParameters()
|
D | HierarchyBinder.java | 113 for (Tree.TyParam p : decl.typarams()) { in bind()
|
D | TypeBinder.java | 187 bindTyParams(base.decl().typarams(), bindingScope, base.typeParameters()); in bind() 588 for (Tree.TyParam pt : t.typarams()) { in bindMethod() 597 bindTyParams(t.typarams(), scope, typeParameters); in bindMethod()
|