HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 651 - 675 of 4549) sorted by null

<<21222324252627282930>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
FetchBaseTask.java 164 PrintWriter out = new PrintWriter(new FileWriter(new File(outputFile))); local
165 out.print(script);
166 out.flush();
167 out.close();
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/serializable/
SerializableChecker.java 62 System.out.println("Woops! Can't get class info for Serializable and Throwable.");
77 System.out.print(" - can't write file!");
101 System.out.print(className + " (" + Modifier.toString(m) + ") - ");
108 System.out.print("no serialVersionUID - ");
121 ObjectOutputStream out = new ObjectOutputStream(byteOut); local
124 out.writeObject(objectsOut);
125 out.close();
128 System.out.println("Eror writing test objects:" + e.toString());
144 System.out.println("Error reading test objects:" + e.toString());
151 System.out.println("Object " + i + " failed behavior test.")
    [all...]
  /external/javassist/src/main/javassist/tools/rmi/
AppletServer.java 133 public void doReply(InputStream in, OutputStream out, String cmd)
137 processRMI(in, out);
139 lookupName(cmd, in, out);
141 super.doReply(in, out, cmd);
166 ObjectOutputStream out = new ObjectOutputStream(outs); local
168 out.writeBoolean(false);
169 out.writeUTF(err.toString());
173 out.writeBoolean(true);
174 out.writeObject(rvalue);
183 out.flush()
228 ObjectOutputStream out = new ObjectOutputStream(outs); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 32 * java = new JavaSourceWriter(out);
40 * java.writeStatement(call("System.out.println", string("hello")));
48 private final PrintWriter out; field in class:JavaSourceWriter
51 public JavaSourceWriter(Writer out) {
52 this.out = new PrintWriter(out);
59 out.append("package ").append(packageName).append(';');
68 out.append("import ").append(javaClass.getName()).append(';');
79 out.append("// ").append(comment);
85 out.append("public class ")
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
XZOutputStream.java 45 * System.out.println("Encoder memory usage: "
48 * System.out.println("Decoder memory usage: "
55 private OutputStream out; field in class:XZOutputStream
81 * @param out output stream to which the compressed data
90 * @throws IOException may be thrown from <code>out</code>
92 public XZOutputStream(OutputStream out, FilterOptions filterOptions)
94 this(out, filterOptions, XZ.CHECK_CRC64);
103 * @param out output stream to which the compressed data
115 * @throws IOException may be thrown from <code>out</code>
117 public XZOutputStream(OutputStream out, FilterOptions filterOptions
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
AbstractTransformTask.java 138 ZipOutputStream out = new ZipOutputStream(fout); local
175 out.putNextEntry(outEntry);
176 out.write(bytes);
177 out.closeEntry();
181 out.close();
229 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
230 out.write(w.toByteArray());
231 return out.toByteArray();
  /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...]

Completed in 79 milliseconds

<<21222324252627282930>>