Home
last modified time | relevance | path

Searched refs:LineComment (Results 1 – 25 of 85) sorted by relevance

1234

/external/clang/include/clang/Frontend/
DLangStandards.def47 LineComment | C89 | Digraphs | GNUMode | ImplicitInt)
50 LineComment | C89 | Digraphs | GNUMode | ImplicitInt)
55 LineComment | C99 | Digraphs | HexFloat)
58 LineComment | C99 | Digraphs | HexFloat)
61 LineComment | C99 | Digraphs | HexFloat)
64 LineComment | C99 | Digraphs | HexFloat)
68 LineComment | C99 | Digraphs | GNUMode | HexFloat)
71 LineComment | C99 | Digraphs | GNUMode | HexFloat)
76 LineComment | C99 | C11 | Digraphs | HexFloat)
79 LineComment | C99 | C11 | Digraphs | HexFloat)
[all …]
DLangStandard.h21 LineComment = (1 << 0), enumerator
59 bool hasLineComments() const { return Flags & frontend::LineComment; } in hasLineComments()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/comments/
DLineComment.java43 public final class LineComment extends Comment { class
45 public LineComment() { in LineComment() method in LineComment
50 public LineComment(String content) { in LineComment() method in LineComment
58 public LineComment(TokenRange tokenRange, String content) { in LineComment() method in LineComment
91 public LineComment clone() { in clone()
92 return (LineComment) accept(new CloneVisitor(), null); in clone()
111 public LineComment asLineComment() { in asLineComment()
116 public void ifLineComment(Consumer<LineComment> action) { in ifLineComment()
122 public Optional<LineComment> toLineComment() { in toLineComment()
DCommentsCollection.java46 public Set<LineComment> getLineComments() { in getLineComments()
48 .filter(comment -> comment instanceof LineComment) in getLineComments()
49 .map(comment -> (LineComment) comment) in getLineComments()
DComment.java99 public LineComment asLineComment() { in asLineComment()
203 public void ifLineComment(Consumer<LineComment> action) { in ifLineComment()
217 public Optional<LineComment> toLineComment() { in toLineComment()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/comments/
DCommentsCollection.java31 private List<LineComment> lineComments = new LinkedList<LineComment>();
35 public List<LineComment> getLineComments(){ in getLineComments()
47 public void addComment(LineComment lineComment){ in addComment()
87 for (LineComment comment : lineComments){ in minus()
DLineComment.java35 public final class LineComment extends Comment { class
37 public LineComment() { in LineComment() method in LineComment
40 public LineComment(String content) { in LineComment() method in LineComment
44 public LineComment(int beginLine, int beginColumn, int endLine, int endColumn, String content) { in LineComment() method in LineComment
DComment.java75 public LineComment asLineComment() in asLineComment()
79 return (LineComment) this; in asLineComment()
DCommentsParser.java57 LineComment currentLineComment = null; in parse()
77 currentLineComment = new LineComment(); in parse()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/comments/
DLineComment.java36 public final class LineComment extends Comment { class
38 public LineComment() { in LineComment() method in LineComment
41 public LineComment(String content) { in LineComment() method in LineComment
45 public LineComment(Range range, String content) { in LineComment() method in LineComment
DCommentsCollection.java44 public Set<LineComment> getLineComments() { in getLineComments()
46 .filter(comment -> comment instanceof LineComment) in getLineComments()
47 .map(comment -> (LineComment) comment) in getLineComments()
DComment.java77 public LineComment asLineComment() { in asLineComment()
79 return (LineComment) this; in asLineComment()
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/
Dcom_github_javaparser_ast_comments_CommentsCollection.txt4 …Line 31) new LinkedList<LineComment>() ==> java.util.LinkedList<com.github.javaparser.ast.comments…
7 Line 36) lineComments ==> java.util.List<com.github.javaparser.ast.comments.LineComment>
27 Line 87) LineComment comment ==> com.github.javaparser.ast.comments.LineComment
28 Line 87) lineComments ==> java.util.List<com.github.javaparser.ast.comments.LineComment>
Dcom_github_javaparser_ast_comments_Comment.txt16 Line 79) (LineComment) this ==> com.github.javaparser.ast.comments.LineComment
Dcom_github_javaparser_ast_comments_CommentsParser.txt19 Line 57) LineComment currentLineComment = null ==> com.github.javaparser.ast.comments.LineComment
40 Line 77) currentLineComment = new LineComment() ==> com.github.javaparser.ast.comments.LineComment
/external/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/
DGeneratedJavaParserTokenManagerBase.java6 import com.github.javaparser.ast.comments.LineComment;
40 LineComment comment = new LineComment(tokenRange(token), commentText.substring(2)); in createCommentFromToken()
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/comments/
DCommentTest.java43 Comment c = new LineComment("A comment"); in removeOrphanComment()
53 Comment c = new LineComment("A comment"); in removeAssociatedComment()
62 Comment c = new LineComment("A comment"); in cannotRemoveCommentNotUsedAnywhere()
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_methodcalls_expected_output/
Dcom_github_javaparser_ast_comments_CommentsCollection.txt2 … comments.stream().filter(comment -> comment instanceof LineComment).map(comment -> (LineComment) …
3 … comments.stream().filter(comment -> comment instanceof LineComment).map(comment -> (LineComment) …
4 …Line 45) comments.stream().filter(comment -> comment instanceof LineComment) ==> java.util.stream.…
Dcom_github_javaparser_ast_comments_LineComment.txt1 …thub.javaparser.ast.visitor.GenericVisitor.visit(com.github.javaparser.ast.comments.LineComment, A)
2 ….github.javaparser.ast.visitor.VoidVisitor.visit(com.github.javaparser.ast.comments.LineComment, A)
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
DCsmComment.java28 import com.github.javaparser.ast.comments.LineComment;
43 } else if (comment instanceof LineComment) { in process()
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/nodeTypes/
DNodeWithJavadocTest.java28 import com.github.javaparser.ast.comments.LineComment;
50 decl.setComment(new LineComment("A comment")); in removeJavaDocNegativeCaseCommentNotJavaDoc()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
DResourceScriptToken.cpp177 if (TokenKind == Kind::LineComment || TokenKind == Kind::StartComment) in run()
219 case Kind::LineComment: in consumeToken()
324 return Kind::LineComment; in classifyCurrentToken()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
DCommentsInserter.java27 import com.github.javaparser.ast.comments.LineComment;
163 private boolean attributeLineCommentToNodeOrChild(Node node, LineComment lineComment) { in attributeLineCommentToNodeOrChild()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/metamodel/
DLineCommentMetaModel.java8 …super(superBaseNodeMetaModel, com.github.javaparser.ast.comments.LineComment.class, "LineComment",… in LineCommentMetaModel()
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
DTranslateJcite.java31 import org.eclipse.jdt.core.dom.LineComment;
67 if (!(commentNode instanceof LineComment)) { in processComment()

1234