Searched refs:out (Results 326 - 350 of 484) sorted by path

<<11121314151617181920

/frameworks/base/tests/CoreTests/android/core/
H A DTestWebServer.java422 * Zero out the buffer from last time
452 System.out.print((char)data);
456 System.out.println();
504 // Bomb out if stream closes prematurely
573 // Bomb out if stream closes prematurely
687 // Write out the data
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLayoutTestsAutoTest.java189 // read out the test name it stoped last time.
449 // causes the dumprendertree to run out of memory.
476 OutputStream out = new FileOutputStream(new File(cacheDir,
483 out.write(buf, 0, len);
485 out.close();
H A DLoadTestsAutoTest.java165 FileOutputStream out = new FileOutputStream(LOAD_TEST_RESULT, true);
166 PrintStream ps = new PrintStream(out);
210 out.flush();
211 out.close();
280 OutputStream out = new FileOutputStream(
287 out.write(buf, 0, len);
289 out.close();
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwarder.java82 private Socket in, out; field in class:Forwarder.SocketPipe
84 public SocketPipe(Socket in, Socket out) { argument
86 this.out = out;
93 OutputStream os = out.getOutputStream();
106 return "SocketPipe{" + in + "=>" + out + "}";
/frameworks/base/tests/DumpRenderTree2/assets/
H A Drun_apache2.py87 # This directive is commented out in apache2-debian-httpd.conf for some reason
132 (out, err) = p.communicate()
135 logging.info(out)
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DAlignmentTest.java109 System.out.println("Time: " + time + "mics");
/frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
H A DHugeAgent.java128 // out of the buffering stream object and send it off.
190 * Write out the new state file: the version number, followed by the
195 DataOutputStream out = new DataOutputStream(outstream);
197 out.writeInt(AGENT_VERSION);
198 out.writeInt(mFilling);
199 out.writeBoolean(mAddMayo);
200 out.writeBoolean(mAddTomato);
207 * be running while we change its data out from under it. That, in
208 * turn, means that there is no need to send out any sort of notification
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLTextureViewActivity.java68 BufferedOutputStream out = null;
70 File dump = new File(Environment.getExternalStorageDirectory(), "out.png");
71 out = new BufferedOutputStream(new FileOutputStream(dump));
72 b.compress(Bitmap.CompressFormat.PNG, 100, out);
76 if (out != null) try {
77 out.close();
H A DGetBitmapActivity.java56 FileOutputStream out = new FileOutputStream(
59 b.compress(Bitmap.CompressFormat.PNG, 100, out);
62 out.close();
H A DPointsActivity.java65 System.out.println("(gpuAlpha, swAlpha = " + gpuAlpha + ", " + swAlpha);
H A DTextureViewActivity.java58 BufferedOutputStream out = null;
60 File dump = new File(Environment.getExternalStorageDirectory(), "out.png");
61 out = new BufferedOutputStream(new FileOutputStream(dump));
62 b.compress(Bitmap.CompressFormat.PNG, 100, out);
66 if (out != null) try {
67 out.close();
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A Dlevels.rsh25 uchar4 out;
32 out.xyz = convert_uchar3(pixel);
33 out.w = 0xff;
34 return out;
/frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
H A Dcolormatrix.rs32 void root(const uchar4 *in, uchar4 *out) {
36 *out = convert_uchar4(f);
H A Dconvolve3x3.rs27 void root(uchar4 *out, uint32_t x, uint32_t y) {
64 *out = convert_uchar4(p20);
H A Dconvolve5x5.rs27 void root(uchar4 *out, uint32_t x, uint32_t y) {
71 *out = convert_uchar4(p0);
H A Dfisheye.rsh45 void root(uchar4 *out, uint32_t x, uint32_t y) {
56 *out = rsPackColorTo8888(fout);
H A Dfisheye_approx.rsh45 void root(uchar4 *out, uint32_t x, uint32_t y) {
56 *out = rsPackColorTo8888(fout);
H A Dgrain.rs21 void genRand(uchar *out) {
22 *out = (uchar)rsRand(0xff);
45 void blend9(uchar *out, uint32_t x, uint32_t y) {
73 *out = (uchar)p20;
79 void root(const uchar4 *in, uchar4 *out, uint32_t x, uint32_t y) {
92 *out = p;
H A Dlevels.rsh24 void root(const uchar4 *in, uchar4 *out, uint32_t x, uint32_t y) {
31 out->xyz = convert_uchar3(pixel);
32 out->w = 0xff;
35 void root4(const uchar4 *in, uchar4 *out, uint32_t x, uint32_t y) {
42 out->xyzw = convert_uchar4(pixel);
H A Dvignette.rsh47 void root(const uchar4 *in, uchar4 *out, uint32_t x, uint32_t y) {
57 *out = convert_uchar4(fout);
H A Dvignette_approx.rsh47 void root(const uchar4 *in, uchar4 *out, uint32_t x, uint32_t y) {
58 *out = convert_uchar4(fout);
/frameworks/base/tests/RenderScriptTests/SampleTest/src/com/android/rs/sample/
H A Dsample.rs31 void root(uchar4 *out, uint32_t x, uint32_t y) {
40 out->xyz = convert_uchar3(rsSample(sourceAlloc, allocSampler, uv*2.0f).xyz);
41 out->w = 0xff;
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java320 List<ProcessError> out = new ArrayList<ProcessError>(in.size());
322 out.add(new ProcessError(info));
324 return out;
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DProfileActivity.java188 ObjectOutputStream out = new ObjectOutputStream(fos);
189 out.writeObject(params[0].second);
190 out.close();
/frameworks/base/tests/backup/src/com/android/backuptest/
H A DBackupTestActivity.java206 PrintStream out = new PrintStream(openFileOutput(name, mode));
207 out.print(contents);
208 out.close();

Completed in 258 milliseconds

<<11121314151617181920