/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/Dialer/java/com/android/voicemail/impl/utils/ |
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...] |
/external/clang/lib/Frontend/ |
SerializedDiagnosticPrinter.cpp | 60 SDiagsWriter &Writer; 62 SDiagsRenderer(SDiagsWriter &Writer, const LangOptions &LangOpts, 64 : DiagnosticNoteRenderer(LangOpts, DiagOpts), Writer(Writer) {} 100 SDiagsWriter &Writer; 106 SDiagsMerger(SDiagsWriter &Writer) 107 : SerializedDiagnosticReader(), Writer(Writer) {} 686 Writer.EmitDiagnosticMessage(Loc, PLoc, Level, Message, SM, D); 700 Writer.EnterDiagBlock() [all...] |
/build/kati/ |
buf.go | 31 func writeByte(w io.Writer, b byte) error { 42 io.Writer 48 writeByte(w.Writer, ' ') 51 w.Writer.Write(word) 56 writeByte(w.Writer, ' ') 59 io.WriteString(w.Writer, word) 124 if b.ssvWriter.Writer == nil { 125 b.ssvWriter.Writer = &b.buffer
|
/cts/tests/tests/hardware/src/android/hardware/input/cts/tests/ |
InputTestCase.java | 35 import java.io.Writer; 50 private Writer mWriter; 92 Writer w = getWriter(); 164 private Writer getWriter() throws IOException {
|
/external/fmtlib/fmt/ |
ostream.cc | 15 FMT_FUNC void write(std::ostream &os, Writer &w) {
|
/external/protobuf/examples/ |
list_people.go | 14 func writePerson(w io.Writer, p *pb.Person) { 34 func listPeople(w io.Writer, book *pb.AddressBook) {
|
/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/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);
|
/prebuilts/go/darwin-x86/src/io/ |
multi.go | 55 writers []Writer 96 // MultiWriter creates a writer that duplicates its writes to all the 98 func MultiWriter(writers ...Writer) Writer { 99 w := make([]Writer, len(writers))
|
/prebuilts/go/linux-x86/src/io/ |
multi.go | 55 writers []Writer 96 // MultiWriter creates a writer that duplicates its writes to all the 98 func MultiWriter(writers ...Writer) Writer { 99 w := make([]Writer, len(writers))
|
/prebuilts/go/darwin-x86/src/testing/internal/testdeps/ |
deps.go | 37 func (TestDeps) StartCPUProfile(w io.Writer) error { 45 func (TestDeps) WriteHeapProfile(w io.Writer) error { 49 func (TestDeps) WriteProfileTo(name string, w io.Writer, debug int) error {
|
/prebuilts/go/linux-x86/src/testing/internal/testdeps/ |
deps.go | 37 func (TestDeps) StartCPUProfile(w io.Writer) error { 45 func (TestDeps) WriteHeapProfile(w io.Writer) error { 49 func (TestDeps) WriteProfileTo(name string, w io.Writer, debug int) error {
|