Lines Matching defs:cut
80 private final CompilationUnitTree cut;
99 cut = root;
110 cut.accept(new SimpleTreeVisitor<Void, ASTRecord>() {
142 new ASTRecord(cut, className, null, null, ASTPath.empty());
275 new ASTRecord(cut, className, null, null, ASTPath.empty()));
362 rec = new ASTRecord(cut, rec.className, inMethod, null,
443 new ASTRecord(cut, className, null, null, ASTPath.empty()));
611 rec = new ASTRecord(cut, rec.className, rec.methodName,
635 public static ASTRecord getASTPath(CompilationUnitTree cut, Tree node) {
636 return indexOf(cut).get(node);
639 public static TreePath getTreePath(CompilationUnitTree cut, ASTRecord rec) {
640 Tree node = getNode(cut, rec);
641 return node == null ? null : TreePath.getPath(cut, node);
644 public static Tree getNode(CompilationUnitTree cut, ASTRecord rec) {
645 Map<Tree, ASTRecord> fwdIndex = ((ASTIndex) indexOf(cut)).back;
648 ExpressionTree et = cut.getPackageName();
651 rec = new ASTRecord(cut, pkg + "." + rec.className,
657 public static String getParameterName(CompilationUnitTree cut,
660 ASTIndex ai = (ASTIndex) ASTIndex.indexOf(cut);
667 public static Integer getParameterIndex(CompilationUnitTree cut,
669 if (cut != null && className != null
677 ASTIndex ai = (ASTIndex) ASTIndex.indexOf(cut);