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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/core/dom/
Comment.cpp 23 #include "core/dom/Comment.h"
29 inline Comment::Comment(Document& document, const String& text)
34 PassRefPtrWillBeRawPtr<Comment> Comment::create(Document& document, const String& text)
36 return adoptRefWillBeNoop(new Comment(document, text));
39 String Comment::nodeName() const
41 return "#comment";
44 Node::NodeType Comment::nodeType() const
49 PassRefPtrWillBeRawPtr<Node> Comment::cloneNode(bool /*deep*/
    [all...]
Comment.h 30 class Comment FINAL : public CharacterData {
33 static PassRefPtrWillBeRawPtr<Comment> create(Document&, const String&);
36 Comment(Document&, const String&);
43 DEFINE_NODE_TYPE_CASTS(Comment, nodeType() == Node::COMMENT_NODE);
Comment.idl 23 ] interface Comment : 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 29 virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
30 virtual void EmitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
31 virtual void EmitULEB128(uint64_t DWord, const Twine &Comment = "") = 0;
40 void EmitInt8(uint8_t Byte, const Twine &Comment) override {
41 AP.OutStreamer.AddComment(Comment);
44 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override {
45 AP.OutStreamer.AddComment(Comment);
48 void EmitULEB128(uint64_t DWord, const Twine &Comment) override {
49 AP.OutStreamer.AddComment(Comment);
59 void EmitInt8(uint8_t Byte, const Twine &Comment) override
    [all...]
  /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...]
  /external/clang/lib/AST/
RawCommentList.cpp 12 #include "clang/AST/Comment.h"
23 /// Get comment kind and bool describing if it is a trailing comment.
24 std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment,
27 if ((Comment.size() < MinCommentLength) || Comment[0] != '/')
31 if (Comment[1] == '/') {
32 if (Comment.size() < 3)
35 if (Comment[2] == '/')
37 else if (Comment[2] == '!'
    [all...]
Comment.cpp 1 //===--- Comment.cpp - Comment AST node implementation --------------------===//
11 #include "clang/AST/Comment.h"
22 const char *Comment::getCommentKindName() const {
25 #define ABSTRACT_COMMENT(COMMENT)
26 #define COMMENT(CLASS, PARENT) \
30 #undef COMMENT
33 llvm_unreachable("Unknown comment kind!");
41 good implements_child_begin_end(Comment::child_iterator (T::*)() const) {
47 Comment::child_iterator (Comment::*)() const)
    [all...]
CommentSema.cpp 1 //===--- CommentSema.cpp - Doxygen comment semantic analysis --------------===//
73 // These checks only make sense if the comment is attached to a
98 void Sema::checkFunctionDeclVerbatimLine(const BlockCommandComment *Comment) {
99 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID());
104 switch (Comment->getCommandID()) {
125 Diag(Comment->getLocation(), diag::warn_doc_function_method_decl_mismatch)
126 << Comment->getCommandMarker()
128 << Comment->getSourceRange();
131 void Sema::checkContainerDeclVerbatimLine(const BlockCommandComment *Comment) {
132 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID())
    [all...]
  /external/chromium_org/ui/gfx/codec/
png_codec.h 47 // Represents a comment in the tEXt ancillary chunk of the png.
48 struct GFX_EXPORT Comment {
49 Comment(const std::string& k, const std::string& t);
50 ~Comment();
78 const std::vector<Comment>& comments,
  /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 24 private Comment mComment;
34 mComment = new Comment(mCommentText, mContainer, position());
39 protected void setCommentText(String comment) {
40 mCommentText = comment;
  /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.
119 /// spelling in comment (plain <br> would not set this flag).
132 /// True if this comment AST node contains only whitespace.
158 /// True if direction was specified explicitly in the comment
    [all...]
  /external/chromium_org/v8/src/
macro-assembler.h 155 class Comment {
157 Comment(MacroAssembler* masm, const char* msg);
158 ~Comment();
167 class Comment {
169 Comment(MacroAssembler*, const char*) {}
  /external/clang/lib/Index/
CommentToXML.cpp 14 #include "clang/AST/Comment.h"
84 /// Take a full comment apart and initialize members accordingly.
101 for (Comment::child_iterator I = C->child_begin(), E = C->child_end();
103 const Comment *Child = *I;
107 case Comment::NoCommentKind:
110 case Comment::ParagraphCommentKind: {
121 case Comment::BlockCommandCommentKind: {
144 case Comment::ParamCommandCommentKind: {
156 case Comment::TParamCommandCommentKind: {
168 case Comment::VerbatimBlockCommentKind
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
CSSPreloadScanner.h 53 Comment,
  /external/chromium_org/tools/json_schema_compiler/
code_test.py 120 long_comment = ('This comment is eighty nine characters in longness, '
123 c.Comment(long_comment)
125 '// This comment is eighty nine characters '
131 c.Comment(long_comment)
133 c.Comment(long_comment)
136 ' // This comment is eighty nine characters '
140 '// This comment is eighty nine characters in '
146 c.Comment(long_word)
154 c.Comment('20% of 80%s')
h_generator.py 159 c.Comment(prop.description)
192 c.Comment(type_.description)
202 c.Comment(type_.description)
206 c.Comment(type_.description)
220 c.Comment(type_.description)
227 .Comment('Populates a %s object from a base::Value. Returns'
234 .Comment('Creates a %s object from a base::Value, or NULL on '
244 .Comment('Returns a new %s representing the serialized form of this '
360 c.Comment(param.description)
  /external/clang/unittests/Tooling/
CommentHandlerTest.cpp 15 struct Comment {
16 Comment(const std::string &Message, unsigned Line, unsigned Col)
24 typedef std::vector<Comment> CommentList;
47 EXPECT_TRUE(!Invalid) << "Invalid line number on comment " << C;
50 EXPECT_TRUE(!Invalid) << "Invalid column number on comment " << C;
52 Comments.push_back(Comment(C, CLine, CCol));
102 EXPECT_TRUE(Current == End) << "Unexpected comment \""
109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
112 const Comment &C = *Current;
114 << "Expected comment \"" << Messag
    [all...]
  /external/chromium_org/third_party/markdown/
util.py 91 from xml.etree.ElementTree import Comment
92 # Serializers (including ours) test with non-c Comment
93 etree.test_comment = Comment
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_instruction.c 115 if (src[i].Comment)
116 dest[i].Comment = _mesa_strdup(src[i].Comment);
132 if (inst[i].Comment)
133 free((char *) inst[i].Comment);
  /external/mesa3d/src/mesa/program/
prog_instruction.c 115 if (src[i].Comment)
116 dest[i].Comment = _mesa_strdup(src[i].Comment);
132 if (inst[i].Comment)
133 free((char *) inst[i].Comment);

Completed in 528 milliseconds

1 2 3 4 5 6 7 8 910