Lines Matching full:path
30 public boolean isSatisfiedBy(TreePath path, Tree leaf) {
31 assert path == null || path.getLeaf() == leaf;
32 return isSatisfiedBy(path);
37 public boolean isSatisfiedBy(TreePath path) {
38 if (path == null) {
43 Main.pathToString(path), this.toString());
46 Tree tree = path.getLeaf();
57 path = path.getParentPath();
58 } while (path != null && path.getLeaf() != null);