/external/clang/include/clang/Frontend/ |
D | LangStandards.def | 47 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 …]
|
D | LangStandard.h | 21 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/ |
D | LineComment.java | 43 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()
|
D | CommentsCollection.java | 46 public Set<LineComment> getLineComments() { in getLineComments() 48 .filter(comment -> comment instanceof LineComment) in getLineComments() 49 .map(comment -> (LineComment) comment) in getLineComments()
|
D | Comment.java | 99 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/ |
D | CommentsCollection.java | 31 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()
|
D | LineComment.java | 35 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
|
D | Comment.java | 75 public LineComment asLineComment() in asLineComment() 79 return (LineComment) this; in asLineComment()
|
D | CommentsParser.java | 57 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/ |
D | LineComment.java | 36 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
|
D | CommentsCollection.java | 44 public Set<LineComment> getLineComments() { in getLineComments() 46 .filter(comment -> comment instanceof LineComment) in getLineComments() 47 .map(comment -> (LineComment) comment) in getLineComments()
|
D | Comment.java | 77 public LineComment asLineComment() { in asLineComment() 79 return (LineComment) this; in asLineComment()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/ |
D | com_github_javaparser_ast_comments_CommentsCollection.txt | 4 …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>
|
D | com_github_javaparser_ast_comments_Comment.txt | 16 Line 79) (LineComment) this ==> com.github.javaparser.ast.comments.LineComment
|
D | com_github_javaparser_ast_comments_CommentsParser.txt | 19 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/ |
D | GeneratedJavaParserTokenManagerBase.java | 6 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/ |
D | CommentTest.java | 43 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/ |
D | com_github_javaparser_ast_comments_CommentsCollection.txt | 2 … 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.…
|
D | com_github_javaparser_ast_comments_LineComment.txt | 1 …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/ |
D | CsmComment.java | 28 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/ |
D | NodeWithJavadocTest.java | 28 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/ |
D | ResourceScriptToken.cpp | 177 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/ |
D | CommentsInserter.java | 27 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/ |
D | LineCommentMetaModel.java | 8 …super(superBaseNodeMetaModel, com.github.javaparser.ast.comments.LineComment.class, "LineComment",… in LineCommentMetaModel()
|
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/ |
D | TranslateJcite.java | 31 import org.eclipse.jdt.core.dom.LineComment; 67 if (!(commentNode instanceof LineComment)) { in processComment()
|