Searched refs:Comment (Results 1 - 25 of 229) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DComment.cpp23 #include "core/dom/Comment.h"
29 inline Comment::Comment(Document& document, const String& text) function in class:blink::Comment
34 PassRefPtrWillBeRawPtr<Comment> Comment::create(Document& document, const String& text)
36 return adoptRefWillBeNoop(new Comment(document, text));
39 String Comment::nodeName() const
44 Node::NodeType Comment::nodeType() const
49 PassRefPtrWillBeRawPtr<Node> Comment::cloneNode(bool /*deep*/)
H A DComment.idl23 ] interface Comment : CharacterData {
H A DComment.h30 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);
/external/clang/include/clang-c/
H A DDocumentation.h25 * \defgroup CINDEX_COMMENT Comment introspection
209 * \param Comment AST node of any kind.
213 CINDEX_LINKAGE enum CXCommentKind clang_Comment_getKind(CXComment Comment);
216 * \param Comment AST node of any kind.
220 CINDEX_LINKAGE unsigned clang_Comment_getNumChildren(CXComment Comment);
223 * \param Comment AST node of any kind.
230 CXComment clang_Comment_getChild(CXComment Comment, unsigned ChildIdx);
239 * \returns non-zero if \c Comment is whitespace.
241 CINDEX_LINKAGE unsigned clang_Comment_isWhitespace(CXComment Comment);
244 * \returns non-zero if \c Comment i
[all...]
/external/llvm/lib/CodeGen/AsmPrinter/
H A DByteStreamer.h29 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) overrid
[all...]
/external/clang/tools/libclang/
H A DCXComment.h21 #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);
H A DCXComment.cpp46 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:
75 case Comment
[all...]
/external/clang/lib/AST/
H A DRawCommentList.cpp12 #include "clang/AST/Comment.h"
24 std::pair<RawComment::CommentKind, bool> getCommentKind(StringRef Comment, argument
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] == '!')
42 assert(Comment.size() >= 4);
44 // Comment lexe
62 mergedCommentIsTrailingComment(StringRef Comment) argument
[all...]
H A DComment.cpp1 //===--- Comment.cpp - Comment AST node implementation --------------------===//
11 #include "clang/AST/Comment.h"
22 const char *Comment::getCommentKindName() const {
41 good implements_child_begin_end(Comment::child_iterator (T::*)() const) {
47 Comment::child_iterator (Comment::*)() const) {
69 Comment::child_iterator Comment::child_begin() const {
83 Comment
[all...]
/external/chromium_org/ui/gfx/codec/
H A Dpng_codec.h48 struct GFX_EXPORT Comment { struct in class:gfx::PNGCodec
49 Comment(const std::string& k, const std::string& t);
50 ~Comment();
78 const std::vector<Comment>& comments,
/external/doclava/src/com/google/doclava/
H A DDocInfo.java72 mComment = new Comment(mRawCommentText, parent(), mPosition);
77 public Comment comment() {
79 mComment = new Comment(mRawCommentText, parent(), mPosition);
93 mComment = new Comment(mRawCommentText, parent(), mPosition);
137 Comment mComment;
H A DAttributeInfo.java36 private Comment mComment;
59 public Comment comment() {
62 Comment c = attr.description();
70 return new Comment("", mClass, SourcePositionInfo.UNKNOWN);
H A DParsedTagInfo.java24 private Comment mComment;
34 mComment = new Comment(mCommentText, mContainer, position());
/external/clang/include/clang/AST/
H A DCommentVisitor.h1 //===--- CommentVisitor.h - Visitor for Comment subclasses ------*- C++ -*-===//
13 #include "clang/AST/Comment.h"
29 RetTy visit(PTR(Comment) C) {
37 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS);
53 RetTy visitComment(PTR(Comment) C) { return RetTy(); }
H A DComment.h1 //===--- Comment.h - Comment AST nodes --------------------------*- C++ -*-===//
53 class Comment { class in namespace:clang::comments
62 friend class Comment;
195 Comment(CommentKind K, function in class:clang::comments::Comment
226 typedef Comment * const *child_iterator;
240 class InlineContentComment : public Comment {
245 Comment(K, LocBegin, LocEnd) {
250 static bool classof(const Comment *C) {
277 static bool classof(const Comment *
[all...]
/external/chromium_org/v8/src/
H A Dmacro-assembler.h155 class Comment { class in namespace:v8::internal
157 Comment(MacroAssembler* masm, const char* msg);
158 ~Comment();
167 class Comment { class in namespace:v8::internal
169 Comment(MacroAssembler*, const char*) {} function in class:v8::internal::Comment
/external/clang/lib/Index/
H A DCommentToXML.cpp14 #include "clang/AST/Comment.h"
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:
172 case Comment
[all...]
/external/chromium_org/third_party/markdown/
H A Dutil.py91 from xml.etree.ElementTree import Comment namespace
92 # Serializers (including ours) test with non-c Comment
93 etree.test_comment = Comment
H A Dserializers.py78 Comment = util.etree.test_comment variable
80 Comment = util.etree.Comment variable
172 if tag is Comment:
291 elif tag is not None and tag is not Comment and tag is not PI:
/external/chromium_org/tools/json_schema_compiler/
H A Dcode_test.py123 c.Comment(long_comment)
131 c.Comment(long_comment)
133 c.Comment(long_comment)
146 c.Comment(long_word)
154 c.Comment('20% of 80%s')
H A Dh_generator.py159 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/
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));
109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
112 const Comment &C = *Current;
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DCSSPreloadScanner.h53 Comment, enumerator in enum:blink::CSSPreloadScanner::State
/external/chromium_org/tools/imagediff/
H A Dimage_diff_png.cc39 struct Comment { struct in namespace:image_diff_png::__anon16497
409 explicit CommentWriter(const std::vector<Comment>& comments)
437 void AddComment(size_t pos, const Comment& comment) {
451 const std::vector<Comment> comments_;
470 const std::vector<Comment>& comments) {
529 const std::vector<Comment>& comments,
604 const std::vector<Comment>& comments,
628 std::vector<Comment>(), output);
640 std::vector<Comment>(), output);
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_instruction.c115 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 657 milliseconds

12345678910