Searched defs:Comment (Results 1 - 25 of 83) sorted by relevance

1234

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/comments/
H A DComment.java35 public abstract class Comment extends Node { class in inherits:Node
40 public Comment() { method in class:Comment
43 public Comment(String content) { method in class:Comment
47 public Comment(Range range, String content) { method in class:Comment
67 public Comment setContent(String content) {
90 public Comment setCommentedNode(Node commentedNode)
99 if (commentedNode instanceof Comment) {
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/comments/
H A DComment.java34 public abstract class Comment extends Node { class in inherits:Node
39 public Comment() { method in class:Comment
42 public Comment(String content) { method in class:Comment
46 public Comment(int beginLine, int beginColumn, int endLine, int endColumn, String content) { method in class:Comment
101 if (commentedNode instanceof Comment)
/external/markdown/markdown/
H A Dhtml4.py43 Comment = markdown.etree.Comment variable
131 if tag is Comment:
253 elif tag is not None and tag is not Comment and tag is not PI:
/external/v8/src/
H A Dcodegen.cc76 Comment::Comment(MacroAssembler* masm, const char* msg) function in class:v8::internal::Comment
82 Comment::~Comment() {
H A Dmacro-assembler.h198 class Comment { class in namespace:v8::internal
200 Comment(MacroAssembler* masm, const char* msg);
201 ~Comment();
210 class Comment { class in namespace:v8::internal
212 Comment(MacroAssembler*, const char*) {} function in class:v8::internal::Comment
/external/clang/unittests/Tooling/
H A DCommentHandlerTest.cpp15 struct Comment { struct in namespace:clang
16 Comment(const std::string &Message, unsigned Line, unsigned Col) function in struct:clang::Comment
24 typedef std::vector<Comment> CommentList;
52 Comments.push_back(Comment(C, CLine, CCol));
113 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
116 const Comment &C = *Current;
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/comments/
H A DComment.java45 public abstract class Comment extends Node { class in inherits:Node
53 public Comment(String content) { method in class:Comment
61 public Comment(TokenRange tokenRange, String content) { method in class:Comment
83 public Comment setContent(final String content) {
86 return (Comment) this;
111 * @return this, the Comment
113 public Comment setCommentedNode(Node commentedNode) {
122 if (commentedNode instanceof Comment) {
156 public Comment clone() {
157 return (Comment) accep
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.cpp25 void DwarfExpression::AddReg(int DwarfReg, const char *Comment) { argument
28 EmitOp(dwarf::DW_OP_reg0 + DwarfReg, Comment);
30 EmitOp(dwarf::DW_OP_regx, Comment);
/external/pdfium/core/fxcrt/css/
H A Dcfx_csssyntaxparser.h21 Comment, member in class:CFX_CSSSyntaxMode
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
H A DToken.java23 Alias, Anchor, BlockEnd, BlockEntry, BlockMappingStart, BlockSequenceStart, Directive, DocumentEnd, DocumentStart, FlowEntry, FlowMappingEnd, FlowMappingStart, FlowSequenceEnd, FlowSequenceStart, Key, Scalar, StreamEnd, StreamStart, Tag, Value, Whitespace, Comment, Error enum constant in enum:Token.ID
/external/clang/lib/AST/
H A DRawCommentList.cpp12 #include "clang/AST/Comment.h"
25 std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment, argument
28 if ((Comment.size() < MinCommentLength) || Comment[0] != '/')
32 if (Comment[1] == '/') {
33 if (Comment.size() < 3)
36 if (Comment[2] == '/')
38 else if (Comment[2] == '!')
43 assert(Comment.size() >= 4);
45 // Comment lexe
63 mergedCommentIsTrailingComment(StringRef Comment) argument
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Dparsetree.py154 class Comment(Node): class in inherits:Node
162 super(Comment, self).__init__(**kwargs)
166 return "Comment(%r, %r)" % (self.text, (self.lineno, self.pos))
/external/pdfium/core/fxcrt/xml/
H A Dcfx_saxreader.h28 Comment, member in class:CFX_SAXItem::Type
H A Dcfx_saxreader.cpp22 Comment, member in class:CFX_SaxMode
248 case CFX_SaxMode::Comment:
404 m_eMode = CFX_SaxMode::Comment;
405 GetCurrentItem()->m_eNode = CFX_SAXItem::Type::Comment;
734 } else if (pItem->m_eNode == CFX_SAXItem::Type::Comment) {
/external/python/cpython2/Lib/lib2to3/pgen2/
H A Dtokenize.py53 Comment = r'#[^\r\n]*' variable
54 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
102 PseudoExtras = group(r'\\\r?\n', Comment, Triple)
/external/python/cpython2/Lib/
H A Dtokenize.py50 Comment = r'#[^\r\n]*' variable
51 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
99 PseudoExtras = group(r'\\\r?\n|\Z', Comment, Triple)
/external/python/cpython3/Lib/lib2to3/pgen2/
H A Dtokenize.py53 Comment = r'#[^\r\n]*' variable
54 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
102 PseudoExtras = group(r'\\\r?\n', Comment, Triple)
/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
H A DELFAsmParser.cpp504 const MCSection *Comment = local
512 getStreamer().SwitchSection(Comment);
/external/v8/src/crankshaft/
H A Dlithium-codegen.cc88 Comment(
99 Comment(";;; <@%d,#%d> %s",
150 void LCodeGenBase::Comment(const char* format, ...) { function in class:v8::internal::LCodeGenBase
/external/clang/lib/Format/
H A DBreakableToken.cpp185 static StringRef getLineCommentIndentPrefix(StringRef Comment) { argument
189 if (Comment.startswith(KnownPrefix)) {
191 while (PrefixLength < Comment.size() && Comment[PrefixLength] == ' ')
194 LongestPrefix = Comment.substr(0, PrefixLength);
/external/clang/test/Misc/
H A Dast-dump-decl.cpp493 namespace Comment { namespace
/external/python/cpython3/Lib/
H A Dtokenize.py119 Comment = r'#[^\r\n]*' variable
120 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
192 PseudoExtras = group(r'\\\r?\n|\Z', Comment, Triple)
/external/v8/src/compiler/
H A Dmachine-operator.cc631 "Comment", 0, 0, 0, 0, 0, 0, msg) {}
798 const Operator* MachineOperatorBuilder::Comment(const char* msg) { function in class:v8::internal::compiler::MachineOperatorBuilder
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp391 void CodeCompletionBuilder::addBriefComment(StringRef Comment) { argument
392 BriefComment = Allocator.CopyString(Comment);
/external/doclava/src/com/google/doclava/
H A DComment.java26 public class Comment { class
50 public Comment(String text, ContainerInfo base, SourcePositionInfo sp) { method in class:Comment
364 Comment c = tag.description();

Completed in 1216 milliseconds

1234