Searched refs:out (Results 226 - 250 of 484) sorted by path

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/net/http/
H A DCookiesTest.java56 ByteArrayOutputStream out = new ByteArrayOutputStream();
58 StreamHandler handler = new StreamHandler(out, new SimpleFormatter());
65 String log = out.toString("UTF-8");
/frameworks/base/core/tests/coretests/src/android/os/
H A DFileObserverTest.java80 FileOutputStream out = new FileOutputStream(mTestFile);
82 out.write(0x20);
95 out.close();
H A DIAidlTest.aidl26 AidlTest.TestParcelable parcelableOut(out AidlTest.TestParcelable p);
34 boolean[] booleanArray(in boolean[] a0, out boolean[] a1, inout boolean[] a2);
35 char[] charArray(in char[] a0, out char[] a1, inout char[] a2);
36 int[] intArray(in int[] a0, out int[] a1, inout int[] a2);
37 long[] longArray(in long[] a0, out long[] a1, inout long[] a2);
38 float[] floatArray(in float[] a0, out float[] a1, inout float[] a2);
39 double[] doubleArray(in double[] a0, out double[] a1, inout double[] a2);
40 String[] stringArray(in String[] a0, out String[] a1, inout String[] a2);
42 out AidlTest.TestParcelable[] a1,
/frameworks/base/core/tests/coretests/src/android/text/
H A DDynamicLayoutBlocksTest.java46 System.out.print(message);
48 System.out.print(" " + Integer.toString(dl.getBlockEndLines()[i]));
50 System.out.println();
/frameworks/base/core/tests/coretests/src/android/util/
H A DBase64Test.java33 byte[] out = Base64.decode(in, 0);
34 return new String(out);
51 byte[] out = Base64.decode(in, 0);
/frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
H A DMultipartTest.java37 BufferedWriter out = new BufferedWriter(outFile);
39 out.write(filebuffer.toString());
40 out.flush();
42 out.close();
113 // System.out.print(output.toString());
116 // System.out.print(os.toString());
/frameworks/base/core/tests/coretests/src/com/android/internal/net/
H A DNetworkStatsFactoryTest.java135 OutputStream out = null;
138 out = new FileOutputStream(file);
139 Streams.copy(in, out);
142 IoUtils.closeQuietly(out);
148 FileWriter out = null;
150 out = new FileWriter(file);
151 out.write(Long.toString(value));
153 IoUtils.closeQuietly(out);
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
H A DLoggingPrintStreamTest.java34 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
[all...]
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DFileRotatorTest.java188 public void write(OutputStream out) throws IOException {
189 new DataOutputStream(out).writeUTF("bar");
372 final OutputStream out = new FileOutputStream(new File(mBasePath, name));
373 out.close();
378 final DataOutputStream out = new DataOutputStream(
380 out.writeUTF(value);
381 out.close();
386 public void write(OutputStream out) throws IOException {
387 new DataOutputStream(out).writeUTF(value);
/frameworks/base/docs/html/guide/google/gcm/client-javadoc/
H A Ddefault.css330 #nav li ul.animate-height-out {
331 -webkit-transition: height 0.25s ease-out;
332 -moz-transition: height 0.25s ease-out;
333 transition: height 0.25s ease-out; }
524 -webkit-animation-timing-function: ease-out;
525 -moz-animation-timing-function: ease-out;
526 animation-timing-function: ease-out; }
3351 -webkit-transition: all 0.25s ease-out;
3352 -moz-transition: all 0.25s ease-out;
3353 -ms-transition: all 0.25s ease-out;
[all...]
/frameworks/base/docs/html/guide/google/gcm/server-javadoc/
H A Ddefault.css330 #nav li ul.animate-height-out {
331 -webkit-transition: height 0.25s ease-out;
332 -moz-transition: height 0.25s ease-out;
333 transition: height 0.25s ease-out; }
524 -webkit-animation-timing-function: ease-out;
525 -moz-animation-timing-function: ease-out;
526 animation-timing-function: ease-out; }
3351 -webkit-transition: all 0.25s ease-out;
3352 -moz-transition: all 0.25s ease-out;
3353 -ms-transition: all 0.25s ease-out;
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPoint.java100 * @param out The parcel to write the point's coordinates into
103 public void writeToParcel(Parcel out, int flags) { argument
104 out.writeInt(x);
105 out.writeInt(y);
H A DPointF.java101 * @param out The parcel to write the point's coordinates into
104 public void writeToParcel(Parcel out, int flags) { argument
105 out.writeFloat(x);
106 out.writeFloat(y);
H A DRect.java548 * @param out The parcel to write the rectangle's coordinates into
550 public void writeToParcel(Parcel out, int flags) { argument
551 out.writeInt(left);
552 out.writeInt(top);
553 out.writeInt(right);
554 out.writeInt(bottom);
H A DRectF.java449 * Set the dst integer Rect by rounding "out" this rectangle, choosing the
548 * @param out The parcel to write the rectangle's coordinates into
550 public void writeToParcel(Parcel out, int flags) { argument
551 out.writeFloat(left);
552 out.writeFloat(top);
553 out.writeFloat(right);
554 out.writeFloat(bottom);
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapFactoryTest.java35 ByteArrayOutputStream out = new ByteArrayOutputStream();
36 bitmap1.compress(Bitmap.CompressFormat.PNG, 100, out);
37 ParcelFileDescriptor pfd = ParcelFileDescriptor.fromData(out.toByteArray(), null);
/frameworks/base/include/android_runtime/
H A Dandroid_content_res_Configuration.h31 JNIEnv* env, jobject clazz, struct AConfiguration* out);
/frameworks/base/keystore/java/android/security/
H A DKeyStore.java266 OutputStream out = socket.getOutputStream();
267 out.write(code);
269 out.write(parameter.length >> 8);
270 out.write(parameter.length);
271 out.write(parameter);
273 out.flush();
/frameworks/base/libs/androidfw/
H A DObbFile.cpp94 goto out;
103 out:
233 goto out;
238 out:
318 goto out;
323 out:
H A DResourceTypes.cpp83 // NOTE: if this truncates the dst string due to running out of space, no attempt is
1330 // check for sensical values pulled out of the stream so far...
1708 // out at this point. That means we just want the largest one.
1967 //ALOGI("Filtering out width %d in requested %d", screenWidthDp, settings.screenWidthDp);
1971 //ALOGI("Filtering out height %d in requested %d", screenHeightDp, settings.screenHeightDp);
3084 goto out;
3104 goto out;
3152 goto out;
3155 out:
3393 // with its parent's values. Otherwise start out empt
[all...]
/frameworks/base/location/java/android/location/
H A DIGeocodeProvider.aidl30 in GeocoderParams params, out List<Address> addrs);
35 in GeocoderParams params, out List<Address> addrs);
H A DILocationManager.aidl55 in GeocoderParams params, out List<Address> addrs);
59 in GeocoderParams params, out List<Address> addrs);
/frameworks/base/location/java/com/android/internal/location/
H A DILocationProvider.aidl41 int getStatus(out Bundle extras);
/frameworks/base/media/java/android/media/
H A DMediaRouter.java1812 * @param out a List to fill with the routes in this category. If this parameter is
1818 public List<RouteInfo> getRoutes(List<RouteInfo> out) { argument
1819 if (out == null) {
1820 out = new ArrayList<RouteInfo>();
1822 out.clear();
1829 out.add(route);
1832 return out;
H A DResampleInputStream.java150 byte[] out, int outOffset, int npoints);
149 fir21(byte[] in, int inOffset, byte[] out, int outOffset, int npoints) argument

Completed in 824 milliseconds

1234567891011>>