HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1201 - 1225 of 3019) sorted by null

<<41424344454647484950>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-javamail.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Utils.java 398 OutputStream out = null; local
400 out = new BufferedOutputStream(new FileOutputStream(outputFile));
401 imageLoader.save(out, SWT.IMAGE_GIF);
406 if (out != null) {
408 out.close();
  /external/jmdns/src/javax/jmdns/impl/
DNSRecord.java 89 abstract DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException;
171 abstract void write(MessageOutputStream out);
184 void write(MessageOutputStream out) {
197 out.writeBytes(buffer, 0, length);
226 void write(MessageOutputStream out) {
242 out.writeBytes(buffer, 0, length);
384 DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException {
385 return out;
444 void write(MessageOutputStream out) {
445 out.writeName(_alias)
    [all...]
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockWebServer.java 284 serverSocket.close(); // should cause acceptConnections() to break out
327 OutputStream out = new BufferedOutputStream(socket.getOutputStream());
329 while (processOneRequest(socket, in, out)) {
337 out.close();
360 private boolean processOneRequest(Socket socket, InputStream in, OutputStream out)
362 RecordedRequest request = readRequest(socket, in, out, sequenceNumber);
373 writeResponse(out, response);
393 out.close();
428 private RecordedRequest readRequest(Socket socket, InputStream in, OutputStream out,
462 out.write(("HTTP/1.1 100 Continue\r\n").getBytes(StandardCharsets.US_ASCII))
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
UnknownFieldSet.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
150 final ByteString.CodedBuilder out = local
152 writeTo(out.getCodedOutput());
153 return out.build();
  /external/smack/src/org/jivesoftware/smack/util/
StringUtils.java 536 StringBuilder out = new StringBuilder((int)(len*1.3)); local
543 out.append(input, last, i - last);
546 out.append(LT_ENCODE);
550 out.append(input, last, i - last);
553 out.append(GT_ENCODE);
558 out.append(input, last, i - last);
568 out.append(AMP_ENCODE);
573 out.append(input, last, i - last);
576 out.append(QUOTE_ENCODE);
580 out.append(input, last, i - last)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
NetworkStatsHistoryTest.java 387 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local
388 before.writeToStream(new DataOutputStream(out));
389 out.close();
391 final ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
495 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local
496 writeVarLong(new DataOutputStream(out), before);
498 final ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceProcessorTest.java 38 String[] out = new String[dates.length]; local
42 out[i] = time.format2445();
45 return out;
48 private static void printLists(String[] expected, String[] out) {
49 Log.i(TAG, " expected out");
51 for (i = 0; i < expected.length && i < out.length; i++) {
53 + " " + out[i]);
58 for (; i < out.length; i++) {
59 Log.i(TAG, " [" + i + "] " + out[i]);
109 long[] out = rp.expand(dtstart, recur, rangeStart.toMillis(false /* use isDst */) local
2458 TreeSet<Long> out = new TreeSet<Long>(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
OutputStreamWriterTest.java 40 private ByteArrayOutputStream out; field in class:OutputStreamWriterTest
63 out = new ByteArrayOutputStream();
64 writer = new OutputStreamWriter(out, "utf-8");
103 String result = out.toString("utf-8");
161 assertEquals("hi", out.toString("utf-8"));
164 assertEquals("hi" + source, out.toString("utf-8"));
182 String str = new String(out.toByteArray(), "utf-8");
187 str = new String(out.toByteArray(), "utf-8");
192 str = new String(out.toByteArray(), "utf-8");
197 str = new String(out.toByteArray(), "utf-8")
643 OutputStreamWriter out = new OutputStreamWriter( local
    [all...]
PipedInputStreamTest.java 38 e.printStackTrace(System.out);
39 System.out.println("Could not write bytes");
332 PipedOutputStream out; field in class:PipedInputStreamTest.Worker
335 this.out = pos;
340 out.write(20);
341 out.close();
350 PipedOutputStream out = new PipedOutputStream(); local
351 in.connect(out);
352 Thread worker = new Worker(out);
362 out.close()
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ControlTest.java 392 Writer out = new FileWriter(copy); local
395 out.write(c);
398 out.close();
  /libcore/luni/src/test/java/dalvik/system/
DexClassLoaderTest.java 140 FileOutputStream out = new FileOutputStream(destination); local
141 Streams.copy(in, out);
143 out.close();
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
AttachmentUtilities.java 385 private static long copyFile(InputStream in, OutputStream out) throws IOException {
386 long size = IOUtils.copy(in, out);
388 out.flush();
389 out.close();
  /packages/apps/Email/provider_src/com/android/email/
LegacyConversions.java 334 FileOutputStream out = null; local
338 out = new FileOutputStream(saveAs);
339 copySize = IOUtils.copyLarge(in, out);
344 if (out != null) {
345 out.close();
  /packages/apps/Email/tests/src/com/android/emailcommon/internet/
MimeMessageTest.java 415 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
416 message.writeTo(out);
417 out.close();
424 byte[] actual = out.toByteArray();
434 * The lines up to Content-Type were copied directly out of RFC 2822
  /packages/apps/Exchange/src/com/android/exchange/adapter/
Parser.java 210 final FileOutputStream out = context.openFileOutput(file, local
212 out.write(captureArray.toString().getBytes());
213 out.close();
331 // Otherwise, we've prematurely hit end of document, so exception out
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Attachment.java 268 final OutputStream out = resolver.openOutputStream(uri, "rwt"); local
269 size = IOUtils.copy(in, out);
272 out.close();
  /art/test/122-npe/src/
Main.java 555 System.out.print("Got to line ");
556 System.out.print(firstLine);
557 System.out.println();
  /bootable/recovery/
fuse_sideload.c 119 struct fuse_init_out out; local
121 out.major = FUSE_KERNEL_VERSION;
122 out.minor = FUSE_KERNEL_MINOR_VERSION;
123 out.max_readahead = req->max_readahead;
124 out.flags = 0;
125 out.max_background = 32;
126 out.congestion_threshold = 32;
127 out.max_write = 4096;
128 fuse_reply(fd, hdr->unique, &out, sizeof(out));
149 struct fuse_attr_out out; local
169 struct fuse_entry_out out; local
198 struct fuse_open_out out; local
    [all...]
verifier.cpp 328 Certificate* out = NULL; local
342 out = (Certificate*)realloc(out, *numKeys * sizeof(Certificate));
343 Certificate* cert = out + (*numKeys - 1);
454 return out;
458 free(out);
  /cts/common/host-side/xml-plan-generator/src/com/android/compatibility/common/xmlgenerator/
XmlPlanGenerator.java 74 OutputStream out = System.out; local
76 out = new FileOutputStream(mOutput);
80 writer = new PrintWriter(out);
  /cts/tests/tests/net/src/android/net/cts/
LocalSocketTest.java 64 FileDescriptor[] out = serverSocket.getAncillaryFileDescriptors(); local
65 assertEquals(1, out.length);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestIlogb.java 39 public int out; field in class:TestIlogb.ArgumentsFloatInt
45 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
46 script.forEach_testIlogbFloatInt(in, out);
47 verifyResultsIlogbFloatInt(in, out, false);
52 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
53 scriptRelaxed.forEach_testIlogbFloatInt(in, out);
54 verifyResultsIlogbFloatInt(in, out, true);
60 private void verifyResultsIlogbFloatInt(Allocation in, Allocation out, boolean relaxed) {
64 out.copyTo(arrayOut);
71 args.out = arrayOut[i * 1 + j]
95 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
102 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
145 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
152 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
195 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
202 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
    [all...]
TestRemquo.java 41 public float out; field in class:TestRemquo.ArgumentsFloatFloatIntFloat
49 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
52 script.forEach_testRemquoFloatFloatIntFloat(inB, out);
53 verifyResultsRemquoFloatFloatIntFloat(inB, inC, outD, out, false);
59 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
62 scriptRelaxed.forEach_testRemquoFloatFloatIntFloat(inB, out);
63 verifyResultsRemquoFloatFloatIntFloat(inB, inC, outD, out, true);
69 private void verifyResultsRemquoFloatFloatIntFloat(Allocation inB, Allocation inC, Allocation outD, Allocation out, boolean relaxed) {
77 out.copyTo(arrayOut);
86 args.out = arrayOut[i * 1 + j]
120 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
130 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
191 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
201 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
262 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
272 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
BrowserTest.java 94 * to the browser when we run out of usable browser tabs. If such data is
168 FileOutputStream out = mContext.openFileOutput(filename, local
170 Writer writer = new OutputStreamWriter(out, "UTF-8");
203 FileOutputStream out = mContext.openFileOutput("target.txt", local
205 Writer writer = new OutputStreamWriter(out, "UTF-8");

Completed in 52 milliseconds

<<41424344454647484950>>