Searched defs:comment (Results 1 - 25 of 144) sorted by last modified time

123456

/external/zlib/src/
H A Dzlib.h122 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ member in struct:gz_header_s
123 uInt comm_max; /* space at comment (only when reading header) */
554 file name, no extra data, no comment, no modification time (set to zero), no
751 deflate(). The text, time, os, extra field, name, and comment information
754 caller must assure that, if not Z_NULL, name and comment are terminated with
762 the time set to zero, and os set to 255, with no extra, name, or comment
969 comment is not Z_NULL, then up to comm_max characters are written there,
971 of extra, name, or comment are not Z_NULL and the respective field is not
/external/zlib/
H A Dzlib.h122 Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */ member in struct:gz_header_s
123 uInt comm_max; /* space at comment (only when reading header) */
554 file name, no extra data, no comment, no modification time (set to zero), no
751 deflate(). The text, time, os, extra field, name, and comment information
754 caller must assure that, if not Z_NULL, name and comment are terminated with
762 the time set to zero, and os set to 255, with no extra, name, or comment
969 comment is not Z_NULL, then up to comm_max characters are written there,
971 of extra, name, or comment are not Z_NULL and the respective field is not
/external/xmlwriter/src/org/jheer/
H A DXMLWriter.java138 * Write a comment in the XML document. The comment will be written
140 * @param comment the comment text
142 public void comment(String comment) throws IOException { argument
145 m_out.write(comment);
/external/zlib/src/contrib/minizip/
H A Dmztools.c150 char* comment = ""; local
151 int comsize = (int) strlen(comment);
198 if ((int)fwrite(comment, 1, comsize, fpOutCD) == comsize) {
225 char* comment = ""; // "ZIP File recovered by zlib/minizip/mztools"; local
226 int comsize = (int) strlen(comment);
237 WRITE_16(header + 20, comsize); /* comment */
244 if ((int)fwrite(comment, 1, comsize, fpOutCD) != comsize) {
H A Dzip.c476 the global comment)
485 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
538 the global comment)
547 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
731 // read the comment from the standard central header.
784 /* zipfile global comment length */
1058 const char* comment, int method, int level, int raw,
1098 if (comment==NULL)
1101 size_comment = (uInt)strlen(comment);
1178 size_extrafield_global+i) = *(comment
1055 zipOpenNewFileInZip4_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase, int zip64) argument
1265 zipOpenNewFileInZip4(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase) argument
1281 zipOpenNewFileInZip3(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting) argument
1296 zipOpenNewFileInZip3_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, int zip64) argument
1311 zipOpenNewFileInZip2(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw) argument
1324 zipOpenNewFileInZip2_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int zip64) argument
1337 zipOpenNewFileInZip64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void*extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int zip64) argument
1350 zipOpenNewFileInZip(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void*extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level) argument
[all...]
/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/webkit/Source/WebCore/dom/
H A DXMLDocumentParserLibxml2.cpp295 parser->comment(s);
1014 void XMLDocumentParser::comment(const xmlChar* s) function in class:WebCore::XMLDocumentParser
1155 static void commentHandler(void* closure, const xmlChar* comment) argument
1160 getParser(closure)->comment(comment);
1301 sax.comment = commentHandler;
H A Dxml_expat_tokenizer.cpp230 tokenizer->comment(s);
608 void XMLTokenizer::comment(const XML_Char *s) function in class:WebCore::XMLTokenizer
684 static void commentHandler(void *userdata, const XML_Char *comment) argument
687 tokenizer->comment(comment);
/external/webkit/Source/WebCore/editing/
H A DMarkupAccumulator.cpp274 void MarkupAccumulator::appendComment(Vector<UChar>& out, const String& comment) argument
278 append(out, comment);
/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/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/v8/src/
H A Dcpu-profiler.cc352 Code* code, const char* comment) {
354 tag, comment, code->address(), code->ExecutableSize());
351 CodeCreateEvent(Logger::LogEventsAndTags tag, Code* code, const char* comment) argument
H A Dflags.cc52 // to the actual flag, default value, comment, etc. This is designed to be POD
61 const char* cmt_; // A comment about the flags purpose.
68 const char* comment() const { return cmt_; } function in struct:v8::internal::__anon13458::Flag
533 f->name(), f->comment(), Type2String(f->type()), *value);
H A Dlog.cc866 const char* comment) {
872 name_buffer_->AppendBytes(comment);
887 for (const char* p = comment; *p != '\0'; p++) {
864 CodeCreateEvent(LogEventsAndTags tag, Code* code, const char* comment) argument
H A Dspaces.cc2332 PrintF("Code comment statistics (\" [ comment-txt : size/ "
2337 PrintF(" %-30s: %10d/%6d (%d)\n", cs.comment, cs.size, cs.count,
2353 comments_statistics[CommentStatistic::kMaxComments].comment = "Unknown";
2359 // Adds comment to 'comment_statistics' table. Performance OK as long as
2361 static void EnterComment(Isolate* isolate, const char* comment, int delta) { argument
2370 if (comments_statistics[i].comment == NULL) {
2372 cs->comment = comment;
2374 } else if (strcmp(comments_statistics[i].comment, commen
[all...]
H A Dspaces.h2631 const char* comment; member in struct:v8::internal::CommentStatistic
2635 comment = NULL;
/external/v8/src/ia32/
H A Ddisasm-ia32.cc359 int JumpConditional(byte* data, const char* comment);
360 int JumpConditionalShort(byte* data, const char* comment);
630 int DisassemblerIA32::JumpConditional(byte* data, const char* comment) { argument
636 if (comment != NULL) {
637 AppendToBuffer(", %s", comment);
644 int DisassemblerIA32::JumpConditionalShort(byte* data, const char* comment) { argument
650 if (comment != NULL) {
651 AppendToBuffer(", %s", comment);
H A Dfull-codegen-ia32.cc3878 const char* comment) {
3879 Comment cmt(masm_, comment);
3877 EmitUnaryOperation(UnaryOperation* expr, const char* comment) argument
/external/v8/src/mips/
H A Dfull-codegen-mips.cc3940 const char* comment) {
3942 Comment cmt(masm_, comment);
3939 EmitUnaryOperation(UnaryOperation* expr, const char* comment) argument
/external/v8/src/x64/
H A Dfull-codegen-x64.cc3791 const char* comment) {
3793 Comment cmt(masm_, comment);
3790 EmitUnaryOperation(UnaryOperation* expr, const char* comment) argument
/external/valgrind/main/VEX/priv/
H A Dguest_amd64_toIR.c1471 no-redir jump (XXX no -- see comment at top of this file)) to
1891 /* Possibly generate a store of 'tres' to 'taddr'. See comment at
1950 /* Possibly generate a store of 'tres' to 'taddr'. See comment at
9107 /* Spot "Special" instructions (see comment at top of file). */
16504 HChar* comment = ""; local
16528 comment = "(assumed taken)";
16546 comment = "(assumed not taken)";
16556 DIP("j%s-8 0x%llx %s\n", name_AMD64Condcode(opc - 0x70), d64, comment);
18377 HChar* comment = ""; local
18400 comment
[all...]
H A Dguest_arm_toIR.c508 /* Ditto comment in getIReg. */
12096 /* Spot "Special" instructions (see comment at top of file). */
12987 HChar* comment = ""; local
13008 comment = "(assumed taken)";
13028 comment = "(assumed not taken)";
13040 dst, comment);
14272 /* Spot "Special" instructions (see comment at top of file). */
H A Dguest_x86_toIR.c750 no-redir jump (XXX no -- see comment at top of this file)) to
1148 /* Possibly generate a store of 'tres' to 'taddr'. See comment at
1202 /* Possibly generate a store of 'tres' to 'taddr'. See comment at
2879 /* See comment above on R case */
6207 /* For the choice of the value 128, see comment in dis_bt_G_E in
7915 /* Spot "Special" instructions (see comment at top of file). */
13171 HChar* comment = ""; local
13193 comment = "(assumed taken)";
13212 comment = "(assumed not taken)";
13221 DIP("j%s-8 0x%x %s\n", name_X86Condcode(opc - 0x70), d32, comment);
14727 HChar* comment = ""; local
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DPYXWriter.java197 public void comment(char[] ch, int start, int length) throws SAXException { method in class:PYXWriter
H A DParser.java1034 theLexicalHandler.comment(buff, offset, length);
1106 public void comment(char[] ch, int start, int length) throws SAXException { } method in class:Parser

Completed in 669 milliseconds

123456