HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 201 - 225 of 4335) sorted by null

1 2 3 4 5 6 7 891011>>

  /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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PipedOutputStreamTest.java 36 public PReader(PipedOutputStream out) {
38 reader = new PipedInputStream(out);
40 System.out.println("Couldn't start reader");
68 System.out.println("Exception reading info");
78 PipedOutputStream out; field in class:PipedOutputStreamTest
91 out = new PipedOutputStream(new PipedInputStream());
92 out.write('b');
99 out = new PipedOutputStream();
100 rt = new Thread(reader = new PReader(out));
102 out.close()
177 PipedOutputStream out = new PipedOutputStream(pis); local
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
ServicePermissionsTest.java 100 final FileOutputStream out = new FileOutputStream(mTempFile); local
102 serviceBinder.dump(out.getFD(), new String[0]);
116 out.close();
  /cts/tests/tests/text/src/android/text/cts/
AnnotationTest.java 72 Annotation out = new Annotation(dest); local
73 assertEquals(out.getKey(), mAnnotation.getKey());
74 assertEquals(out.getValue(), mAnnotation.getValue());
76 assertEquals(0, out.describeContents());
  /external/apache-harmony/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...]
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.java 58 private final SessionOutputBuffer out; field in class:ChunkedOutputStream
72 * @param out the session output buffer to wrap
76 public ChunkedOutputStream(final SessionOutputBuffer out, int bufferSize)
80 this.out = out;
87 * @param out the output buffer to wrap
90 public ChunkedOutputStream(final SessionOutputBuffer out)
92 this(out, 2048);
97 * Writes the cache out onto the underlying stream
102 this.out.writeLine(Integer.toHexString(this.cachePosition))
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
ByteSinkTest.java 47 OutputStream out = sink.openBufferedStream(); local
51 out.write(new byte[] {1, 2, 3, 4});
52 out.close();
IoTestCase.java 166 OutputStream out = new FileOutputStream(file); local
170 out.write(buf, 0, read);
173 out.close();
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
IoUtil.java 31 public static void pipe(InputStream is, OutputStream out, byte[] buf) throws IOException {
36 out.write(buf, 0, amt);
43 OutputStream out = new FileOutputStream(to); local
45 pipe(in, out, buf);
47 out.close();
  /external/jetty/src/java/org/eclipse/jetty/io/
UncheckedPrintWriter.java 53 public UncheckedPrintWriter(Writer out)
55 this(out,false);
62 * @param out
68 public UncheckedPrintWriter(Writer out, boolean autoFlush)
70 super(out,autoFlush);
82 * @param out
87 public UncheckedPrintWriter(OutputStream out)
89 this(out,false);
98 * @param out
106 public UncheckedPrintWriter(OutputStream out, boolean autoFlush
    [all...]
  /libcore/luni/src/test/java/libcore/javax/net/
ServerSocketFactoryTest.java 80 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
81 transfer(in, out);
82 assertEquals(Arrays.toString(data), Arrays.toString(out.toByteArray()));
107 System.out.println("backlog peaked at " + peak);
124 private void transfer(InputStream in, ByteArrayOutputStream out) throws IOException {
128 out.write(buffer, 0, count);
  /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...]

Completed in 43 milliseconds

1 2 3 4 5 6 7 891011>>