Searched refs:autoFlush (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DPrintStream.java45 private boolean autoFlush; field in class:PrintStream
68 * stream. The parameter {@code autoFlush} determines if the print stream
74 * @param autoFlush
80 public PrintStream(OutputStream out, boolean autoFlush) { argument
85 this.autoFlush = autoFlush;
91 * parameter {@code autoFlush} determines if the print stream automatically
96 * @param autoFlush
106 public PrintStream(OutputStream out, boolean autoFlush, String charsetName) argument
114 this.autoFlush
[all...]
H A DPrintWriter.java46 private boolean autoFlush; field in class:PrintWriter
64 * stream. The parameter {@code autoFlush} determines if the print writer
70 * @param autoFlush
76 public PrintWriter(OutputStream out, boolean autoFlush) { argument
77 this(new OutputStreamWriter(out), autoFlush);
96 * writer. The parameter {@code autoFlush} determines if the print writer
102 * @param autoFlush
108 public PrintWriter(Writer wr, boolean autoFlush) { argument
110 this.autoFlush = autoFlush;
[all...]

Completed in 66 milliseconds