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

1 23 4 5 6 7

  /external/webkit/LayoutTests/dom/xhtml/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);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domconfigurationcansetparameter01.js 103 newCommentNode = doc.createComment("This is a new Comment node");
116 assertEquals("domconfigurationsetparameter02_2","This is a new Comment node",commentValue);
nodegettextcontent15.js 83 CDATASection, PI and Comment nodes and check if the value returned is a single
96 var comment;
110 comment = doc.createComment("Comment ");
115 appendedChild = elem.appendChild(comment);
nodegettextcontent16.js 83 CDATASection, PI and Comment nodes and check if the value returned is a single
98 var comment;
113 comment = doc.createComment("Comment ");
118 appendedChild = elem.appendChild(comment);
nodeinsertbefore07.js 87 Using insertBefore on this Document node attempt to insert a Comment node created by
117 newComment = docAlt.createComment("Comment");
nodeinsertbefore08.js 87 Using insertBefore on this Document node attempt to insert a Comment node created by
117 newComment = doc.createComment("Comment");
nodeinsertbefore11.js 95 var comment;
111 comment = doc.createComment("Comment");
117 appendedChild = docFrag.appendChild(comment);
121 inserted = docFrag.insertBefore(comment,pi);
124 assertEquals("nodeinsertbefore11_Comment","Comment",insertedVal);
125 inserted = docFrag.insertBefore(txt,comment);
nodeinsertbefore15.js 81 Comment, ProcessingInstruction and CDATASection nodes before an element child
96 var comment;
133 comment = doc.createComment("Comment");
138 inserted = entRef.insertBefore(comment,elemChild);
nodeinsertbefore24.js 78 Using insertBefore on an Element node attempt to insert a Comment node before
102 newNode = doc.createComment("Comment");
nodesetuserdata07.js 80 Invoke setUserData on a Notation to set its UserData to a Comment node
82 by second setUserData is the Comment node set in the first setUserData call.
95 var comment;
113 comment = doc.createComment("COMMENT_NODE");
115 notation.setUserData("Key1", comment, null);
117 notation.setUserData("Key1", comment, nullHandler.handle);
120 notation.setUserData("Key1", comment, null);
122 notation.setUserData("Key1", comment, nullHandler.handle);
124 success = returned.isEqualNode(comment);
nodereplacechild23.js 79 Comment, ProcessingInstruction and CDATASection nodes with each other and in each case
93 var comment;
107 comment = doc.createComment("Comment");
112 appendedChild = elem.appendChild(comment);
141 replaced = entRef.replaceChild(comment,pi);
152 replaced = entRef.replaceChild(txt,comment);
nodereplacechild38.js 79 Comment, ProcessingInstruction and CDATASection nodes and in each case verify if
97 var comment;
140 comment = doc.createComment("Comment");
145 replaced = ent.replaceChild(comment,oldChild);
  /external/v8/src/arm/
full-codegen-arm.cc 143 Comment cmnt(masm_, "[ function compiled by full code generator");
182 { Comment cmnt(masm_, "[ Allocate locals");
193 Comment cmnt(masm_, "[ Allocate local context");
229 Comment cmnt(masm_, "[ Allocate arguments object");
269 Comment cmnt(masm_, "[ Declarations");
274 { Comment cmnt(masm_, "[ Declarations");
287 { Comment cmnt(masm_, "[ Stack check");
298 { Comment cmnt(masm_, "[ Body");
307 { Comment cmnt(masm_, "[ return <undefined>;");
353 Comment cmnt(masm_, "[ Stack check")
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 131 Comment cmnt(masm_, "[ function compiled by full code generator");
169 { Comment cmnt(masm_, "[ Allocate locals");
186 Comment cmnt(masm_, "[ Allocate local context");
225 Comment cmnt(masm_, "[ Allocate arguments object");
263 Comment cmnt(masm_, "[ Declarations");
268 { Comment cmnt(masm_, "[ Declarations");
281 { Comment cmnt(masm_, "[ Stack check");
293 { Comment cmnt(masm_, "[ Body");
302 { Comment cmnt(masm_, "[ return <undefined>;");
343 Comment cmnt(masm_, "[ Stack check")
    [all...]
  /external/v8/src/mips/
full-codegen-mips.cc 151 Comment cmnt(masm_, "[ function compiled by full code generator");
189 { Comment cmnt(masm_, "[ Allocate locals");
200 Comment cmnt(masm_, "[ Allocate local context");
236 Comment cmnt(masm_, "[ Allocate arguments object");
276 Comment cmnt(masm_, "[ Declarations");
281 { Comment cmnt(masm_, "[ Declarations");
294 { Comment cmnt(masm_, "[ Stack check");
304 { Comment cmnt(masm_, "[ Body");
313 { Comment cmnt(masm_, "[ return <undefined>;");
362 Comment cmnt(masm_, "[ Stack check")
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 126 Comment cmnt(masm_, "[ function compiled by full code generator");
183 { Comment cmnt(masm_, "[ Allocate locals");
200 Comment cmnt(masm_, "[ Allocate local context");
238 Comment cmnt(masm_, "[ Allocate arguments object");
276 Comment cmnt(masm_, "[ Declarations");
281 { Comment cmnt(masm_, "[ Declarations");
294 { Comment cmnt(masm_, "[ Stack check");
304 { Comment cmnt(masm_, "[ Body");
313 { Comment cmnt(masm_, "[ return <undefined>;");
327 Comment cmnt(masm_, "[ Stack check")
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeNormalize.java 34 import org.w3c.dom.Comment;
104 Comment comment; local
123 comment = newDoc.createComment("comment");
147 element5.appendChild(comment);
ImportNode.java 35 import org.w3c.dom.Comment;
159 Comment comment; local
167 comment = aNewDoc.createComment("this is a comment");
168 aNode = doc.importNode(comment, false);
176 assertEquals("nodeValue", "this is a comment", value);
182 Comment comment; local
190 comment = aNewDoc.createComment("descendant1")
    [all...]
  /external/aac/libMpegTPDec/include/
tp_data.h 164 UCHAR Comment[PC_COMMENTLENGTH];
  /external/aac/libMpegTPEnc/include/
tp_data.h 164 UCHAR Comment[PC_COMMENTLENGTH];
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 27 import org.w3c.dom.Comment;
289 String data = ((Comment) node).getData();
295 lh.comment(data.toCharArray(), 0, data.length());
  /external/apache-xml/src/main/java/org/apache/xml/utils/
TreeWalker.java 25 import org.w3c.dom.Comment;
315 String data = ((Comment) node).getData();
321 lh.comment(data.toCharArray(), 0, data.length());
  /external/v8/test/mjsunit/regress/
regress-892742.js 32 // According to ECMA-262, this comment should be parsed as a
40 return// Comment doesn't include line-terminator at end.
  /external/doclava/src/com/google/doclava/
Comment.java 23 public class Comment {
43 public Comment(String text, ContainerInfo base, SourcePositionInfo sp) {
211 * Finds the index of the start of a new block comment or -1 if there are
215 * @return The index of the start of a new block comment or -1 if there are
238 // found a new block comment because we're at the beginning of a line
250 // some whitespace character, so keep looking, we might be at a new block comment
320 Errors.error(Errors.MISSING_COMMENT, pos, "@deprecated tag with no explanatory comment");
333 Comment c = tag.description();

Completed in 481 milliseconds

1 23 4 5 6 7