Searched defs:writer (Results 1 - 14 of 14) 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/ojluni/src/main/java/java/util/logging/
H A DStreamHandler.java65 private Writer writer; field in class:StreamHandler
133 writer = new OutputStreamWriter(output);
136 writer = new OutputStreamWriter(output, encoding);
164 // Replace the current writer with a writer for the new encoding.
167 writer = new OutputStreamWriter(output);
169 writer = new OutputStreamWriter(output, encoding);
206 writer.write(getFormatter().getHead(this));
209 writer.write(msg);
230 if (writer
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DWriterTesterTest.java93 private CharArrayWriter writer; field in class:WriterTesterTest.CharArrayWriterCharSinkTester
97 writer = new CharArrayWriter();
98 return writer;
103 return writer.toCharArray();
141 private StringWriter writer; field in class:WriterTesterTest.StringWriterCharSinkTester
145 writer = new StringWriter();
146 return writer;
151 return writer.toString().toCharArray();
H A DOutputStreamWriterTest.java42 private OutputStreamWriter writer; field in class:OutputStreamWriterTest
64 writer = new OutputStreamWriter(out, "utf-8");
76 writer.close();
90 writer.flush();
91 writer.close();
93 writer.flush();
101 writer.write(source);
102 writer.flush();
115 writer.write((char[]) null, -1, -1);
123 writer
[all...]
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DEngineOutputRecord.java50 private EngineWriter writer; field in class:EngineOutputRecord
67 writer = engine.writer;
166 writer.putOutboundData(netBB);
H A DSSLEngineImpl.java185 EngineWriter writer; field in class:SSLEngineImpl
410 writer = new EngineWriter();
485 if (writer.hasOutboundData()) {
1022 if (!writer.hasOutboundData()) {
1182 if (writer.isOutboundDone()) {
1265 writer.writeRecord(eor, ea, writeMAC, writeCipher);
1320 writer.writeRecord(eor, writeMAC, writeCipher);
1416 if (writer.isOutboundDone()) {
1426 writer.closeOutbound();
1442 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/ojluni/src/main/java/java/io/
H A DConsole.java57 * on the objects returned by {@link #reader()} and {@link #writer()} may
61 * and the {@link #writer()} will not close the underlying stream of those
101 public PrintWriter writer() { method in class:Console
/libcore/ojluni/src/main/java/java/util/
H A DProperties.java754 * @param writer an output character stream writer.
760 * @exception NullPointerException if <code>writer</code> is null.
763 public void store(Writer writer, String comments) argument
766 store0((writer instanceof BufferedWriter)?(BufferedWriter)writer
767 : new BufferedWriter(writer),
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java36 private Writer writer; field in class:KXmlSerializer
80 writer.write(mText, 0, mPos);
81 writer.flush();
157 // No other Java XML writer we know of does this, but no Java
188 writer.write("\r\n");
190 writer.write(' ');
337 public void setOutput(Writer writer) { argument
338 this.writer = writer;
474 writer
[all...]
/libcore/luni/src/test/java/libcore/xml/
H A DXmlPullParserFactoryTest.java158 public void setOutput(Writer writer) throws IOException { argument
/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/ ...

Completed in 2053 milliseconds