/external/jarjar/src/main/com/tonicsystems/jarjar/util/ |
StandaloneJarProcessor.java | 33 JarOutputStream out = new JarOutputStream(new FileOutputStream(tmpTo)); local 50 out.putNextEntry(entry); 51 out.write(struct.data); 63 out.close();
|
/external/javassist/sample/evolve/ |
DemoServer.java | 47 public void doReply(InputStream in, OutputStream out, String cmd)
51 runJava(out);
72 super.doReply(in, out, cmd);
76 OutputStreamWriter out = new OutputStreamWriter(outs);
local 77 out.write("HTTP/1.0 200 OK\r\n\r\n");
79 page.show(out);
80 out.close();
|
/external/objenesis/tck/test/org/objenesis/tck/ |
TextReporterTest.java | 71 PrintStream out = new PrintStream(expectedSummaryBuffer); local 72 out.println("Running TCK on platform: Some platform"); 73 out.println(); 74 out.println("Not serializable parent constructor called: Y"); 75 out.println(); 76 out.println(" instantiator1 instantiator2 instantiator3 "); 77 out.println("candidate A n n Y "); 78 out.println("candidate B Y n Y "); 79 out.println("candidate C n n Y "); 80 out.println() [all...] |
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
RecordingReceiver.java | 44 ByteArrayOutputStream out = inFlightResponses.get(response); local 45 if (out == null) { 46 out = new ByteArrayOutputStream(); 47 inFlightResponses.put(response, out); 59 response.request(), response, out.toString("UTF-8"), null)); 64 out.write(buffer, 0, c); 90 throw new AssertionError("Timed out waiting for response to " + url);
|
/art/runtime/base/ |
hex_dump.cc | 38 char out[(kBitsPerWord / 4) + /* offset */ local 51 memset(out, ' ', sizeof(out)-1); 52 out[kBitsPerWord / 4] = ':'; 53 out[sizeof(out)-1] = '\0'; 60 char* hex = out; 61 char* asc = out + (kBitsPerWord / 4) + /* offset */ 1 + /* colon */ 101 os << prefix_ << out; local
|
/art/test/009-instanceof/src/ |
Main.java | 30 System.out.println("iface1.mFloaty = " + face1.mFloaty + " " + face1.mWahoo); 31 System.out.println("aa.mFloaty = " + aa.mFloaty + " " + aa.mWahoo); 32 System.out.println("bb.mWhoami = " + bb.mWhoami); 35 System.out.print("aaOkay (false) = "); 36 System.out.println(aaOkay); 38 System.out.print("bbOkay (true) = "); 39 System.out.println(bbOkay); 46 System.out.println("Caught a ClassCastException (expected)"); 56 System.out.print("instanceof Serializable = "); 57 System.out.println((Object)aaArray instanceof java.io.Serializable) [all...] |
/art/test/041-narrowing/src/ |
Main.java | 8 System.out.println(); 9 System.out.println("Double.POSITIVE_INFINITY = " 11 System.out.println("Double.NEGATIVE_INFINITY = " 13 System.out.println("Float.POSITIVE_INFINITY = " 15 System.out.println("Float.NEGATIVE_INFINITY = " 17 System.out.println("Double.NaN = " 19 System.out.println("Float.NaN = " 22 System.out.println(); 23 System.out.println("(byte) Double.NaN = " 26 System.out.println("(short) Double.NaN = [all...] |
/art/test/047-returns/src/ |
Main.java | 23 System.out.println("pick 1"); 25 System.out.println(((CommonInterface)pickOne(1)).doStuff()); 27 System.out.println("pick 2"); 29 System.out.println(((CommonInterface)pickOne(2)).doStuff()); 31 System.out.println("pick 3"); 53 System.out.println("one running"); 56 System.out.println("one"); 63 System.out.println("two running"); 66 System.out.println("two"); 73 System.out.println("three running") [all...] |
/cts/hostsidetests/monkey/src/com/android/cts/monkey/ |
PackageTest.java | 32 String out = mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0] + " 5000"); local 33 assertTrue(out, ALLOW_MONKEY.matcher(out).find()); 34 assertFalse(out, ALLOW_CHIMP.matcher(out).find()); 36 out = mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[1] + " 5000"); 37 assertFalse(out, ALLOW_MONKEY.matcher(out).find()); 38 assertTrue(out, ALLOW_CHIMP.matcher(out).find()) 42 String out = mDevice.executeShellCommand(MONKEY_CMD + " -v -p " + PKGS[0] local [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
GetAllocationTest.java | 44 int [] out = new int[INPUTSIZE]; local 45 mOut.copyTo(out); 49 out[i]);
|
InitTest.java | 37 float[] out = new float[INPUTSIZE]; local 51 mOut.copyTo(out); 52 checkArray(ref, out, INPUTSIZE, 1, 1, 0);
|
/dalvik/hit/src/com/android/hit/ |
StackTrace.java | 61 System.out.println(mFrames[i].toString());
|
/developers/build/prebuilts/gradle/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/ |
MainActivity.java | 33 * the current text out and new text in when 53 * Set the in and out animations. Using the fade_in/out animations 58 Animation out = AnimationUtils.loadAnimation(this, local 61 mSwitcher.setOutAnimation(out); 67 * automatically animated using the in/out animations set above.
|
/developers/samples/android/ui/views/TextSwitcher/Application/src/main/java/com/example/android/textswitcher/ |
MainActivity.java | 33 * the current text out and new text in when 53 * Set the in and out animations. Using the fade_in/out animations 58 Animation out = AnimationUtils.loadAnimation(this, local 61 mSwitcher.setOutAnimation(out); 67 * automatically animated using the in/out animations set above.
|
/development/samples/browseable/TextSwitcher/src/com.example.android.textswitcher/ |
MainActivity.java | 33 * the current text out and new text in when 53 * Set the in and out animations. Using the fade_in/out animations 58 Animation out = AnimationUtils.loadAnimation(this, local 61 mSwitcher.setOutAnimation(out); 67 * automatically animated using the in/out animations set above.
|
/device/google/accessory/arduino/AndroidAccessory/ |
AndroidAccessory.h | 35 uint8_t out; member in class:AndroidAccessory
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
AnyTest.java | 51 DerOutputStream out = new DerOutputStream(ASN1Any.getInstance(), local 53 assertTrue("False", Arrays.equals(encoded, out.encoded));
|
BooleanTest.java | 60 DerOutputStream out = new DerOutputStream(asn1, Boolean.FALSE); local 61 assertTrue("Encoding false value", Arrays.equals(eFalse, out.encoded)); 64 out = new DerOutputStream(asn1, Boolean.TRUE); 65 assertTrue("Encoding true value", Arrays.equals(eTrue, out.encoded));
|
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/ |
FinishedTest.java | 41 HandshakeIODataStream out = new HandshakeIODataStream(); local 42 message.send(out); 43 byte[] encoded = out.getData(1000); 44 assertEquals("incorrect out data length", message.length(),
|
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
CertificateVerifyTest.java | 58 HandshakeIODataStream out = new HandshakeIODataStream(); local 59 message.send(out); 60 byte[] encoded = out.getData(1000); 61 assertEquals("incorrect out data length", message.length(),
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BERSet.java | 58 ASN1OutputStream out) 61 out.write(BERTags.SET | BERTags.CONSTRUCTED); 62 out.write(0x80); 67 out.writeObject((ASN1Encodable)e.nextElement()); 70 out.write(0x00); 71 out.write(0x00);
|
BERTaggedObject.java | 96 ASN1OutputStream out) 99 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo); 100 out.write(0x80); 135 out.writeObject((ASN1Encodable)e.nextElement()); 140 out.writeObject(obj); 144 out.write(0x00); 145 out.write(0x00);
|
DERNull.java | 35 ASN1OutputStream out) 38 out.writeEncoded(BERTags.NULL, zeroBytes);
|
DEROctetString.java | 35 ASN1OutputStream out) 38 out.writeEncoded(BERTags.OCTET_STRING, string);
|
DERTaggedObject.java | 81 ASN1OutputStream out) 90 out.writeTag(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo); 91 out.writeLength(primitive.encodedLength()); 92 out.writeObject(primitive); 109 out.writeTag(flags, tagNo); 110 out.writeImplicitObject(primitive); 115 out.writeEncoded(BERTags.CONSTRUCTED | BERTags.TAGGED, tagNo, ZERO_BYTES);
|