HomeSort by relevance Sort by last modified time
    Searched refs:Comment (Results 1 - 25 of 270) sorted by null

1 2 3 4 5 6 7 8 91011

  /libcore/luni/src/main/java/org/w3c/dom/
Comment.java 17 * content of a comment, i.e., all the characters between the starting '
19 * the definition of a comment in XML, and, in practice, HTML, although some
20 * HTML tools may implement the full SGML comment structure.
21 * <p> No lexical check is done on the content of a comment and it is
23 * (double-hyphen) in the content, which is illegal in a comment per section
29 public interface Comment extends CharacterData {
  /external/clang/include/clang-c/
Documentation.h 1 /*==-- clang-c/Documentation.h - Utilities for comment processing -*- C -*-===*\
25 * \defgroup CINDEX_COMMENT Comment introspection
35 * \brief A parsed comment.
44 * declaration), return the associated parsed comment as a
50 * \brief Describes the type of the comment AST node (\c CXComment). A comment
56 * \brief Null comment. No AST node is constructed at the requested location
95 * \brief A paragraph, contains inline comment. The paragraph itself is
156 * \brief A full comment attached to a declaration, contains block content.
209 * \param Comment AST node of any kind
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
ByteStreamer.h 34 virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
35 virtual void EmitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
36 virtual void EmitULEB128(uint64_t DWord, const Twine &Comment = "") = 0;
45 void EmitInt8(uint8_t Byte, const Twine &Comment) override {
46 AP.OutStreamer->AddComment(Comment);
49 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override {
50 AP.OutStreamer->AddComment(Comment);
53 void EmitULEB128(uint64_t DWord, const Twine &Comment) override {
54 AP.OutStreamer->AddComment(Comment);
64 void EmitInt8(uint8_t Byte, const Twine &Comment) override
    [all...]
DwarfExpression.h 43 /// Output a dwarf operand and an optional assembler comment.
44 virtual void EmitOp(uint8_t Op, const char *Comment = nullptr) = 0;
54 void AddReg(int DwarfReg, const char *Comment = nullptr);
115 void EmitOp(uint8_t Op, const char *Comment = nullptr) override;
129 void EmitOp(uint8_t Op, const char *Comment = nullptr) override;
  /external/clang/tools/libclang/
CXComment.h 21 #include "clang/AST/Comment.h"
31 static inline CXComment createCXComment(const comments::Comment *C,
39 static inline const comments::Comment *getASTNode(CXComment CXC) {
40 return static_cast<const comments::Comment *>(CXC.ASTNode);
45 const comments::Comment *C = getASTNode(CXC);
CXComment.cpp 10 // This file defines all libclang APIs related to walking comment AST.
46 const Comment *C = getASTNode(CXC);
51 case Comment::NoCommentKind:
54 case Comment::TextCommentKind:
57 case Comment::InlineCommandCommentKind:
60 case Comment::HTMLStartTagCommentKind:
63 case Comment::HTMLEndTagCommentKind:
66 case Comment::ParagraphCommentKind:
69 case Comment::BlockCommandCommentKind:
72 case Comment::ParamCommandCommentKind
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
CommentImpl.java 19 import org.w3c.dom.Comment;
32 public final class CommentImpl extends CharacterDataImpl implements Comment {
40 return "#comment";
49 * Returns true if this comment contains the illegal character sequence
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
ReplaceTextCommentScanner.java 20 import org.eclipse.jdt.core.dom.Comment;
35 protected String processComment(Reporter reporter, Comment commentNode, String commentText) {
BaseModifyCommentScanner.java 23 import org.eclipse.jdt.core.dom.Comment;
31 * A base-class for general comment processors. All comments of all types in a
32 * {@link CompilationUnit} are considered. Subclasses determine whether to make a complete comment
41 List<Comment> comments = cu.getCommentList();
43 for (Comment comment : Lists.reverse(comments)) {
44 String commentText = document.get(comment.getStartPosition(), comment.getLength());
45 String newCommentText = processComment(reporter, comment, commentText);
47 document.replace(comment.getStartPosition(), comment.getLength(), newCommentText)
    [all...]
BaseJavadocNodeScanner.java 23 import org.eclipse.jdt.core.dom.Comment;
38 List<Comment> comments = cu.getCommentList();
41 for (Comment comment : Lists.reverse(comments)) {
42 if (comment instanceof Javadoc) {
43 Javadoc javadoc = (Javadoc) comment;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
CommentToken.java 27 return ID.Comment;
  /external/clang/lib/AST/
RawCommentList.cpp 12 #include "clang/AST/Comment.h"
24 /// Get comment kind and bool describing if it is a trailing comment.
25 std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment,
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] == '!'
    [all...]
  /external/doclava/src/com/google/doclava/
DocInfo.java 40 return comment().isHidden();
47 return comment().isRemoved();
60 return comment().isDocOnly();
72 mComment = new Comment(mRawCommentText, parent(), mPosition);
77 public Comment comment() { method in class:DocInfo
79 mComment = new Comment(mRawCommentText, parent(), mPosition);
93 mComment = new Comment(mRawCommentText, parent(), mPosition);
137 Comment mComment;
AttributeInfo.java 36 private Comment mComment;
45 for (AttrTagInfo comment : attrField.comment().attrTags()) {
46 String n = comment.name();
59 public Comment comment() { method in class:AttributeInfo
61 for (AttrTagInfo attr : attrField.comment().attrTags()) {
62 Comment c = attr.description();
70 return new Comment("", mClass, SourcePositionInfo.UNKNOWN);
89 TagInfo.makeHDF(data, base + ".deprecated", attrField.comment().deprecatedTags())
    [all...]
ParsedTagInfo.java 31 private Comment mComment;
41 mComment = new Comment(mCommentText, mContainer, position());
46 protected void setCommentText(String comment) {
47 mCommentText = comment;
  /external/chromium-trace/catapult/third_party/webapp2/docs/_themes/webapp2/
pygapp2.py 12 Comment: "nobold noitalic #800",
13 Comment.Preproc: "nobold noitalic #800",
14 Comment.Special: "nobold noitalic bg:#800",
  /external/clang/include/clang/AST/
CommentVisitor.h 1 //===--- CommentVisitor.h - Visitor for Comment subclasses ------*- C++ -*-===//
13 #include "clang/AST/Comment.h"
29 RetTy visit(PTR(Comment) C) {
34 default: llvm_unreachable("Unknown comment kind!");
35 #define ABSTRACT_COMMENT(COMMENT)
36 #define COMMENT(CLASS, PARENT) \
37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS);
40 #undef COMMENT
46 #define ABSTRACT_COMMENT(COMMENT) COMMENT
    [all...]
Comment.h 1 //===--- Comment.h - Comment AST nodes --------------------------*- C++ -*-===//
10 // This file defines comment AST nodes.
51 /// Any part of the comment.
53 class Comment {
62 friend class Comment;
88 /// True if this comment AST node contains only whitespace.
120 /// spelling in comment (plain <br> would not set this flag).
133 /// True if this comment AST node contains only whitespace.
160 /// True if direction was specified explicitly in the comment
    [all...]
  /external/clang/lib/Index/
CommentToXML.cpp 14 #include "clang/AST/Comment.h"
83 /// Take a full comment apart and initialize members accordingly.
100 for (Comment::child_iterator I = C->child_begin(), E = C->child_end();
102 const Comment *Child = *I;
106 case Comment::NoCommentKind:
109 case Comment::ParagraphCommentKind: {
120 case Comment::BlockCommandCommentKind: {
143 case Comment::ParamCommandCommentKind: {
155 case Comment::TParamCommandCommentKind: {
167 case Comment::VerbatimBlockCommentKind
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmdfs.h 56 LPWSTR Comment;
84 LPWSTR Comment;
93 ULONG Comment;
102 LPWSTR Comment;
113 ULONG Comment;
124 LPWSTR Comment;
135 LPWSTR Comment;
157 LPWSTR Comment;
178 LPWSTR Comment;
210 LPWSTR Comment;
    [all...]
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/checker/
CheckForBrokenJciteTag.java 26 import org.eclipse.jdt.core.dom.Comment;
45 protected String processComment(Reporter reporter, Comment commentNode, String commentText) {
  /external/selinux/sepolgen/src/sepolgen/
output.py 120 c.append(refpolicy.Comment())
125 c.append(refpolicy.Comment())
146 sep_rules.append(refpolicy.Comment())
148 comment = refpolicy.Comment()
149 comment.lines.append("============= %s ==============" % cur)
150 sep_rules.append(comment)
160 comment = refpolicy.Comment()
161 comment.lines.append("============= ROLES =============="
    [all...]
  /external/v8/src/
macro-assembler.h 211 class Comment {
213 Comment(MacroAssembler* masm, const char* msg);
214 ~Comment();
223 class Comment {
225 Comment(MacroAssembler*, const char*) {}
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
output.py 120 c.append(refpolicy.Comment())
125 c.append(refpolicy.Comment())
146 sep_rules.append(refpolicy.Comment())
148 comment = refpolicy.Comment()
149 comment.lines.append("============= %s ==============" % cur)
150 sep_rules.append(comment)
160 comment = refpolicy.Comment()
161 comment.lines.append("============= ROLES =============="
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreatecomment.java 31 * The "createComment(data)" method creates a new Comment
35 * Comment node whose "data" is the specified string.
64 Comment newCommentNode;
69 newCommentNode = doc.createComment("This is a new Comment node");
71 assertEquals("value", "This is a new Comment node", newCommentValue);
73 assertEquals("name", "#comment", newCommentName);

Completed in 377 milliseconds

1 2 3 4 5 6 7 8 91011