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

1 2 3 4

  /external/webkit/WebCore/dom/
Comment.idl 22 interface Comment : CharacterData {
Comment.cpp 23 #include "Comment.h"
27 inline Comment::Comment(Document* document, const String& text)
32 PassRefPtr<Comment> Comment::create(Document* document, const String& text)
34 return adoptRef(new Comment(document, text));
37 String Comment::nodeName() const
42 Node::NodeType Comment::nodeType() const
47 PassRefPtr<Node> Comment::cloneNode(bool /*deep*/)
52 bool Comment::childTypeAllowed(NodeType
    [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 {
Document.java 102 * Creates a <code>Comment</code> node given the specified string.
104 * @return The new <code>Comment</code> object.
106 public Comment createComment(String data);
    [all...]
  /build/tools/droiddoc/src/
DocInfo.java 27 return comment().isHidden();
31 return comment().isDocOnly();
39 public Comment comment() method in class:DocInfo
42 mComment = new Comment(mRawCommentText, parent(), mPosition);
63 Comment mComment;
AttributeInfo.java 35 private Comment mComment;
44 for (AttrTagInfo comment: attrField.comment().attrTags()) {
45 String n = comment.name();
55 public Comment comment() { method in class:AttributeInfo
57 for (AttrTagInfo attr: attrField.comment().attrTags()) {
58 Comment c = attr.description();
66 return new Comment("", mClass, new SourcePositionInfo());
84 TagInfo.makeHDF(data, base + ".deprecated", attrField.comment().deprecatedTags())
    [all...]
ParsedTagInfo.java 25 private Comment mComment;
37 mComment = new Comment(mCommentText, mContainer, position());
42 protected void setCommentText(String comment)
44 mCommentText = comment;
AttrTagInfo.java 43 private Comment mDescrComment;
91 mDescrComment = new Comment(more, base, position);
107 public Comment description() {
DocFile.java 112 Comment comment = new Comment(commentText, null, local
114 TagInfo[] tags = comment.tags();
  /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
  /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/v8/src/
full-codegen.cc 645 Comment cmnt(masm_, "[ Block");
654 Comment cmnt(masm_, "[ ExpressionStatement");
661 Comment cmnt(masm_, "[ EmptyStatement");
667 Comment cmnt(masm_, "[ IfStatement");
686 Comment cmnt(masm_, "[ ContinueStatement");
702 Comment cmnt(masm_, "[ BreakStatement");
718 Comment cmnt(masm_, "[ ReturnStatement");
737 Comment cmnt(masm_, "[ WithEnterStatement");
755 Comment cmnt(masm_, "[ WithExitStatement");
771 Comment cmnt(masm_, "[ DoWhileStatement")
    [all...]
codegen.h 105 class Comment BASE_EMBEDDED {
107 Comment(MacroAssembler* masm, const char* msg);
108 ~Comment();
117 class Comment BASE_EMBEDDED {
119 Comment(MacroAssembler*, const char*) {}
168 void set_comment(const char* comment) { comment_ = comment; }
169 const char* comment() const { return comment_; } function in class:v8::internal::DeferredCode
171 void set_comment(const char* comment) { }
172 const char* comment() const { return ""; function in class:v8::internal::DeferredCode
    [all...]
  /external/v8/src/arm/
fast-codegen-arm.cc 184 Comment prologue_cmnt(masm(), ";; Prologue");
193 Comment cmnt(masm(), ";; MapCheck(this)");
207 Comment cmnt(masm(), ";; MapCheck(GLOBAL)");
219 Comment return_cmnt(masm(), ";; Return(<undefined>)");
full-codegen-arm.cc 72 { Comment cmnt(masm_, "[ Allocate locals");
82 Comment cmnt(masm_, "[ Allocate local context");
114 Comment cmnt(masm_, "[ Allocate arguments object");
147 { Comment cmnt(masm_, "[ Stack check");
159 { Comment cmnt(masm_, "[ Declarations");
167 { Comment cmnt(masm_, "[ Body");
173 { Comment cmnt(masm_, "[ return <undefined>;");
183 Comment cmnt(masm_, "[ Return sequence");
553 Comment cmnt(masm_, "[ Declaration");
665 Comment cmnt(masm_, "[ FunctionLiteral")
    [all...]
  /external/v8/src/x64/
fast-codegen-x64.cc 193 Comment prologue_cmnt(masm(), ";; Prologue");
204 Comment cmnt(masm(), ";; MapCheck(this)");
218 Comment cmnt(masm(), ";; MapCheck(GLOBAL)");
230 Comment return_cmnt(masm(), ";; Return(<undefined>)");
  /external/webkit/WebCore/html/
PreloadScanner.h 91 Comment,
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode03.java 36 * The importedNode is of type Comment.
38 * Create a comment node with value being the string "this is a comment" in
40 * this document. Method should return a comment node whose value matches
72 Comment comment; local
80 comment = aNewDoc.createComment("this is a comment");
81 aNode = doc.importNode(comment, false);
88 assertEquals("nodeValue", "this is a comment", value)
    [all...]
importNode04.java 39 * Create a Comment child node for the Document Fragment.
43 * comment value "descendant1".
74 Comment comment; local
82 comment = aNewDoc.createComment("descendant1");
83 aNode = docFrag.appendChild(comment);
  /external/jhead/
jpgfile.c 48 char Comment[MAX_COMMENT_SIZE+1];
62 Comment[nch++] = (char)ch;
64 Comment[nch++] = '?';
68 Comment[nch] = '\0'; // Null terminate
71 printf("COM marker comment: %s\n",Comment);
74 strcpy(ImageInfo.Comments,Comment);
233 case M_COM: // Comment section
478 // Discard everything but the exif and comment sections.
623 // Remove sectons not part of image and not exif or comment sections
    [all...]
jhead.c 78 static int EditComment = FALSE; // Invoke an editor for editing the comment
81 static char * CommentSavefileName = NULL; // Save comment to this file.
82 static char * CommentInsertfileName = NULL; // Insert comment from this file.
83 static char * CommentInsertLiteral = NULL; // Insert this comment (from command line)
142 static int FileEditComment(char * TempFileName, char * Comment, int CommentSize)
153 fwrite(Comment, CommentSize, 1, file);
186 CommentSize = fread(Comment, 1, 999, file);
197 // Modify one of the lines in the comment field.
247 // Overwrite old comment of same tag with new one.
946 char Comment[MAX_COMMENT_SIZE+1]
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 65 { Comment cmnt(masm_, "[ Allocate locals");
81 Comment cmnt(masm_, "[ Allocate local context");
114 Comment cmnt(masm_, "[ Allocate arguments object");
140 { Comment cmnt(masm_, "[ Declarations");
144 { Comment cmnt(masm_, "[ Stack check");
159 { Comment cmnt(masm_, "[ Body");
165 { Comment cmnt(masm_, "[ return <undefined>;");
174 Comment cmnt(masm_, "[ Return sequence");
667 Comment cmnt(masm_, "[ Declaration");
776 Comment cmnt(masm_, "[ FunctionLiteral")
    [all...]

Completed in 1048 milliseconds

1 2 3 4