Searched defs:comments (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDOMConfigurationImpl.java75 * True to keep comments in the document; false to discard them.
77 PARAMETERS.put("comments", new BooleanParameter() {
79 return config.comments;
82 config.comments = (Boolean) value;
146 * comments = true
160 && config.comments
172 config.comments = true;
273 * comments, text, CDATA sections and processing instructions.
288 private boolean comments = true; field in class:DOMConfigurationImpl
415 if (!comments) {
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DProperties.java654 private static void writeComments(BufferedWriter bw, String comments) argument
657 int len = comments.length();
664 char c = comments.charAt(current);
667 bw.write(comments.substring(last, current));
678 comments.charAt(current + 1) == '\n') {
682 (comments.charAt(current + 1) != '#' &&
683 comments.charAt(current + 1) != '!'))
691 bw.write(comments.substring(last, current));
696 * Calls the {@code store(OutputStream out, String comments)} method
702 * String comments)} metho
712 save(OutputStream out, String comments) argument
767 store(Writer writer, String comments) argument
814 store(OutputStream out, String comments) argument
822 store0(BufferedWriter bw, String comments, boolean escUnicode) argument
[all...]

Completed in 61 milliseconds