HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 701 - 725 of 1601) sorted by null

<<21222324252627282930>>

  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ExcludedProxyTest.java 98 OutputStream out = conn4.getOutputStream(); local
99 out.write(posted4.getBytes());
100 out.close();
177 OutputStream out = conn.getOutputStream(); local
178 out.write(posted.getBytes());
179 out.close();
  /external/dexmaker/src/main/java/com/google/dexmaker/
DexMaker.java 190 * System.out.println(fibMethod.invoke(null, 8));
428 ClassDefItem out = new ClassDefItem(thisType, flags, supertype.constant, local
434 out.addDirectMethod(encoded);
436 out.addVirtualMethod(encoded);
442 out.addStaticField(encoded, Constants.getConstant(field.staticValue));
444 out.addInstanceField(encoded);
448 return out;
  /external/emma/core/java12/com/vladium/logging/
Logger.java 68 public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask)
73 if ((out == null) || out.checkError ())
74 throw new IllegalArgumentException ("null or corrupt input: out");
76 return new Logger (level, out, prefix, classMask);
83 * @param out
89 public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask,
94 return create (level, out, prefix, classMask);
102 final PrintWriter _out = (out != null) && ! out.checkError (
478 final PrintWriter out = m_out; local
526 final PrintWriter out = m_out; local
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
JsonMessageBuilder.java 368 JSONObject out = new JSONObject(); local
373 out.put(OUTER_FIELD_PROTOCOL_VERSION, PROTOCOL_VERSION);
374 out.put(OUTER_FIELD_STATUS, STATUS_OK);
375 out.put(OUTER_FIELD_TYPE, msgType);
376 out.put(OUTER_FIELD_PAYLOAD, innerJson);
380 return out;
396 JSONObject out = new JSONObject(); local
407 out.put(OUTER_FIELD_PROTOCOL_VERSION, PROTOCOL_VERSION);
408 out.put(OUTER_FIELD_STATUS, errorStatus);
412 return out;
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
HpackDraft05Test.java 69 OkBuffer out = new OkBuffer(); local
71 out.writeByte(0x00); // Literal indexed
72 out.writeByte(0x0a); // Literal name (len = 10)
73 out.writeUtf8("custom-key");
75 out.writeByte(0x0d); // Literal value (len = 13)
76 out.writeUtf8("custom-header");
78 bytesIn.write(out, out.size());
90 OkBuffer out = new OkBuffer(); local
92 out.writeByte(0x00); // Literal indexe
141 OkBuffer out = new OkBuffer(); local
163 OkBuffer out = new OkBuffer(); local
191 OkBuffer out = new OkBuffer(); local
372 OkBuffer out = firstRequestWithoutHuffman(); local
392 OkBuffer out = new OkBuffer(); local
443 OkBuffer out = new OkBuffer(); local
494 OkBuffer out = new OkBuffer(); local
574 OkBuffer out = firstRequestWithHuffman(); local
594 OkBuffer out = new OkBuffer(); local
650 OkBuffer out = new OkBuffer(); local
705 OkBuffer out = new OkBuffer(); local
    [all...]
MockSpdyPeer.java 119 OutputStream out = socket.getOutputStream(); local
145 out.write(outBytes, (int) start, length);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java 166 * @param out {@code null-ok;} where to write to
170 public void writeTo(OutputStream out, Writer humanOut, boolean verbose)
175 if (out != null) {
176 out.write(result.getArray());
534 // Write out all the sections.
538 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(barr); local
541 out.enableAnnotations(dumpWidth, verbose);
547 int zeroCount = one.getFileOffset() - out.getCursor();
552 out.writeZeroes(one.getFileOffset() - out.getCursor())
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 185 * @param out {@code null-ok;} where to write to
189 public void writeTo(OutputStream out, Writer humanOut, boolean verbose)
194 if (out != null) {
195 out.write(result.getArray());
551 // Write out all the sections.
555 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(barr); local
558 out.enableAnnotations(dumpWidth, verbose);
564 int zeroCount = one.getFileOffset() - out.getCursor();
569 out.writeZeroes(one.getFileOffset() - out.getCursor())
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 858 private FaultHidingOutputStream(OutputStream out) {
859 super(out);
864 out.write(oneByte);
872 out.write(buffer, offset, length);
880 out.close();
888 out.flush();
    [all...]
ImageCache.java 255 OutputStream out = null; local
261 out = editor.newOutputStream(DISK_CACHE_INDEX);
263 mCacheParams.compressFormat, mCacheParams.compressQuality, out);
265 out.close();
276 if (out != null) {
277 out.close();
359 * @param options - BitmapFactory.Options with out* options populated
515 * @param targetOptions - Options that have the out* value populated
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 858 private FaultHidingOutputStream(OutputStream out) {
859 super(out);
864 out.write(oneByte);
872 out.write(buffer, offset, length);
880 out.close();
888 out.flush();
    [all...]
ImageCache.java 255 OutputStream out = null; local
261 out = editor.newOutputStream(DISK_CACHE_INDEX);
263 mCacheParams.compressFormat, mCacheParams.compressQuality, out);
265 out.close();
276 if (out != null) {
277 out.close();
359 * @param options - BitmapFactory.Options with out* options populated
515 * @param targetOptions - Options that have the out* value populated
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 858 private FaultHidingOutputStream(OutputStream out) {
859 super(out);
864 out.write(oneByte);
872 out.write(buffer, offset, length);
880 out.close();
888 out.flush();
    [all...]
ImageCache.java 255 OutputStream out = null; local
261 out = editor.newOutputStream(DISK_CACHE_INDEX);
263 mCacheParams.compressFormat, mCacheParams.compressQuality, out);
265 out.close();
276 if (out != null) {
277 out.close();
359 * @param options - BitmapFactory.Options with out* options populated
515 * @param targetOptions - Options that have the out* value populated
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
RemoteDebugEventSocketListener.java 25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
47 PrintWriter out; field in class:RemoteDebugEventSocketListener
197 out = new PrintWriter(new BufferedWriter(osw));
211 out.close(); out = null;
224 if ( out!=null ) {
225 out.close();
248 out.println("ack");
249 out.flush();
253 //System.out.println("event: "+line)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DexFile.java 187 * @param out {@code null-ok;} where to write to
191 public void writeTo(OutputStream out, Writer humanOut, boolean verbose)
196 if (out != null) {
197 out.write(result.getArray());
553 // Write out all the sections.
557 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(barr); local
560 out.enableAnnotations(dumpWidth, verbose);
566 int zeroCount = one.getFileOffset() - out.getCursor();
571 out.writeZeroes(one.getFileOffset() - out.getCursor())
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/services/bugzilla/
UpdateBugStateTask.java 389 System.out.println(Messages.getString("UpdateBugStateTask.found") + SP + bugID); //$NON-NLS-1$
396 System.out.println("No bugs found matching specified state" + SP + "(" + status + "). Nothing to do!");
488 System.out.println(Messages.getString("UpdateBugStateTask.noBugStatus") + SP + //$NON-NLS-1$
537 System.out.println(Messages.getString("UpdateBugStateTask.setBug") + SP + bugID + SP + //$NON-NLS-1$
548 System.out.println(Messages.getString("UpdateBugStateTask.ignoreBug") + SP + args.get(ID).toString() + SP + //$NON-NLS-1$
572 private HttpsURLConnection getConn(String url, String method, boolean in, boolean out, String cookie)
616 sconn.setDoOutput(out);
635 PrintWriter out = new PrintWriter(conn.getOutputStream()); local
636 out.print(req);
637 out.flush()
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 829 private FaultHidingOutputStream(OutputStream out) {
830 super(out);
835 out.write(oneByte);
843 out.write(buffer, offset, length);
851 out.close();
859 out.flush();
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
VpnTest.java 275 // Find out what the kernel set the ICMP ID to.
287 // Zero out the checksum in the reply so it matches the uninitialized checksum in packet.
292 // Writes data to out and checks that it appears identically on in.
294 OutputStream out, InputStream in, byte[] data) throws IOException {
295 out.write(data, 0, data.length);
296 out.flush();
362 // Make sure our writes don't block or time out, because we're single-threaded and can't
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestStep.java 40 public Target.Floaty out; field in class:TestStep.ArgumentsFloatFloatFloat
47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
49 script.forEach_testStepFloatFloatFloat(inEdge, out);
50 verifyResultsStepFloatFloatFloat(inEdge, inV, out, false);
55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
57 scriptRelaxed.forEach_testStepFloatFloatFloat(inEdge, out);
58 verifyResultsStepFloatFloatFloat(inEdge, inV, out, true);
64 private void verifyResultsStepFloatFloatFloat(Allocation inEdge, Allocation inV, Allocation out, boolean relaxed) {
70 out.copyTo(arrayOut);
77 // Figure out what the outputs should have been
116 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
124 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
185 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
193 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
254 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
262 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
323 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
331 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
392 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
400 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
461 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
469 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
530 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
538 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
599 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
607 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
668 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
676 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
KeyStore2Test.java 135 ByteArrayOutputStream out = null; local
152 out = new ByteArrayOutputStream();
153 keyTest.store(out, pssWord);
154 out.close();
156 return out.toByteArray();
  /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...]

Completed in 1014 milliseconds

<<21222324252627282930>>