HomeSort by relevance Sort by last modified time
    Searched refs:Comment (Results 1 - 25 of 191) 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"
31 inline CXComment createCXComment(const comments::Comment *C,
39 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.
37 const Comment *C = getASTNode(CXC);
42 case Comment::NoCommentKind:
45 case Comment::TextCommentKind:
48 case Comment::InlineCommandCommentKind:
51 case Comment::HTMLStartTagCommentKind:
54 case Comment::HTMLEndTagCommentKind:
57 case Comment::ParagraphCommentKind:
60 case Comment::BlockCommandCommentKind:
63 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!");
35 void Comment::dump() const {
36 // It is important that Comment::dump() is defined in a different TU tha
    [all...]
CommentDumper.cpp 1 //===--- CommentDumper.cpp - Dumping implementation for Comment ASTs ------===//
40 void dumpSourceRange(const Comment *C);
42 void dumpComment(const Comment *C);
44 void dumpSubtree(const Comment *C);
73 void CommentDumper::dumpSourceRange(const Comment *C) {
88 void CommentDumper::dumpComment(const Comment *C) {
95 void CommentDumper::dumpSubtree(const Comment *C) {
99 for (Comment::child_iterator I = C->child_begin(),
235 void Comment::dump(llvm::raw_ostream &OS, const CommandTraits *Traits,
  /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);
114 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++ -*-===//
10 #include "clang/AST/Comment.h"
26 RetTy visit(PTR(Comment) C) {
31 default: llvm_unreachable("Unknown comment kind!");
32 #define ABSTRACT_COMMENT(COMMENT)
33 #define COMMENT(CLASS, PARENT) \
34 case Comment::CLASS##Kind: DISPATCH(CLASS, CLASS);
37 #undef COMMENT
43 #define ABSTRACT_COMMENT(COMMENT) COMMENT
    [all...]
Comment.h 1 //===--- Comment.h - Comment AST nodes --------------------------*- C++ -*-===//
10 // This file defines comment AST nodes.
30 /// Any part of the comment.
32 class Comment {
41 friend class Comment;
67 /// True if this comment AST node contains only whitespace.
88 /// spelling in comment (plain <br> would not set this flag).
101 /// True if this comment AST node contains only whitespace.
123 /// 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;
  /external/clang/include/clang-c/
Index.h     [all...]
  /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...]
  /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);
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/model/manifest/parser/
AndroidManifestParser.java 26 import org.w3c.dom.Comment;
182 case Comment:
183 amNode = parseCommentNode((Comment) node);
195 if ((xmlNode instanceof Element) || (xmlNode instanceof Comment))
223 if (xmlNode instanceof Comment)
225 identifiedType = NodeType.Comment;

Completed in 646 milliseconds

1 2 3 4 5 6 7 8