HomeSort by relevance Sort by last modified time
    Searched refs:TyParam (Results 1 - 5 of 5) sorted by null

  /external/turbine/java/com/google/turbine/tree/
Tree.java 667 private final ImmutableList<TyParam> typarams;
678 ImmutableList<TyParam> typarams,
713 public ImmutableList<TyParam> typarams() {
802 private final ImmutableList<TyParam> typarams;
813 ImmutableList<TyParam> typarams,
851 public ImmutableList<TyParam> typarams() {
873 public static class TyParam extends Tree {
878 public TyParam(
981 O visitTyParam(TyParam tyParam, I input)
    [all...]
Pretty.java 296 for (Tree.TyParam t : methDecl.typarams()) {
389 for (Tree.TyParam t : tyDecl.typarams()) {
492 public Void visitTyParam(Tree.TyParam tyParam, Void input) {
493 printAnnos(tyParam.annos());
494 append(tyParam.name());
495 if (!tyParam.bounds().isEmpty()) {
498 for (Tree bound : tyParam.bounds()) {
  /external/turbine/java/com/google/turbine/parse/
Parser.java 46 import com.google.turbine.tree.Tree.TyParam;
187 ImmutableList<TyParam> typarams;
226 ImmutableList.<TyParam>of(),
252 ImmutableList.<TyParam>of(),
320 ImmutableList<TyParam> tyParams = ImmutableList.of();
467 ImmutableList<TyParam> typaram = ImmutableList.of(); local
472 typaram = typarams();
486 return memberRest(pos, access, annos, typaram, result, name);
500 return memberRest(pos, access, annos, typaram, result, name)
    [all...]
  /external/turbine/java/com/google/turbine/binder/
HierarchyBinder.java 97 for (Tree.TyParam p : decl.typarams()) {
TypeBinder.java 374 ImmutableList<Tree.TyParam> trees, CompoundScope scope, Map<String, TyVarSymbol> symbols) {
376 for (Tree.TyParam tree : trees) {
421 for (Tree.TyParam pt : t.typarams()) {

Completed in 53 milliseconds