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

/dalvik/libcore/luni/src/main/java/java/io/
H A DPrintStream.java52 private boolean autoflush; field in class:PrintStream
80 * stream. The parameter {@code autoflush} determines if the print stream
86 * @param autoflush
92 public PrintStream(OutputStream out, boolean autoflush) { argument
97 this.autoflush = autoflush;
103 * parameter {@code autoflush} determines if the print stream automatically
108 * @param autoflush
118 public PrintStream(OutputStream out, boolean autoflush, String enc) argument
124 this.autoflush
[all...]
H A DPrintWriter.java50 private boolean autoflush; field in class:PrintWriter
71 * stream. The parameter {@code autoflush} determines if the print writer
77 * @param autoflush
83 public PrintWriter(OutputStream out, boolean autoflush) { argument
84 this(new OutputStreamWriter(out), autoflush);
103 * writer. The parameter {@code autoflush} determines if the print writer
109 * @param autoflush
115 public PrintWriter(Writer wr, boolean autoflush) { argument
117 this.autoflush = autoflush;
[all...]

Completed in 132 milliseconds