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

1 2 34 5 6 7

  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 505 const MCSection *Comment =
506 getContext().getELFSection(".comment", ELF::SHT_PROGBITS,
513 getStreamer().SwitchSection(Comment);
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodecommentnodeattributes.js 78 The "getAttributes()" method invoked on a Comment
81 Find any comment that is an immediate child of the root
83 a new comment node (in case they had been omitted) and
123 commentNode = doc.createComment("This is a comment");
hc_nodecommentnodetype.js 78 The "getNodeType()" method for a Comment Node
82 a comment node and invoke the "getNodeType()" method. This should
112 ("#comment" == commentNodeName)
121 commentNode = doc.createComment("This is a comment");
hc_nodecommentnodevalue.js 79 Comment Node is the content of the comment.
81 Retrieve the comment in the XML file and
83 It should be equal to "This is comment number 1".
112 ("#comment" == commentName)
116 assertEquals("value"," This is comment number 1.",commentValue);
121 commentNode = doc.createComment(" This is a comment");
124 assertEquals("createdCommentNodeValue"," This is a comment",commentValue);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodecommentnodeattributes.js 78 The "getAttributes()" method invoked on a Comment
81 Find any comment that is an immediate child of the root
83 a new comment node (in case they had been omitted) and
123 commentNode = doc.createComment("This is a comment");
hc_nodecommentnodetype.js 78 The "getNodeType()" method for a Comment Node
82 a comment node and invoke the "getNodeType()" method. This should
112 ("#comment" == commentNodeName)
121 commentNode = doc.createComment("This is a comment");
hc_nodecommentnodevalue.js 79 Comment Node is the content of the comment.
81 Retrieve the comment in the XML file and
83 It should be equal to "This is comment number 1".
112 ("#comment" == commentName)
116 assertEquals("value"," This is comment number 1.",commentValue);
121 commentNode = doc.createComment(" This is a comment");
124 assertEquals("createdCommentNodeValue"," This is a comment",commentValue);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentadoptnode34.js 78 Invoke the adoptNode method on a new document using a new Comment node created in it
documentnormalizedocument04.js 81 Append a Comment node and normalize with "comments" set to false.
125 assertEquals("documentnormalizedocument04_true","#comment",nodeName);
infoset09.js 81 Append a Comment node and normalize with "infoset" set to true.
125 assertEquals("commentPreserved","#comment",nodeName);
nodeisdefaultnamespace15.js 78 Using isDefaultNamespace on a Element's new cloned Comment node, which has a namespace attribute
92 var comment;
106 comment = doc.createComment("Text");
107 clonedComment = comment.cloneNode(true);
nodelookupnamespaceuri15.js 79 Invoke lookupNamespaceURI on a Element's new Comment node, which has a namespace attribute declaration
93 var comment;
106 comment = doc.createComment("Text");
107 clonedComment = comment.cloneNode(true);
nodelookupprefix15.js 79 Invoke lookupPrefix on a Element's new Comment node, which has a namespace attribute declaration
93 var comment;
107 comment = doc.createComment("Text");
108 clonedComment = comment.cloneNode(true);
noderemovechild22.js 78 Using removeChild on a new Element node attempt to remove a new Comment child
nodereplacechild12.js 79 node with new Comment node.
92 var comment;
103 comment = doc.createComment("dom3:doc");
105 appendedChild = doc.appendChild(comment);
107 replacedNode = doc.replaceChild(comment,pi);
117 assertEquals("lastChildIsComment","#comment",nodeName);
nodereplacechild16.js 103 txt = doc.createTextNode("Comment");
nodesettextcontent10.js 95 var comment;
109 comment = doc.createComment("Comment ");
114 appendedChild = elem.appendChild(comment);
nodesettextcontent11.js 95 var comment;
110 comment = doc.createComment("Comment ");
115 appendedChild = elem.appendChild(comment);
nodesetuserdata06.js 80 Invoke setUserData on a new Comment to set its UserData to an Entity node
95 var comment;
113 comment = doc.createComment("COMMENT_NODE");
115 comment.setUserData("Key1", entity, null);
117 comment.setUserData("Key1", entity, nullHandler.handle);
120 comment.setUserData("Key1", entity, null);
122 comment.setUserData("Key1", entity, nullHandler.handle);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 24 import org.w3c.dom.Comment;
147 return createComment(((Comment) node).getData());
  /external/webkit/Source/WebCore/bindings/js/
JSNodeCustom.cpp 31 #include "Comment.h"
281 wrapper = CREATE_DOM_NODE_WRAPPER(exec, globalObject, Comment, node);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8NodeCustom.cpp 159 return toV8(static_cast<Comment*>(impl), forceNewObject);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodenormalize01.java 87 Comment comment; local
105 comment = newDoc.createComment("comment");
129 appendedChild = element5.appendChild(comment);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
UnImplNode.java 28 import org.w3c.dom.Comment;
856 * @param data Data for comment
860 public Comment createComment(String data)
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 150 /// \brief Tracks all of the comment handlers that the client registered
490 /// \brief Add the specified comment handler to the preprocessor.
493 /// \brief Remove the specified comment handler.
607 /// LexNonComment - Lex a token. If it's a comment, keep lexing until we get
608 /// something not a comment. This is useful in -E -C mode where comments
613 while (Result.getKind() == tok::comment);
634 while (Result.getKind() == tok::comment);
    [all...]

Completed in 1326 milliseconds

1 2 34 5 6 7