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

12 3 4 5 6 7

  /external/chromium/chrome/browser/ui/window_snapshot/
window_snapshot_win.cc 66 std::vector<gfx::PNGCodec::Comment>(),
  /external/llvm/utils/vim/
tablegen.vim 30 " Handle correctly imbricated comment
44 HiLink tgComment Comment
45 HiLink tgComment2 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);
  /libcore/luni/src/main/java/org/w3c/dom/
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...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodecomparedocumentposition13.js 78 Using compareDocumentPosition check if the Document node contains and precedes the new Comment node,
79 and if the Comment node is contained and follows the Document node.
89 var comment;
101 comment = doc.createComment("Another Comment");
104 appendedChild = elem.appendChild(comment);
105 documentPosition = doc.compareDocumentPosition(comment);
107 commentPosition = comment.compareDocumentPosition(doc);
nodeinsertbefore09.js 85 before a Comment node and verify the contents of the Comment node that is a child
99 var comment;
109 newComment = doc.createComment("Comment");
115 comment = newComment.previousSibling;
117 data = comment.data;
nodeinsertbefore18.js 83 Using insertBefore on an Element node attempt to insert new Comment/PI and CDATA nodes
112 newComment = doc.createComment("Comment");
124 assertEquals("nodeinsertbefore18","Comment",data);
nodeisequalnode29.js 80 Using isEqualNode check if 2 new Comment nodes having the same data are equal and two others
101 comment1 = doc.createComment("comment");
102 comment2 = doc.createComment("comment");
103 comment3 = doc.createComment("#Comment");
  /external/webkit/Source/WebCore/html/parser/
HTMLConstructionSite.cpp 30 #include "Comment.h"
241 ASSERT(token.type() == HTMLToken::Comment);
242 attach(currentNode(), Comment::create(currentNode()->document(), token.comment()));
247 ASSERT(token.type() == HTMLToken::Comment);
248 attach(m_attachmentRoot, Comment::create(m_document, token.comment()));
253 ASSERT(token.type() == HTMLToken::Comment);
255 attach(parent, Comment::create(parent->document(), token.comment()));
    [all...]
HTMLToken.h 43 Comment,
132 m_type = Comment;
166 ASSERT(m_type == Comment);
276 const DataVector& comment() const function in class:WebCore::HTMLToken
278 ASSERT(m_type == Comment);
367 // "data" for Comment
406 case HTMLToken::Comment:
407 m_data = String(token.comment().data(), token.comment().size());
469 const String& comment() cons function in class:WebCore::AtomicHTMLToken
    [all...]
  /external/jhead/
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...]
jpgfile.c 50 char Comment[MAX_COMMENT_SIZE+1];
64 Comment[nch++] = (char)ch;
66 Comment[nch++] = '?';
70 Comment[nch] = '\0'; // Null terminate
73 printf("COM marker comment: %s\n",Comment);
76 strcpy(ImageInfo.Comments,Comment);
235 case M_COM: // Comment section
424 case M_COM: // Comment section
733 // Discard everything but the exif and comment sections
    [all...]
  /external/doclava/src/com/google/doclava/
DocFile.java 106 Comment comment = new Comment(commentText, null, new SourcePositionInfo(docfile, lineno, 1)); local
107 TagInfo[] tags = comment.tags();
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
lexer.ml 21 (* Comment until end of line. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
lexer.ml 21 (* Comment until end of line. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
lexer.ml 21 (* Comment until end of line. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
lexer.ml 21 (* Comment until end of line. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
lexer.ml 21 (* Comment until end of line. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
lexer.ml 21 (* Comment until end of line. *)
  /packages/apps/Mms/src/com/android/mms/dom/
DocumentImpl.java 22 import org.w3c.dom.Comment;
65 public Comment createComment(String data) {
  /external/markdown/markdown/
html4.py 43 Comment = markdown.etree.Comment
131 if tag is Comment:
253 elif tag is not None and tag is not Comment and tag is not PI:
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 240 /// ParseDirective - Go through the comment and see if it indicates expected
246 // A single comment may contain multiple directives.
357 Tok.setKind(tok::comment);
360 if (!Tok.is(tok::comment)) continue;
362 std::string Comment = PP.getSpelling(Tok);
363 if (Comment.empty()) continue;
366 ParseDirective(&Comment[0], Comment.size(), ED, PP, Tok.getLocation());
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodecommentnodename.js 79 Comment Node is "#comment".
81 Retrieve the Comment node in the XML file
83 method. It should be equal to "#comment".
117 assertEquals("existingNodeName","#comment",commentNodeName);
122 commentNode = doc.createComment("This is a comment");
125 assertEquals("createdNodeName","#comment",commentNodeName);
hc_nodevalue02.js 78 An comment is created, setNodeValue is called with a non-null argument, but getNodeValue
97 newNode = doc.createComment("This is a new Comment node");
100 assertEquals("initial","This is a new Comment node",newValue);

Completed in 2414 milliseconds

12 3 4 5 6 7