HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 126 - 150 of 646) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/io/
CharSinkTester.java 27 import java.io.Writer;
79 Writer writer = sink.openStream(); local
81 writer.write(data);
83 writer.close();
90 Writer writer = sink.openBufferedStream(); local
92 writer.write(data);
94 writer.close();
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
XMLElement.java 17 import java.io.Writer;
41 /** Writer for content output */
42 protected final Writer writer; field in class:XMLElement
55 * @param writer
60 protected XMLElement(final Writer writer, final String name) {
61 this.writer = writer;
73 * in case of problems with the writer
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
IndentingPrintWriter.java 20 import java.io.Writer;
50 public IndentingPrintWriter(Writer writer, String singleIndent) {
51 this(writer, singleIndent, -1);
54 public IndentingPrintWriter(Writer writer, String singleIndent, int wrapLength) {
55 super(writer);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
IOUtils.java 32 import java.io.Writer;
83 // Writer. Each method should take at least one of these as a parameter,
150 * Unconditionally close a <code>Writer</code>.
152 * Equivalent to {@link Writer#close()}, except any exceptions will be ignored.
155 * @param output the Writer to close, may be null or already closed
157 public static void closeQuietly(Writer output) {
639 * Writes bytes from a <code>byte[]</code> to chars on a <code>Writer</code>
646 * @param output the <code>Writer</code> to write to
651 public static void write(byte[] data, Writer output) throws IOException {
658 * Writes bytes from a <code>byte[]</code> to chars on a <code>Writer</code
    [all...]
  /packages/services/Telephony/src/org/apache/commons/io/
IOUtils.java 33 import java.io.Writer;
82 // Writer. Each method should take at least one of these as a parameter,
149 * Unconditionally close a <code>Writer</code>.
151 * Equivalent to {@link Writer#close()}, except any exceptions will be ignored.
154 * @param output the Writer to close, may be null or already closed
156 public static void closeQuietly(Writer output) {
564 * Writes bytes from a <code>byte[]</code> to chars on a <code>Writer</code>
571 * @param output the <code>Writer</code> to write to
576 public static void write(byte[] data, Writer output) throws IOException {
583 * Writes bytes from a <code>byte[]</code> to chars on a <code>Writer</code
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 59 SDiagsWriter &Writer;
61 SDiagsRenderer(SDiagsWriter &Writer, const LangOptions &LangOpts,
63 : DiagnosticNoteRenderer(LangOpts, DiagOpts), Writer(Writer) {}
99 SDiagsWriter &Writer;
105 SDiagsMerger(SDiagsWriter &Writer)
106 : SerializedDiagnosticReader(), Writer(Writer) {}
685 Writer.EmitDiagnosticMessage(Loc, PLoc, Level, Message, SM, D);
699 Writer.EnterDiagBlock()
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaPlayerStressTest.java 32 import java.io.Writer;
61 private void writeTestOutput(String filename, Writer output) throws Exception{
73 private void writeTestSummary(Writer output) throws Exception{
114 Writer output = new BufferedWriter(new FileWriter(playbackOutput, true));
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaPlayerStreamingStressTest.java 36 import java.io.Writer;
77 private void writeTestOutput(String filename, Writer output) throws Exception{
89 private void writeTestSummary(Writer output) throws Exception{
121 Writer output = new BufferedWriter(new FileWriter(playbackOutput, true));
MediaPlayerStressTest.java 34 import java.io.Writer;
73 private void writeTestOutput(String filename, Writer output) throws Exception{
87 private void writeTestSummary(Writer output) throws Exception{
124 Writer output = new BufferedWriter(new FileWriter(playbackOutput, true));
  /libcore/ojluni/src/main/java/java/sql/
Clob.java 287 java.io.Writer setCharacterStream(long pos) throws SQLException;
  /development/tools/mkstubs/src/com/android/mkstubs/
SourceGenerator.java 29 import java.io.Writer;
88 void visitClassSource(Writer fw, ClassReader cr, Filter filter) {
  /external/guava/guava/src/com/google/common/io/
ByteSink.java 26 import java.io.Writer;
147 public Writer openStream() throws IOException {
  /external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
AntFilesLocatorTest.java 24 import java.io.Writer;
65 final Writer writer = new OutputStreamWriter( local
67 writer.write("Source");
68 writer.close();
  /external/jetty/src/java/org/eclipse/jetty/util/
MultiPartWriter.java 23 import java.io.Writer;
48 public MultiPartWriter(Writer out)
  /external/proguard/src/proguard/io/
ManifestRewriter.java 49 Writer writer)
53 new SplitLineWriter(writer));
157 * This Writer writes manifest files, splitting any long lines.
164 public SplitLineWriter(Writer writer)
166 super(writer);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
RawDexFile.java 43 import java.io.Writer;
96 public void writeAnnotations(@Nonnull Writer out, @Nonnull AnnotatedBytes annotatedBytes) throws IOException {
  /external/testng/src/main/java/org/testng/reporters/
Files.java 16 import java.io.Writer;
63 Writer writer = new StringWriter(); local
70 writer.write(buffer, 0, n);
75 return writer.toString();
  /libcore/luni/src/test/java/libcore/java/io/
OldFilterWriterTest.java 31 public MyFilterWriter(java.io.Writer writer) {
32 super(writer);
36 class MockWriter extends java.io.Writer {
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlSerializer.java 5 import java.io.Writer;
98 * Set the output to the given writer.
101 void setOutput (Writer writer)
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 42 import java.io.Writer;
132 final Writer writer = new OutputStreamWriter(stream); local
138 writeHeader(writer, "Date", date);
140 writeEncodedHeader(writer, "Subject", message.mSubject);
142 writeHeader(writer, "Message-ID", message.mMessageId);
144 writeAddressHeader(writer, "From", message.mFrom);
145 writeAddressHeader(writer, "To", message.mTo);
146 writeAddressHeader(writer, "Cc", message.mCc);
150 writeAddressHeader(writer, "Bcc", message.mBcc)
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/capitalize/
capitalize.cpp 7 #include "rapidjson/writer.h"
53 // Prepare JSON writer and output stream.
56 Writer<FileWriteStream> writer(os);
58 // JSON reader parse from the input stream and let writer generate the output.
59 CapitalizeFilter<Writer<FileWriteStream> > filter(writer);
  /art/compiler/debug/dwarf/
debug_info_entry_writer.h 27 #include "debug/dwarf/writer.h"
34 * Writer for debug information entries (DIE).
45 class DebugInfoEntryWriter FINAL : private Writer<Vector> {
196 using Writer<Vector>::data;
197 using Writer<Vector>::size;
198 using Writer<Vector>::UpdateUint32;
204 : Writer<Vector>(&entries_),
debug_line_opcode_writer.h 23 #include "debug/dwarf/writer.h"
28 // Writer for the .debug_line opcodes (DWARF-3).
29 // The writer is very light-weight, however it will do the following for you:
34 class DebugLineOpCodeWriter FINAL : private Writer<Vector> {
221 using Writer<Vector>::data;
227 : Writer<Vector>(&opcodes_),
  /cts/libs/json/src/com/android/json/stream/
JsonWriter.java 21 import java.io.Writer;
34 * writer as you walk the structure's contents, nesting arrays and objects as
72 * JsonWriter writer = new JsonWriter(new OutputStreamWriter(out, "UTF-8"));
73 * writer.setIndent(" ");
74 * writeMessagesArray(writer, messages);
75 * writer.close();
78 * public void writeMessagesArray(JsonWriter writer, List<Message> messages) throws IOException {
79 * writer.beginArray();
81 * writeMessage(writer, message);
83 * writer.endArray()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 29 import java.io.Writer;
224 public void debugPrint(Writer out, String prefix, boolean verbose) {
259 Writer w = new OutputStreamWriter(out);

Completed in 498 milliseconds

1 2 3 4 56 7 8 91011>>