Searched defs:writer (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/main/java/javax/xml/transform/stream/
H A DStreamResult.java68 * @param writer A valid Writer reference.
70 public StreamResult(Writer writer) { argument
71 setWriter(writer);
115 * Set the writer that is to receive the result. Normally,
116 * a stream should be used rather than a writer, so that
119 * there are times when it is useful to write to a writer,
122 * @param writer A valid Writer reference.
124 public void setWriter(Writer writer) { argument
125 this.writer = writer;
193 private Writer writer; field in class:StreamResult
[all...]
/libcore/luni/src/main/java/java/io/
H A DConsole.java34 private final PrintWriter writer; field in class:Console
58 this.writer = new ConsoleWriter(out);
62 writer.flush();
77 Formatter f = new Formatter(writer);
141 writer.println(); // We won't have echoed the user's newline.
179 public PrintWriter writer() { method in class:Console
180 return writer;
203 // Console.writer cannot be closed.
/libcore/luni/src/main/java/java/util/logging/
H A DStreamHandler.java53 // the writer that writes to the output stream
54 private Writer writer; field in class:StreamHandler
56 // the flag indicating whether the writer has been initialized
66 this.writer = null;
92 this.writer = null;
119 // initialize the writer
123 this.writer = new OutputStreamWriter(this.os);
126 this.writer = new OutputStreamWriter(this.os, getEncoding());
140 this.writer.write(s);
174 this.writer
[all...]
/libcore/luni/src/test/java/libcore/java/io/
H A DInterruptedStreamTest.java78 PipedWriter writer = new PipedWriter();
79 PipedReader reader = new PipedReader(writer);
84 final PipedWriter writer = new PipedWriter();
85 new PipedReader(writer);
86 testInterruptWriter(writer);
166 private void testInterruptWriter(final PipedWriter writer) throws Exception { argument
171 writer.write(new char[BUFFER_SIZE]);
H A DOldFilterWriterTest.java31 public MyFilterWriter(java.io.Writer writer) { argument
32 super(writer);
/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlSerializer.java98 * Set the output to the given writer.
101 void setOutput (Writer writer) argument
/libcore/luni/src/main/java/java/util/
H A DProperties.java531 * @param writer the {@code Writer}
537 public synchronized void store(Writer writer, String comment) throws IOException { argument
539 writer.write("#");
540 writer.write(comment);
541 writer.write(System.lineSeparator());
543 writer.write("#");
544 writer.write(new Date().toString());
545 writer.write(System.lineSeparator());
554 writer.write(sb.toString());
557 writer
[all...]
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java38 // (Guarantee that the writer is always buffered.)
39 private BufferedWriter writer; field in class:KXmlSerializer
70 writer.write(' ');
71 writer.write("xmlns");
73 writer.write(':');
74 writer.write(nspStack[i * 2]);
78 writer.write("=\"");
80 writer.write('"');
92 writer.write(close ? " />" : ">");
103 writer
299 setOutput(Writer writer) argument
[all...]
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 270 milliseconds