Searched refs:comment (Results 151 - 175 of 391) sorted by relevance

1234567891011>>

/external/tinyxml2/
H A Dtinyxml2.cpp734 // <!-- comment -->
739 // <!-- comment -->
883 XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. Intern? local
884 return comment;
1440 commentPool.Trace( "comment" );
1474 XMLComment* comment = new (commentPool.Alloc()) XMLComment( this ); local
1475 comment->memPool = &commentPool;
1476 comment->SetValue( str );
1477 return comment;
1927 void XMLPrinter::PushComment( const char* comment )
[all...]
/external/dropbear/
H A Dkeyimport.c61 static int sshcom_encrypted(const char *filename, char **comment);
1049 char comment[256]; /* allowing any length is overkill */
1066 ret->comment[0] = '\0';
1113 /* Strip quotes in comment if present. */
1118 strncpy(ret->comment, p, sizeof(ret->comment));
1119 ret->comment[sizeof(ret->comment)-1] = '\0';
1173 int sshcom_encrypted(const char *filename, char **comment)
1178 *comment
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A Djsilver.sablecc65 comment; // Inside a <?cs # comment ?>.
81 {comment} comment = ( [all - '?']
142 {command->comment} comment_start = '#';
145 {command->content, args->content, comment->content} cs_close = whitespace* '?>';
194 | {comment} cs_open comment_start comment? cs_close
195 // <?cs # comment ?>
196 {->New command.comment(Ne
[all...]
/external/doclava/src/com/google/doclava/
H A DMethodInfo.java33 return comment().tags();
178 return comment().briefTags();
193 return comment().returnTags();
209 boolean commentDeprecated = comment().isDeprecated();
383 ThrowsTagInfo[] documented = comment().throwsTags();
431 for (ParamTagInfo tag : comment().paramTags()) {
475 SeeTagInfo[] result = comment().seeTags();
485 TagInfo[] result = comment().deprecatedTags();
487 if (comment().undeprecateTags().length == 0) {
564 AttrTagInfo.makeReferenceHDF(data, base + ".attrRefs", comment()
[all...]
/external/tinyxml/
H A Dxmltest.cpp168 node = todoElement->FirstChildElement(); // This skips the "PDA" comment.
261 XmlTest( "First child exists & is a comment.", true, ( node != 0 && node->ToComment() ) );
392 TiXmlComment* comment = commentHandle.Node()->ToComment(); local
393 assert( comment );
403 XmlTest( "Location tracking: Comment row", comment->Row(), 2 );
404 XmlTest( "Location tracking: Comment col", comment->Column(), 3 );
593 TiXmlComment comment; local
594 comment.Parse( "<!--comment-->", 0, TIXML_ENCODING_UNKNOWN );
595 TiXmlComment commentCopy( comment );
898 TiXmlComment* comment = docH.Child( 0 ).Node()->ToComment(); local
[all...]
/external/openssh/
H A Dssh-agent.c107 char *comment; member in struct:identity
177 xfree(id->comment);
204 id->comment, p))
235 buffer_put_cstring(&msg, id->comment);
448 debug("expiring key '%s'", id->comment);
469 char *type_name, *comment; local
614 comment = buffer_get_string(&e->request, NULL);
616 xfree(comment);
630 xfree(comment);
646 xfree(id->comment);
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToUnknownStream.java525 * @see ExtendedLexicalHandler#comment(String)
527 public void comment(String comment) throws SAXException argument
539 m_handler.comment(comment);
886 * @see org.xml.sax.ext.LexicalHandler#comment(char[], int, int)
888 public void comment(char[] ch, int start, int length) throws SAXException method in class:ToUnknownStream
895 m_handler.comment(ch, start, length);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DInsnFormat.java59 String comment = insnCommentString(insn, noteIndices);
69 if (comment.length() != 0) {
71 sb.append(comment);
91 * Returns the associated comment for the given instruction, if any.
93 * has no comment, then the result should be {@code ""}, not
266 * Helper method to return a literal bits comment string.
271 * @return {@code non-null;} the comment
316 * Helper method to return the comment for a branch.
319 * @return {@code non-null;} the comment
344 * Helper method to return an instruction comment fo
[all...]
/external/chromium/crypto/
H A Dsignature_verifier_win.cc9 #pragma comment(lib, "crypt32.lib")
/external/chromium/net/proxy/
H A Dproxy_config_service_win.cc20 #pragma comment(lib, "winhttp.lib")
H A Dproxy_resolver_winhttp.cc17 #pragma comment(lib, "winhttp.lib")
/external/libvpx/examples/includes/geshi/geshi/
H A Dd.php54 // Script Style interpreter comment
H A Dini.php112 // Explicit match on variable names because if a comment is before the first < of the span
H A Dsql.php20 * - Added "#" single comment starter
/external/llvm/lib/Support/Windows/
H A DSignals.inc27 #pragma comment(lib, "psapi.lib")
28 #pragma comment(lib, "dbghelp.lib")
/external/mksh/src/
H A Demacsfn.h18 FN(comment, "comment", 0)
/external/qemu/
H A Dm68k.ld149 .comment 0 : { *(.comment) }
H A Dx86_64.ld156 .comment 0 : { *(.comment) }
/external/skia/src/utils/
H A DSkParseColor.cpp182 SkString comment; local
212 comment.append(start, name - start);
216 SkDebugf("// %s\n", comment.c_str());
217 comment.reset();
/external/stlport/stlport/stl/config/
H A D_msvc.h256 # pragma comment (lib, "bufferoverflowU.lib")
/external/webkit/LayoutTests/fast/dom/Node/script-tests/
H A Dinitial-values.js53 var comment = document.createComment("foo"); variable
54 shouldBe("comment.nodeName", "'#comment'");
55 shouldBe("comment.localName", "null");
56 shouldBe("comment.namespaceURI", "null");
57 shouldBe("comment.prefix", "null");
58 shouldBe("comment.nodeValue", "'foo'");
59 shouldBe("comment.data", "'foo'");
60 shouldBe("comment.attributes", "null");
/external/webkit/Source/WebCore/html/parser/
H A DHTMLToken.h276 const DataVector& comment() const function in class:WebCore::HTMLToken
407 m_data = String(token.comment().data(), token.comment().size());
469 const String& comment() const function in class:WebCore::AtomicHTMLToken
/external/webkit/Source/WebCore/xml/
H A DXMLViewer.js291 var comment = createHTMLElement('span');
292 comment.classList.add('webkit-html-comment');
293 comment.textContent = commentString;
294 return comment;
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Doptions.py40 comment = make_option("--comment", action="store", type="string", dest="comment", help="Comment to post to bug.") variable in class:Options
/external/chromium/third_party/libjingle/source/talk/base/
H A Dflags.cc44 Flag::Flag(const char* file, const char* name, const char* comment, argument
48 comment_(comment),

Completed in 2448 milliseconds

1234567891011>>