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

1 2 3 4 5 6 7

  /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 {
  /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/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() {
full-codegen.cc 815 Comment cmnt(masm_, "[ Comma");
823 Comment cmnt(masm_, is_logical_and ? "[ Logical AND" : "[ Logical OR");
892 Comment cmnt(masm_, "[ ArithmeticExpression");
913 Comment cmnt(masm_, "[ Block");
920 { Comment cmnt(masm_, "[ Extend block context");
937 { Comment cmnt(masm_, "[ Declarations");
958 Comment cmnt(masm_, "[ ExpressionStatement");
965 Comment cmnt(masm_, "[ EmptyStatement");
971 Comment cmnt(masm_, "[ IfStatement");
999 Comment cmnt(masm_, "[ ContinueStatement")
    [all...]
  /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);
106 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;
AttrTagInfo.java 42 private Comment mDescrComment;
86 mDescrComment = new Comment(more, base, position);
101 public Comment description() {
  /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
  /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);
nodegettextcontent12.js 78 Invoke the method getTextContent on a new Comment node and check if the value returned
91 var comment;
101 comment = doc.createComment("Comment");
102 appendedChild = elem.appendChild(comment);
103 textContent = comment.textContent;
105 assertEquals("nodegettextcontent12","Comment",textContent);
noderemovechild08.js 81 Using removeChild on this Document node attempt to remove a new Comment node and
82 verify the data of the removed comment node..
92 var comment;
102 comment = doc.createComment("Comment");
103 appendedChild = doc.appendChild(comment);
104 removedCmt = doc.removeChild(comment);
107 assertEquals("noderemovechild08","Comment",data);
nodereplacechild17.js 81 Using replaceChild on a DocumentFragment node attempt to replace a Comment node with
107 cmt = doc.createComment("Comment");
108 pi = doc.createProcessingInstruction("target","Comment");
114 assertEquals("nodereplacechild17_1","Comment",data);
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentcreatecomment.js 78 The "createComment(data)" method creates a new Comment
82 Comment node whose "data" is the specified string.
102 newCommentNode = doc.createComment("This is a new Comment node");
105 assertEquals("value","This is a new Comment node",newCommentValue);
108 assertEquals("strong","#comment",newCommentName);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_documentcreatecomment.js 78 The "createComment(data)" method creates a new Comment
82 Comment node whose "data" is the specified string.
102 newCommentNode = doc.createComment("This is a new Comment node");
105 assertEquals("value","This is a new Comment node",newCommentValue);
108 assertEquals("strong","#comment",newCommentName);
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 22 import org.w3c.dom.Comment;
94 String comment = ""; local
101 } else if (node instanceof Comment) {
102 comment = comment + node.getNodeValue();
107 assertEquals(" Fragile! Handle me with care! ", comment);

Completed in 1370 milliseconds

1 2 3 4 5 6 7