HomeSort by relevance Sort by last modified time
    Searched refs:comment (Results 201 - 225 of 953) sorted by null

1 2 3 4 5 6 7 891011>>

  /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");
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
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);
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;
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);
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);
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);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
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...]
  /system/core/libpixelflinger/codeflinger/
ARMAssembler.cpp 93 ssize_t comment = mComments.indexOfKey(i); local
94 if (comment >= 0) {
95 printf("; %s\n", mComments.valueAt(comment));
103 void ARMAssembler::comment(const char* string) function in class:android::ARMAssembler
356 void ARMAssembler::SWI(int cc, uint32_t comment) {
357 *mPC++ = (cc<<28) | (0xF<<24) | comment;
ARMAssembler.h 58 virtual void comment(const char* string);
108 virtual void SWI(int cc, uint32_t comment);
ARMAssemblerProxy.h 48 virtual void comment(const char* string);
98 virtual void SWI(int cc, uint32_t comment);
  /cts/tests/tests/text/src/android/text/util/cts/
Rfc822TokenizerTest.java 138 * Assert the specified token's name, address and comment all equal specified ones.
142 * @param comment expected comment.
145 String address, String comment) {
148 assertEquals(comment, token.getComment());
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 106 * Returns the comment describing the purpose of this cookie, or
107 * <tt>null</tt> if no such comment has been defined.
109 * @return comment
119 * cookie's purpose will be described using this comment.
121 * @param comment
125 public void setComment(String comment) {
126 cookieComment = comment;
357 /** Comment attribute. */
  /external/chromium/net/base/
keygen_handler_win.cc 9 #pragma comment(lib, "crypt32.lib")
11 #pragma comment(lib, "rpcrt4.lib")
  /external/clang/lib/Lex/
MacroInfo.cpp 71 assert((macroStart.isFileID() || firstToken.is(tok::comment)) &&
73 assert((macroEnd.isFileID() || lastToken.is(tok::comment)) &&
  /external/clang/lib/Rewrite/
RewriteMacros.cpp 53 if (!ReturnComment && RawTokens[CurTok].is(tok::comment))
71 // Switch on comment lexing because we really do want them.
129 // comment the line out.
133 // Comment out #warning.
139 // Comment out #pragma mark.
165 // deleted. Comment out the raw token.
167 // Comment out a whole run of tokens instead of bracketing each one with
179 if (RawTok.is(tok::comment)) {
180 // Skip past the comment.
  /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/libxml2/
SAX.c 119 hdlr->comment = xmlSAX2Comment;
166 hdlr->comment = xmlSAX2Comment;
  /external/webkit/Tools/record-memory-win/
main.cpp 10 #pragma comment(lib, "psapi.lib")
11 #pragma comment(lib, "shlwapi.lib")
  /frameworks/base/core/java/android/util/
EventLog.java 225 Pattern comment = Pattern.compile(COMMENT_PATTERN); local
233 if (comment.matcher(line).matches()) continue;
  /frameworks/base/tools/aidl/
AST.cpp 83 if (this->comment.length() != 0) {
84 fprintf(to, "%s\n", this->comment.c_str());
735 if (this->comment.length() != 0) {
736 fprintf(to, "%s\n", this->comment.c_str());
818 if (this->comment.length() != 0) {
819 fprintf(to, "%s\n", this->comment.c_str());
895 if (this->comment.length() != 0) {
896 fprintf(to, "%s\n", this->comment.c_str());

Completed in 666 milliseconds

1 2 3 4 5 6 7 891011>>