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

1 2 3 4 5 6 7 8

  /external/webkit/Source/WebCore/dom/
Comment.idl 22 interface Comment : CharacterData {
Comment.cpp 23 #include "Comment.h"
29 inline Comment::Comment(Document* document, const String& text)
34 PassRefPtr<Comment> Comment::create(Document* document, const String& text)
36 return adoptRef(new Comment(document, text));
39 String Comment::nodeName() const
44 Node::NodeType Comment::nodeType() const
49 PassRefPtr<Node> Comment::cloneNode(bool /*deep*/)
54 bool Comment::childTypeAllowed(NodeType) cons
    [all...]
Comment.h 30 class Comment : public CharacterData {
32 static PassRefPtr<Comment> create(Document*, const String&);
35 Comment(Document*, const String&);
  /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/tools/libclang/
CXComment.h 20 #include "clang/AST/Comment.h"
30 inline CXComment createCXComment(const comments::Comment *C,
38 inline const comments::Comment *getASTNode(CXComment CXC) {
39 return static_cast<const comments::Comment *>(CXC.ASTNode);
44 const comments::Comment *C = getASTNode(CXC);
CXComment.cpp 10 // This file defines all libclang APIs related to walking comment AST.
38 const Comment *C = getASTNode(CXC);
43 case Comment::NoCommentKind:
46 case Comment::TextCommentKind:
49 case Comment::InlineCommandCommentKind:
52 case Comment::HTMLStartTagCommentKind:
55 case Comment::HTMLEndTagCommentKind:
58 case Comment::ParagraphCommentKind:
61 case Comment::BlockCommandCommentKind:
64 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/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) {
25 if (Comment.size() < 3 || Comment[0] != '/')
29 if (Comment[1] == '/') {
30 if (Comment.size() < 3)
33 if (Comment[2] == '/')
35 else if (Comment[2] == '!'
    [all...]
Comment.cpp 1 //===--- Comment.cpp - Comment AST node implementation --------------------===//
11 #include "clang/AST/Comment.h"
21 const char *Comment::getCommentKindName() const {
24 #define ABSTRACT_COMMENT(COMMENT)
25 #define COMMENT(CLASS, PARENT) \
29 #undef COMMENT
32 llvm_unreachable("Unknown comment kind!");
40 good implements_child_begin_end(Comment::child_iterator (T::*)() const) {
45 Comment::child_iterator (Comment::*)() const)
    [all...]
  /external/v8/src/
macro-assembler.h 135 class Comment {
137 Comment(MacroAssembler* masm, const char* msg);
138 ~Comment();
147 class Comment {
149 Comment(MacroAssembler*, const char*) {}
codegen.cc 46 Comment::Comment(MacroAssembler* masm, const char* msg)
52 Comment::~Comment() {
  /external/doclava/src/com/google/doclava/
DocInfo.java 37 return comment().isHidden();
41 return comment().isDocOnly();
53 mComment = new Comment(mRawCommentText, parent(), mPosition);
58 public Comment comment() { method in class:DocInfo
60 mComment = new Comment(mRawCommentText, parent(), mPosition);
74 mComment = new Comment(mRawCommentText, parent(), mPosition);
118 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.
109 /// spelling in comment (plain <br> would not set this flag).
122 /// True if this comment AST node contains only whitespace.
148 /// True if direction was specified explicitly in the comment
    [all...]
  /external/webkit/Source/WebCore/html/parser/
CSSPreloadScanner.h 50 Comment,
CSSPreloadScanner.cpp 78 m_state = Comment;
82 case Comment:
92 m_state = Comment;
  /system/bluetooth/data/
blacklist.conf 5 // Module,Type,Value List,Parameter List, //Comment
  /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/clang/include/clang-c/
Index.h     [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);
hc_documentcreatecomment.java 31 * The "createComment(data)" method creates a new Comment
35 * Comment node whose "data" is the specified string.
63 Comment newCommentNode;
68 newCommentNode = doc.createComment("This is a new Comment node");
70 assertEquals("value", "This is a new Comment node", newCommentValue);
72 assertEquals("strong", "#comment", newCommentName);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodeinsertbefore01.js 81 Using insertBefore on this Document node attempt to insert a new Comment node before
82 this DocumentElement node and verify the name of the inserted Comment node. Now
83 attempt to insert a new Processing Instruction node before the new Comment and
109 newComment = doc.createComment("Comment");
114 assertEquals("nodeinsertbefore01_1","Comment",data);
nodeinsertbefore02.js 78 Using insertBefore on a new Document node attempt to insert a new Comment node before
79 this DocumentType node and verify the name of the inserted Comment node. Now
80 attempt to insert a new Processing Instruction node before the new Comment and
122 newComment = newDoc.createComment("Comment");
127 assertEquals("nodeinsertbefore02_1","Comment",data);

Completed in 1228 milliseconds

1 2 3 4 5 6 7 8