Home
last modified time | relevance | path

Searched refs:CommentNode (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang/include/clang/Basic/
DCommentNodes.td3 class CommentNode<CommentNode base, bit abstract = 0> : ASTNode {
4 CommentNode Base = base;
8 def Comment : CommentNode<?, 1>;
9 def InlineContentComment : CommentNode<Comment, 1>;
10 def TextComment : CommentNode<InlineContentComment>;
11 def InlineCommandComment : CommentNode<InlineContentComment>;
12 def HTMLTagComment : CommentNode<InlineContentComment, 1>;
13 def HTMLStartTagComment : CommentNode<HTMLTagComment>;
14 def HTMLEndTagComment : CommentNode<HTMLTagComment>;
16 def BlockContentComment : CommentNode<Comment, 1>;
[all …]
/external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
DCommentNode.java31 class CommentNode extends AbstractSimpleNode { class
35 CommentNode(String text) { in CommentNode() method in CommentNode
DNode.java55 if (node instanceof CommentNode) { in parentAndExtractComments()
57 commentList.add(((CommentNode)node).text()); in parentAndExtractComments()
DParse.java129 return new CommentNode(izer.sval); in item()