/external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/ |
InstallerActivity.java | 71 FileOutputStream out; local 92 out = new FileOutputStream(outputFile); 100 out.write(buf, 0, numread); 103 out.close();
|
/external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/ |
InstallerActivity.java | 71 FileOutputStream out; local 92 out = new FileOutputStream(outputFile); 100 out.write(buf, 0, numread); 103 out.close();
|
/external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/ |
InstallerActivity.java | 71 FileOutputStream out; local 92 out = new FileOutputStream(outputFile); 100 out.write(buf, 0, numread); 103 out.close();
|
/external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/ |
InstallerActivity.java | 71 FileOutputStream out; local 92 out = new FileOutputStream(outputFile); 100 out.write(buf, 0, numread); 103 out.close();
|
/external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/ |
InstallerActivity.java | 71 FileOutputStream out; local 92 out = new FileOutputStream(outputFile); 100 out.write(buf, 0, numread); 103 out.close();
|
/external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/ |
InstallerActivity.java | 71 FileOutputStream out; local 92 out = new FileOutputStream(outputFile); 100 out.write(buf, 0, numread); 103 out.close();
|
/external/svox/picolanginstaller/src/com/svox/langpack/installer/ |
InstallerActivity.java | 72 FileOutputStream out; local 93 out = new FileOutputStream(outputFile); 101 out.write(buf, 0, numread); 104 out.close();
|
/frameworks/base/core/java/android/ddm/ |
DdmHandleHello.java | 141 ByteBuffer out = ByteBuffer.allocate(28 local 147 out.order(ChunkHandler.CHUNK_ORDER); 148 out.putInt(DdmServer.CLIENT_PROTOCOL_VERSION); 149 out.putInt(android.os.Process.myPid()); 150 out.putInt(vmIdent.length()); 151 out.putInt(appName.length()); 152 putString(out, vmIdent); 153 putString(out, appName); 154 out.putInt(UserHandle.myUserId()); 155 out.putInt(instructionSetDescription.length()) 190 ByteBuffer out = ByteBuffer.allocate(size); local [all...] |
/frameworks/base/core/java/android/os/ |
PersistableBundle.java | 205 public void writeUnknownObject(Object v, String name, XmlSerializer out) 208 out.startTag(null, TAG_PERSISTABLEMAP); 209 out.attribute(null, "name", name); 210 ((PersistableBundle) v).saveToXml(out); 211 out.endTag(null, TAG_PERSISTABLEMAP); 218 public void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException { 220 XmlUtils.writeMapXml(mMap, out, this);
|
/frameworks/base/core/java/android/util/ |
JsonWriter.java | 71 * public void writeJsonStream(OutputStream out, List<Message> messages) throws IOException { 72 * JsonWriter writer = new JsonWriter(new OutputStreamWriter(out, "UTF-8")); 123 private final Writer out; field in class:JsonWriter 144 * Creates a new instance that writes a JSON-encoded stream to {@code out}. 148 public JsonWriter(Writer out) { 149 if (out == null) { 150 throw new NullPointerException("out == null"); 152 this.out = out; 241 out.write(openBracket) [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/ |
CameraTestResultPrinter.java | 32 "/camera-out/"; 104 BufferedWriter out = null; local 106 out = new BufferedWriter(new FileWriter(swapFile)); 107 out.write(results); 108 out.flush(); 112 if (out != null) { 114 out.close();
|
/frameworks/base/services/core/java/com/android/server/ |
EntropyMixer.java | 160 PrintWriter out = null; local 162 out = new PrintWriter(new FileOutputStream(randomDevice)); 163 out.println("Copyright (C) 2009 The Android Open Source Project"); 164 out.println("All Your Randomness Are Belong To Us"); 165 out.println(START_TIME); 166 out.println(START_NANOTIME); 167 out.println(SystemProperties.get("ro.serialno")); 168 out.println(SystemProperties.get("ro.bootmode")); 169 out.println(SystemProperties.get("ro.baseband")); 170 out.println(SystemProperties.get("ro.carrier")) [all...] |
/frameworks/base/test-runner/src/junit/runner/ |
TestCaseClassLoader.java | 143 ByteArrayOutputStream out= new ByteArrayOutputStream(1000); local 147 out.write(b, 0, n); 149 out.close(); 150 return out.toByteArray();
|
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/ |
BandwidthEnforcementTestService.java | 69 BufferedWriter out = new BufferedWriter(writer); local 71 out.append(tag + ":fail\n"); 73 out.append(tag + ":pass\n"); 75 out.close(); 186 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local 191 out.write(id); 192 out.write(new byte[] { 0x01, 0x00 }); 193 out.write(new byte[] { 0x00, 0x01 }); 194 out.write(new byte[] { 0x00, 0x00 }); 195 out.write(new byte[] { 0x00, 0x00 }) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
CharsetDecoder2Test.java | 61 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) { 159 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) { 173 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) { 188 CharBuffer out = CharBuffer.allocate(1); local 190 // but "out" doesn't have enough space for replace string. 192 CoderResult result = decoder.decode(in, out, false); 195 // allocate enough space for "out" 196 out = CharBuffer.allocate(10); 197 // replace string should be put into "out" firstly, 199 result = decoder.decode(in, out, true) [all...] |
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
Charset_TestGenerator.java | 116 System.out.print(code); 117 System.out.print(", "); 120 System.out.println(); 136 // System.out.print(code); 137 // System.out.print(", "); 138 System.out.print((char) code); 141 System.out.println(); 154 System.out.print(code); 155 System.out.print(", "); 158 System.out.print(" // ") 219 Dumper out = new Dumper1(); local [all...] |
/libcore/ojluni/src/main/java/java/io/ |
PrintStream.java | 104 private PrintStream(boolean autoFlush, OutputStream out) { 105 super(out); 109 private PrintStream(boolean autoFlush, OutputStream out, Charset charset) { 110 super(out); 119 private PrintStream(boolean autoFlush, Charset charset, OutputStream out) 122 this(autoFlush, out, charset); 128 * @param out The output stream to which values and objects will be 133 public PrintStream(OutputStream out) { 134 this(out, false); 140 * @param out The output stream to which values and objects will b [all...] |
/libcore/ojluni/src/main/java/java/nio/channels/ |
Channels.java | 268 * @param out 273 public static WritableByteChannel newChannel(final OutputStream out) { 274 checkNotNull(out, "out"); 275 return new WritableByteChannelImpl(out); 282 OutputStream out; field in class:WritableByteChannelImpl 288 WritableByteChannelImpl(OutputStream out) { 289 this.out = out; 304 out.write(buf, 0, bytesToWrite) [all...] |
/libcore/ojluni/src/main/java/java/nio/charset/ |
CharsetDecoder.java | 459 * will be read and at most {@link Buffer#remaining out.remaining()} 530 * @param out 551 public final CoderResult decode(ByteBuffer in, CharBuffer out, 564 cr = decodeLoop(in, out); 595 if (out.remaining() < replacement.length()) 597 out.put(replacement); 620 * its current position. At most {@link Buffer#remaining out.remaining()} 637 * @param out 651 public final CoderResult flush(CharBuffer out) { 653 CoderResult cr = implFlush(out); 780 CharBuffer out = CharBuffer.allocate(n); local [all...] |
CharsetEncoder.java | 474 * will be read and at most {@link Buffer#remaining out.remaining()} 545 * @param out 566 public final CoderResult encode(CharBuffer in, ByteBuffer out, 579 cr = encodeLoop(in, out); 610 if (out.remaining() < replacement.length) 612 out.put(replacement); 635 * its current position. At most {@link Buffer#remaining out.remaining()} 652 * @param out 666 public final CoderResult flush(ByteBuffer out) { 668 CoderResult cr = implFlush(out); 795 ByteBuffer out = ByteBuffer.allocate(n); local [all...] |
/libcore/ojluni/src/main/java/sun/net/www/http/ |
ChunkedOutputStream.java | 55 private PrintStream out; field in class:ChunkedOutputStream 92 out = o; 145 out.write(buf, 0, preferredChunkGrossSize); 146 out.flush(); 166 out.write(buf, adjustedHeaderStartIndex, count - adjustedHeaderStartIndex); 169 out.write(EMPTY_CHUNK_HEADER, 0, EMPTY_CHUNK_HEADER_SIZE); 172 out.flush(); 179 return out.checkError(); 184 if (out == null) 290 out = null [all...] |
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/ |
URLJarFile.java | 207 final OutputStream out = new FileOutputStream(dst); local 212 out.write(buf, 0, len); 215 out.close();
|
/libcore/ojluni/src/main/java/sun/security/pkcs/ |
PKCS9Attributes.java | 234 * @param out the output stream on which to put the DER encoding. 238 public void encode(byte tag, OutputStream out) throws IOException { 239 out.write(tag); 240 out.write(derEncoding, 1, derEncoding.length -1); 244 DerOutputStream out = new DerOutputStream(); local 247 out.putOrderedSetOf(DerValue.tag_SetOf, 249 return out.toByteArray();
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
OCSP.java | 216 OutputStream out = null; local 233 out = con.getOutputStream(); 234 out.write(bytes); 235 out.flush(); 272 if (out != null) { 274 out.close();
|
/libcore/support/src/test/java/tests/support/ |
Support_TestWebData.java | 116 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 121 out.write(in.read()); 124 out.flush(); 125 test0Data = out.toByteArray(); 126 out.close(); 137 if (out != null) { 138 out.close();
|