Home
last modified time | relevance | path

Searched refs:NODE_BY_BEGIN_POSITION (Results 1 – 7 of 7) sorted by relevance

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/comments/
DCommentsCollection.java29 import static com.github.javaparser.ast.Node.NODE_BY_BEGIN_POSITION;
35 private final TreeSet<Comment> comments = new TreeSet<>(NODE_BY_BEGIN_POSITION);
48 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getLineComments()
55 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getBlockComments()
62 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getJavadocComments()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/comments/
DCommentsCollection.java31 import static com.github.javaparser.ast.Node.NODE_BY_BEGIN_POSITION;
37 private final TreeSet<Comment> comments = new TreeSet<>(NODE_BY_BEGIN_POSITION);
50 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getLineComments()
57 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getBlockComments()
64 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getJavadocComments()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/expected_output/
Dcom_github_javaparser_ast_comments_CommentsCollection.txt2 …nt) comment).collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))) ==> jav…
6 …Line 48) Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)) ==> java.util.stream…
7 …nt) comment).collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))) ==> jav…
11 …Line 55) Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)) ==> java.util.stream…
12 …nt) comment).collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))) ==> jav…
16 …Line 62) Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)) ==> java.util.stream…
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
DCommentsInserter.java32 import static com.github.javaparser.ast.Node.NODE_BY_BEGIN_POSITION;
99 TreeSet<Comment> commentsInsideChild = new TreeSet<>(NODE_BY_BEGIN_POSITION); in insertComments()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
DCommentsInserter.java36 import static com.github.javaparser.ast.Node.NODE_BY_BEGIN_POSITION;
102 TreeSet<Comment> commentsInsideChild = new TreeSet<>(NODE_BY_BEGIN_POSITION); in insertComments()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
DNode.java46 …public static Comparator<Node> NODE_BY_BEGIN_POSITION = (a, b) -> a.getBegin().compareTo(b.getBegi… field in Node
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
DNode.java133 public static Comparator<NodeWithRange<?>> NODE_BY_BEGIN_POSITION = (a, b) -> { field in Node