/prebuilts/go/linux-x86/src/sync/ |
example_pool_test.go | 29 func Log(w io.Writer, key, val string) {
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
StreamUtil.java | 32 import java.io.Writer; 164 * Copies contents of inStream to writer. 169 * @param writer the {@link Writer} destination 172 public static void copyStreamToWriter(InputStream inStream, Writer writer) throws IOException { 176 writer.write(new String(buf, 0, size));
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/ |
RunUtilFuncTest.java | 27 import java.io.Writer; 118 Writer s = null;
|
StreamUtilTest.java | 28 import java.io.Writer; 125 Writer writer = new OutputStreamWriter(baos); local 126 StreamUtil.copyStreamToWriter(bais, writer); 128 writer.close();
|
/cts/tests/tests/content/src/android/content/cts/ |
ImageCaptureActivity.java | 30 import java.io.Writer; 67 FileWriter writer = new FileWriter(file); local 68 writer.write(ImageCaptureUriExtraToClipDataTest.TEST_INPUT); 69 writer.flush(); 70 writer.close();
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
ByteArrayAnnotatedOutput.java | 20 import java.io.Writer; 475 * Writes the annotated content of this instance to the given writer. 479 public void writeAnnotationsTo(Writer out) throws IOException { 484 Writer left = twoc.getLeft(); 485 Writer right = twoc.getRight();
|
/dalvik/dx/src/com/android/dx/util/ |
ByteArrayAnnotatedOutput.java | 23 import java.io.Writer; 471 * Writes the annotated content of this instance to the given writer. 475 public void writeAnnotationsTo(Writer out) throws IOException { 480 Writer left = twoc.getLeft(); 481 Writer right = twoc.getRight();
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToXMLStream.java | 142 final java.io.Writer writer = m_writer; local 143 writer.write("<?xml version=\""); 144 writer.write(version); 145 writer.write("\" encoding=\""); 146 writer.write(encoding); 147 writer.write('\"'); 148 writer.write(standalone); 149 writer.write("?>"); 163 writer.write(m_lineSep, 0, m_lineSepLen) 282 final java.io.Writer writer = m_writer; local 357 final java.io.Writer writer = m_writer; local 390 final java.io.Writer writer = m_writer; local [all...] |
ToTextSAXHandler.java | 25 import java.io.Writer; 117 public Writer getWriter() 176 * @see Serializer#setWriter(Writer) 178 public void setWriter(Writer writer)
|
WriterToUTF8Buffered.java | 26 import java.io.Writer; 39 final class WriterToUTF8Buffered extends Writer implements WriterChain 74 * Create an buffered UTF-8 writer. 98 * Create an buffered UTF-8 writer to write data to the 488 * @return reference to the result stream, or null of only a writer was 496 public Writer getWriter() 499 // This type of writer wraps an OutputStream, not a Writer.
|
/external/caliper/caliper/src/main/java/com/google/caliper/worker/ |
WorkerEventLog.java | 34 private final OpenedSocket.Writer writer; field in class:WorkerEventLog 38 this.writer = socket.writer(); 43 writer.write(new StartupAnnounceMessage(trialId)); 44 writer.write(new VmPropertiesLogMessage()); 45 writer.flush(); 49 writer.write("Bootstrap phase starting."); 50 writer.flush(); 54 writer.write("Measurement phase starting (includes warmup and actual measurement).") [all...] |
/external/javassist/src/main/javassist/bytecode/ |
StackMap.java | 295 Writer writer; field in class:StackMap.SimpleCopy 299 writer = new Writer(); 304 return writer.toByteArray(); 309 writer.write16bit(num); 314 writer.write16bit(offset); 319 writer.write16bit(num); 324 writer.writeVerifyTypeInfo(tag, 0); 328 writer.writeVerifyTypeInfo(OBJECT, clazz) 477 private java.io.PrintWriter writer; field in class:StackMap.Printer [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_dataflow.h | 94 struct rc_instruction * Writer; 108 struct rc_instruction * writer, 116 struct rc_instruction * writer,
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
PYXScanner.java | 121 Writer w = new BufferedWriter(new OutputStreamWriter(System.out, "UTF-8"));
|
/frameworks/base/core/java/com/android/internal/util/ |
FileRotator.java | 75 public interface Writer { 83 public interface Rewriter extends Reader, Writer { 188 public void combineActive(final Reader reader, final Writer writer, long currentTimeMillis) 208 writer.write(out); 378 private static void writeFile(File file, Writer writer) throws IOException { 382 writer.write(bos);
|
/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/ |
RSTestView.java | 19 import java.io.Writer;
|
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/ |
RSTestView.java | 19 import java.io.Writer;
|
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/ |
RSTestView.java | 19 import java.io.Writer;
|
/art/compiler/debug/dwarf/ |
debug_frame_opcode_writer.h | 23 #include "debug/dwarf/writer.h" 28 // Writer for .debug_frame opcodes (DWARF-3). 30 // The writer is very light-weight, however it will do the following for you: 35 class DebugFrameOpCodeWriter : private Writer<Vector> { 298 using Writer<Vector>::data; 303 : Writer<Vector>(&opcodes_),
|
writer.h | 31 class Writer { 171 explicit Writer(Vector* buffer) : data_(buffer) { } 176 DISALLOW_COPY_AND_ASSIGN(Writer);
|
/cts/tools/cfassembler/src/dxconvext/ |
ClassFileParser.java | 33 import java.io.Writer; 37 private BufferedWriter bw; // the writer to write the result to. 84 Writer w; 90 // Writer w = new OutputStreamWriter(System.out); 97 * @param w the writer to write the generated .cfh file to 103 void processFileBytes(Writer w, String name, final byte[] allbytes) throws IOException { 255 throw new RuntimeException("error while writing to the writer", ioe);
|
/external/guava/guava-tests/test/com/google/common/io/ |
CharStreamsTest.java | 28 import java.io.Writer; 151 Writer result = CharStreams.asWriter(plainAppendable); 155 // A Writer should not be wrapped 194 // create a null writer 195 Writer nullWriter = CharStreams.nullWriter(); 196 // write to the writer
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/ |
XMLRecordWriter.java | 14 import java.io.Writer; 24 private Writer w; 27 public XMLRecordWriter(Writer w) {
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
XMLRecordWriter.java | 13 import java.io.Writer; 20 private Writer w; 23 public XMLRecordWriter(Writer w) {
|
/external/llvm/include/llvm/MC/ |
MCAssembler.h | 101 MCObjectWriter &Writer; 145 /// the Streamer and the .o writer 218 /// Emit the section contents using the given object writer. 250 MCCodeEmitter &Emitter, MCObjectWriter &Writer); 263 MCObjectWriter &getWriter() const { return Writer; } 269 /// \p Writer is used for custom object writer (as the MCJIT does), 332 // factored so that the streamer has direct access to the .o writer, it can 367 // factored so that the streamer has direct access to the .o writer, it can 388 // factored so that the streamer has direct access to the .o writer, it ca [all...] |