HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 901 - 925 of 4560) sorted by null

<<31323334353637383940>>

  /external/emma/tools/java/com/vladium/tools/
ClassDep.java 88 final FileOutputStream out = new FileOutputStream (outFile); local
93 result.store (out, "this file is auto-generated, do not edit");
95 out.close ();
  /external/guava/guava-tests/test/com/google/common/hash/
FunnelsTest.java 130 OutputStream out = Funnels.asOutputStream(sink); local
132 out.write(255);
133 out.write(bytes);
134 out.write(bytes, 1, 2);
  /external/guava/guava-tests/test/com/google/common/io/
ByteSourceTester.java 134 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
135 source.copyTo(out);
136 assertExpectedBytes(out.toByteArray());
140 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local
145 return out;
148 assertExpectedBytes(out.toByteArray());
171 final ByteArrayOutputStream out = new ByteArrayOutputStream();
175 out.write(buf, off, len);
181 return out.toByteArray();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
CoverageTest.java 78 System.out.print(" - can't write file!");
163 ObjectOutputStream out = new ObjectOutputStream(byteOut); local
166 out.writeObject(objectsOut);
167 out.close();
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
CoverageTest.java 74 System.out.print(" - can't write file!");
159 ObjectOutputStream out = new ObjectOutputStream(byteOut); local
162 out.writeObject(objectsOut);
163 out.close();
  /external/icu/tools/
ZoneCompactor.java 39 // Concatenate the contents of 'inFile' onto 'out'.
40 private static void copyFile(File inFile, OutputStream out) throws Exception {
50 out.write(buf, 0, nbytes);
57 out.flush();
135 // Follow the chain of links to work out where the real data for this zone lives.
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
CoverageTransformerTest.java 232 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local
236 out.write(buffer, 0, len);
239 return out.toByteArray();
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/tools/
ExecFileLoaderTest.java 87 final OutputStream out = new FileOutputStream(file); local
88 out.write("invalid".getBytes());
89 out.close();
119 final FileOutputStream out = new FileOutputStream(file); local
120 final ExecutionDataWriter writer = new ExecutionDataWriter(out);
124 out.close();
  /external/jetty/src/java/org/eclipse/jetty/server/
ShutdownMonitor.java 96 OutputStream out = socket.getOutputStream(); local
108 out.write("Stopped\r\n".getBytes(StringUtil.__UTF8));
109 out.flush();
128 out.write("OK\r\n".getBytes(StringUtil.__UTF8));
129 out.flush();
180 System.out.printf("STOP.PORT=%d%n",port);
187 System.out.printf("STOP.KEY=%s%n",key);
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
DefaultHandler.java 175 OutputStream out=response.getOutputStream(); local
176 writer.writeTo(out);
177 out.close();