HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 276 - 300 of 5424) sorted by null

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/util/zip/
DeflaterOutputStream.java 66 * @param out the output stream
79 public DeflaterOutputStream(OutputStream out,
83 super(out);
84 if (out == null || def == null) {
100 * the 4-argument constructor DeflaterOutputStream(out, def, size, false).
102 * @param out the output stream
107 public DeflaterOutputStream(OutputStream out, Deflater def, int size) {
108 this(out, def, size, false);
115 * @param out the output stream
125 public DeflaterOutputStream(OutputStream out,
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/testframework/
CharSinkTester.java 96 Writer out = create(); local
97 out.close();
104 Writer out = create(); local
106 out.write(a, 1000, 0);
107 out.write(a, 0, 0);
108 out.write(new char[] { });
110 out.close();
117 Writer out = create(); local
119 out.write(c);
122 out.close()
129 Writer out = create(); local
141 Writer out = create(); local
172 Writer out = create(); local
181 Writer out = create(); local
196 Writer out = create(); local
    [all...]
SinkTester.java 97 OutputStream out = create(); local
98 out.close();
105 OutputStream out = create(); local
107 out.write(a, 1000, 0);
108 out.write(a, 0, 0);
109 out.write(new byte[] { });
111 out.close();
118 OutputStream out = create(); local
120 out.write(b);
123 out.close()
134 OutputStream out = create(); local
156 OutputStream out = create(); local
184 OutputStream out = create(); local
193 OutputStream out = create(); local
208 OutputStream out = create(); local
    [all...]
  /tools/loganalysis/tests/src/com/android/loganalysis/parser/
EventsLogParserTest.java 250 BufferedWriter out = new BufferedWriter(new FileWriter(mTempFile)); local
252 out.write(line);
253 out.newLine();
255 out.close();
  /tools/tradefederation/core/src/com/android/tradefed/command/
Verify.java 80 System.out.flush();
115 System.out.format("Successfully parsed %d commands from cmdfile %s\n",
125 System.out.format(format, i++, cmd);
128 System.out.println();
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
DoubleTest.java 31 Allocation out = Allocation.createSized(rs, Element.F32(rs), big); local
33 dc.forEach_times2pi(out);
35 out.copyTo(data);
60 out.destroy();
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
TextReport.java 32 PrintStream out = new PrintStream(outputStream); local
40 printPackage(apiPackage, out);
44 out.println();
45 out.println();
49 printPackage(apiPackage, out);
55 printClass(apiClass, out);
61 printConstructor(constructor, out);
67 printMethod(method, out);
75 private static void printPackage(ApiPackage apiPackage, PrintStream out) {
76 out.println(apiPackage.getName() + "
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
Utils.java 50 final OutputStream out = new FileOutputStream(file); local
52 out.write(data);
54 out.close();
  /external/emma/core/java12/com/vladium/util/
Descriptors.java 100 final StringBuffer out = new StringBuffer (); local
107 out.append (className);
109 out.append (methodVMName);
116 out.append (methodVMName);
122 out.append (" (");
128 if (start > 1) out.append (", ");
129 start = typeDescriptorToJavaName (chars, start, shortTypeNames, out);
135 out.append ("): ");
137 typeDescriptorToJavaName (chars, end + 1, shortTypeNames, out);
141 out.append (')')
    [all...]
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
StrictLineReader.java 148 ByteArrayOutputStream out = new ByteArrayOutputStream(end - pos + 80) { local
161 out.write(buf, pos, end - pos);
169 out.write(buf, pos, i - pos);
172 return out.toString();
  /external/guava/guava/src/com/google/common/io/
ByteSink.java 85 OutputStream out = openStream(); local
86 return (out instanceof BufferedOutputStream)
87 ? (BufferedOutputStream) out
88 : new BufferedOutputStream(out);
101 OutputStream out = closer.register(openStream()); local
102 out.write(bytes);
103 out.flush(); // https://code.google.com/p/guava-libraries/issues/detail?id=1330
123 OutputStream out = closer.register(openStream()); local
124 long written = ByteStreams.copy(input, out);
125 out.flush(); // https://code.google.com/p/guava-libraries/issues/detail?id=133
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
HashingOutputStreamTest.java 48 HashingOutputStream out = new HashingOutputStream(hashFunction, buffer); local
50 out.write(b);
60 HashingOutputStream out = new HashingOutputStream(hashFunction, buffer); local
62 out.write(buf);
72 HashingOutputStream out = new HashingOutputStream(hashFunction, buffer); local
74 out.write(buf, 0, 3);
83 HashingOutputStream out = new HashingOutputStream(Hashing.md5(), buffer); local
85 out.write(buf);
87 assertEquals(expectedHash, out.hash());
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
Trans.java 66 PrintWriter out = null; local
68 out = new PrintWriter(new OutputStreamWriter(new FileOutputStream(outName), "UTF8"));
70 out = new PrintWriter(System.out);
72 trans(trans, inText, in, out, isHTML);
73 out.close();
77 BufferedReader in, PrintWriter out, boolean isHTML) throws IOException {
100 if (DEBUG) System.out.println("*S:" + line.substring(0, right+1));
108 if (DEBUG) System.out.println("T:" + line.substring(right+1));
114 if (DEBUG) System.out.println("T:" + line.substring(right+1, left))
    [all...]