/external/caliper/caliper/src/main/java/com/google/caliper/bridge/ |
CommandLineSerializer.java | 45 ObjectOutputStream out = new ObjectOutputStream(bytes); local 46 out.writeObject(message); 47 out.close();
|
/external/guava/guava/src/com/google/common/hash/ |
HashingOutputStream.java | 45 public HashingOutputStream(HashFunction hashFunction, OutputStream out) { 46 super(checkNotNull(out)); 52 out.write(b); 57 out.write(bytes, off, len); 72 out.close();
|
/external/guava/guava/src/com/google/common/io/ |
CharSink.java | 95 Writer out = closer.register(openStream()); local 96 out.append(charSequence); 97 out.flush(); // https://code.google.com/p/guava-libraries/issues/detail?id=1330 129 Writer out = closer.register(openBufferedStream()); local 131 out.append(line).append(lineSeparator); 133 out.flush(); // https://code.google.com/p/guava-libraries/issues/detail?id=1330 153 Writer out = closer.register(openStream()); local 154 long written = CharStreams.copy(readable, out); 155 out.flush(); // https://code.google.com/p/guava-libraries/issues/detail?id=1330
|
/external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/ |
ClassFileDumper.java | 70 final OutputStream out = new FileOutputStream(file); local 71 out.write(contents); 72 out.close();
|
/external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/ |
RemoveDebugInfos.java | 35 final OutputStream out = new FileOutputStream(args[1]); local 36 out.write(writer.toByteArray()); 37 out.close();
|
/external/jacoco/org.jacoco.examples.test/src/org/jacoco/examples/ |
ExecDumpTest.java | 50 final FileOutputStream out = new FileOutputStream(f); local 51 final ExecutionDataWriter writer = new ExecutionDataWriter(out); 56 out.close();
|
/external/javasqlite/src/main/java/SQLite/ |
StringEncoder.java | 72 StringBuffer out = new StringBuffer(outLen); local 73 out.append((char)shift); 79 out.append((char)1); 80 out.append((char)1); 82 out.append((char)1); 83 out.append((char)2); 85 out.append((char)1); 86 out.append((char)3); 88 out.append(c); 91 return out.toString() 234 StringBuffer out = new StringBuffer(outLen); local [all...] |
/external/jetty/src/java/org/eclipse/jetty/util/component/ |
FileNoticeLifeCycleListener.java | 46 FileWriter out = new FileWriter(_filename,true); local 47 out.append(action).append(" ").append(lifecycle.toString()).append("\n"); 48 out.close();
|
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
VerboseTestRunner.java | 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 43 final PrintStream out; field in class:VerboseTestRunner 46 out = System.out; 47 setPrinter(new VerboseResultPrinter(out)); 52 VerboseResultPrinter(PrintStream out) { 53 super(out); 58 out.println("Started " + test); 59 out.flush(); 66 out.println("ended " + test) [all...] |
/external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/issue/ |
LoggerSerializationTest.java | 21 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 66 ObjectOutputStream out = new ObjectOutputStream(baos); local 67 out.writeObject(lh1); 68 out.close();
|
/external/vogar/src/vogar/util/ |
MarkResetConsole.java | 26 private final PrintStream out; field in class:MarkResetConsole 30 public MarkResetConsole(PrintStream out) { 31 this.out = out; 48 out.print(text); 49 out.flush(); 76 System.out.print("\u001b[0G\u001b[K\u001b[1A"); 80 out.print("\u001b[0G\u001b[K"); 81 out.print(markRowContent);
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
Latin1Converter.java | 77 ByteBuffer out = new ByteBuffer(buffer.length() * 4 / 3); local 90 out.append((byte) b); 108 out.append(utf8); 121 out.append(readAheadBuffer, 0, readAhead); 132 out.append(utf8); 151 out.append(utf8); 155 return out;
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
HMTRPSample.java | 21 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 40 System.out.println("Usage:"); 41 System.out.println("Pass a commandline argument (any argument) to this program"); 42 System.out.println("to query the radio configuration and output it. NOTE: the"); 43 System.out.println("radio must be in CONFIG mode for this to work."); 44 System.out.println("Running this program without arguments will simply transmit"); 45 System.out.println("'Hello World!' every second, and output any data received from"); 46 System.out.println("another radio."); 84 System.out.println("Radio configuration:"); 85 System.out.println("freq: " + freq[0] + " dataRate: " + dataRate[0 [all...] |
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
AsciiHprofWriter.java | 35 private final PrintWriter out; field in class:AsciiHprofWriter 46 this.out = new PrintWriter(outputStream); 51 out.println(e); 62 out.printf("TRACE %d: (thread=%d)\n", 66 out.printf("\t%s\n", e); 71 out.printf("CPU SAMPLES BEGIN (total = %d) %ta %tb %td %tT %tY\n", 73 out.printf("rank self accum count trace method\n"); 84 out.printf("% 4d% 6.2f%%% 6.2f%% % 7d % 5d %s.%s\n", 89 out.printf("CPU SAMPLES END\n"); 90 out.flush() [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
MemoryBinaryBody.java | 29 //BEGIN android-changed: Stubbing out logging 59 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 60 IOUtils.copy(is, out); 61 out.close(); 62 tempFile = out.toByteArray(); 89 public void writeTo(OutputStream out) throws IOException { 90 IOUtils.copy(getInputStream(),out); local
|
MemoryTextBody.java | 32 //BEGIN android-changed: Stubbing out logging 64 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 65 IOUtils.copy(is, out); 66 out.close(); 67 tempFile = out.toByteArray(); 115 public void writeTo(OutputStream out) throws IOException { 116 IOUtils.copy(new ByteArrayInputStream(tempFile), out);
|
TempFileBinaryBody.java | 27 //BEGIN android-changed: Stubbing out logging 59 OutputStream out = tempFile.getOutputStream(); local 60 IOUtils.copy(is, out); 61 out.close(); 88 public void writeTo(OutputStream out) throws IOException { 89 IOUtils.copy(getInputStream(),out); local
|
TempFileTextBody.java | 30 //BEGIN android-changed: Stubbing out logging 64 OutputStream out = tempFile.getOutputStream(); local 65 IOUtils.copy(is, out); 66 out.close(); 114 public void writeTo(OutputStream out) throws IOException { 115 IOUtils.copy(tempFile.getInputStream(), out); local
|
/frameworks/base/core/java/com/android/server/ |
BootReceiver.java | 360 XmlSerializer out = new FastXmlSerializer(); local 361 out.setOutput(stream, StandardCharsets.UTF_8.name()); 362 out.startDocument(null, true); 363 out.startTag(null, "log-files"); 368 out.startTag(null, "log"); 369 out.attribute(null, "filename", filename); 370 out.attribute(null, "timestamp", timestamps.get(filename).toString()); 371 out.endTag(null, "log"); 374 out.endTag(null, "log-files"); 375 out.endDocument() [all...] |
/frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
LoggingPrintStreamTest.java | 34 TestPrintStream out = new TestPrintStream(); field in class:LoggingPrintStreamTest 43 t.printStackTrace(out); 47 assertEquals(Arrays.asList(lines), out.lines); 52 out.print(4); 53 out.print(o); 54 out.print(2); 55 out.flush(); 56 assertEquals(Arrays.asList("4" + o + "2"), out.lines); 61 out.print(4); 62 out.println(o) [all...] |