Searched defs:comment (Results 1 - 12 of 12) sorted by relevance

/dalvik/libcore/xml/src/main/java/org/xml/sax/ext/
H A DLexicalHandler.java194 * Report an XML comment anywhere in the document.
202 * @param ch An array holding the characters in the comment.
207 public abstract void comment (char ch[], int start, int length) method in interface:LexicalHandler
H A DDefaultHandler2.java70 public void comment (char ch [], int start, int length) method in class:DefaultHandler2
/dalvik/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlSerializer.java305 void comment (String text) method in interface:XmlSerializer
/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DZipOutputStream.java69 private String comment; field in class:ZipOutputStream
233 if (comment != null) {
234 writeShort(cDir, comment.length());
235 cDir.write(comment.getBytes());
337 * Sets the {@code ZipFile} comment associated with the file being written.
339 * @param comment
340 * the comment associated with the file.
343 public void setComment(String comment) { argument
344 if (comment.length() > 0xFFFF) {
347 this.comment
[all...]
H A DZipEntry.java45 String name, comment; field in class:ZipEntry
86 // private String mFileComment; // CDE = comment
144 comment = null;
149 * Gets the comment for this {@code ZipEntry}.
151 * @return the comment for this {@code ZipEntry}, or {@code null} if there
152 * is no comment. If we're reading an archive with
153 * {@code ZipInputStream} the comment is not available.
157 return comment;
255 * Sets the comment for this {@code ZipEntry}.
258 * the comment fo
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DProperties.java79 + " <!ELEMENT properties (comment?, entry*) >"
81 + " <!ELEMENT comment (#PCDATA) >"
281 * <li>Lines starting with either a "#" or a "!" are comment lines and are
286 * the lines. This does not apply to comment lines.</li>
496 * OutputStream}, putting the specified comment at the beginning. The output
501 * @param comment the comment to add at the beginning.
510 public void save(OutputStream out, String comment) { argument
512 store(out, comment);
536 * OutputStream}, putting the specified comment a
548 store(OutputStream out, String comment) argument
693 storeToXML(OutputStream os, String comment) argument
717 storeToXML(OutputStream os, String comment, String encoding) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java548 public void comment(String comment) throws IOException { argument
551 writer.write(comment);
/dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/support/
H A DMockHandler.java119 public void comment(char[] ch, int start, int length) throws SAXException { method in class:MockHandler
120 logger.add("comment", ch, start, length);
/dalvik/libcore/xml/src/main/java/org/kxml2/wap/
H A DWbxmlSerializer.java78 /* silently ignore comment */
80 public void comment (String comment) { argument
/dalvik/libcore/archive/src/main/native/
H A Dzipsup.h106 U_8 *comment; member in struct:HyZipCentralEnd
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/
H A DExpatParser.java170 /*package*/ void comment(char[] text, int length) throws SAXException { method in class:ExpatParser
173 lexicalHandler.comment(text, 0, length);
/dalvik/libcore/xml/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp646 * Called by Expat when it encounters a comment. Delegates to the same method
650 * @param comment 0-terminated
652 static void comment(void* data, const char* comment) { argument
653 bufferAndInvoke(commentMethod, data, comment, strlen(comment));
973 XML_SetCommentHandler(parser, comment);
1442 commentMethod = env->GetMethodID((jclass) clazz, "comment", "([CI)V");

Completed in 1181 milliseconds