HomeSort by relevance Sort by last modified time
    Searched refs:out (Results 501 - 525 of 17003) sorted by null

<<21222324252627282930>>

  /art/test/426-monitor/src/
Main.java 27 System.out.println("In static method");
31 System.out.println("In instance method");
37 System.out.println("In synchronized block");
43 System.out.println("In second instance method");
49 System.out.println("In second static method");
  /art/test/914-hello-obsolescence/src/art/
Test914.java 26 System.out.println("hello");
28 System.out.println("goodbye");
34 // System.out.println("Hello - Transformed");
36 // System.out.println("Goodbye - Transformed");
79 t.sayHi(() -> { System.out.println("Not doing anything here"); });
81 System.out.println("transforming calling function");
84 t.sayHi(() -> { System.out.println("Not doing anything here"); });
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
CountingOutputStream.java 32 * @param out the output stream to wrap
34 public CountingOutputStream(OutputStream out) {
35 super(out);
49 out.write(b);
55 out.write(b);
61 out.write(b, off, len);
PartiallyUncompressingPipe.java 35 private final CountingOutputStream out; field in class:PartiallyUncompressingPipe
66 * @param out the stream, to write to
69 public PartiallyUncompressingPipe(OutputStream out, int copyBufferSize) {
70 this.out = new CountingOutputStream(out);
85 long bytesWrittenBefore = out.getNumBytesWritten();
89 out.write(copyBuffer, 0, numRead);
93 uncompressor.uncompress(in, out);
95 out.flush();
96 return out.getNumBytesWritten() - bytesWrittenBefore
    [all...]
  /external/curl/tests/unit/
unit1395.c 78 char *out = Curl_dedotdotify(pairs[i].input); variable
79 abort_unless(out != NULL, "returned NULL!");
81 if(strcmp(out, pairs[i].output)) {
83 i, pairs[i].input, out, pairs[i].output);
89 free(out); variable
  /external/jemalloc/test/unit/
hash.c 26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
85 uint32_t out; local
86 out = hash_x86_32(key, i, 256-i);
87 memcpy(&hashes[i*hashbytes], &out, hashbytes);
90 uint64_t out[2]; local
91 hash_x86_128(key, i, 256-i, out);
92 memcpy(&hashes[i*hashbytes], out, hashbytes);
95 uint64_t out[2]; local
96 hash_x64_128(key, i, 256-i, out);
97 memcpy(&hashes[i*hashbytes], out, hashbytes)
106 uint32_t out = hash_x86_32(hashes, hashes_size, 0); local
110 uint64_t out[2]; local
115 uint64_t out[2]; local
    [all...]
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/
xsputn.pass.cpp 39 char out[sizeof(in)] = {0}; local
40 t.setp(out, out+sizeof(out));
42 assert(strcmp(in, out) == 0);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/common/
EncoderUtil.java 17 public static void writeCRC32(OutputStream out, byte[] buf)
24 out.write((byte)(value >>> (i * 8)));
27 public static void encodeVLI(OutputStream out, long num)
30 out.write((byte)(num | 0x80));
34 out.write((byte)num);
  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
log_helpers.h 14 inline std::ostream& operator<<(std::ostream& out,
16 return out << "vec2(" << vec.x() << ',' << vec.y() << ')';
20 inline std::ostream& operator<<(std::ostream& out,
22 return out << "vec3(" << vec.x() << ',' << vec.y() << ',' << vec.z() << ')';
26 inline std::ostream& operator<<(std::ostream& out,
28 return out << "vec4(" << vec.x() << ',' << vec.y() << ',' << vec.z() << ','
33 inline std::ostream& operator<<(std::ostream& out,
35 out << std::setfill(' ') << std::setprecision(4) << std::fixed
37 out << "\nmat4[";
38 out << std::setw(10) << mat(0, 0) << " " << std::setw(10) << mat(0, 1) << "
    [all...]
  /hardware/qcom/gps/msm8909w_3100/android/location_api/
LocationUtil.h 25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
43 void convertGnssLocation(Location& in, GnssLocation& out);
44 void convertGnssConstellationType(GnssSvType& in, GnssConstellationType& out);
45 void convertGnssEphemerisType(GnssEphemerisType& in, GnssDebug::SatelliteEphemerisType& out);
46 void convertGnssEphemerisSource(GnssEphemerisSource& in, GnssDebug::SatelliteEphemerisSource& out);
47 void convertGnssEphemerisHealth(GnssEphemerisHealth& in, GnssDebug::SatelliteEphemerisHealth& out);
  /hardware/qcom/gps/msm8998/android/location_api/
LocationUtil.h 25 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
43 void convertGnssLocation(Location& in, GnssLocation& out);
44 void convertGnssConstellationType(GnssSvType& in, GnssConstellationType& out);
45 void convertGnssEphemerisType(GnssEphemerisType& in, GnssDebug::SatelliteEphemerisType& out);
46 void convertGnssEphemerisSource(GnssEphemerisSource& in, GnssDebug::SatelliteEphemerisSource& out);
47 void convertGnssEphemerisHealth(GnssEphemerisHealth& in, GnssDebug::SatelliteEphemerisHealth& out);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ProxyOutputStream.java 41 // the proxy is stored in a protected superclass variable named 'out'
50 out.write(idx);
59 out.write(bts);
70 out.write(bts, st, end);
78 out.flush();
86 out.close();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.virtuals/streambuf.virt.put/
xsputn.pass.cpp 39 char out[sizeof(in)] = {0}; local
40 t.setp(out, out+sizeof(out));
42 assert(strcmp(in, out) == 0);
  /art/test/123-inline-execute2/src/
Main.java 23 System.out.println("Math.sin(" + d + ") = "
26 System.out.println("Math.sinh(" + d + ") = "
28 System.out.println("Math.asin(" + d + ") = "
30 System.out.println("Math.cos(" + d + ") = "
32 System.out.println("Math.cosh(" + d + ") = "
34 System.out.println("Math.acos(" + d + ") = "
37 System.out.println("Math.tan(" + d + ") = "
40 System.out.println("Math.tanh(" + d + ") = "
42 System.out.println("Math.atan(" + d + ") = "
44 System.out.println("Math.atan2(" + d + ", " + (d + 1.0) + ") =
    [all...]
  /external/icu/icu4c/source/tools/genrb/
wrtjava.cpp 87 static FileStream* out=NULL; variable
251 write_tabs(out);
288 T_FileStream_write(out,"\"",1);
300 T_FileStream_write(out,current,add);
302 T_FileStream_write(out,"\" +\n",4);
303 write_tabs(out);
306 T_FileStream_write(out,current,bufLen-len);
311 T_FileStream_write(out,"\"",1);
312 T_FileStream_write(out, buf,bufLen);
315 T_FileStream_write(out,"\",\n",3)
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBlend.cpp 90 extern "C" int rsdIntrinsicBlend_K(uchar4 *out, uchar4 const *in, int slot,
116 uchar4 *out = (uchar4 *)info->outPtr[0]; local
123 if (rsdIntrinsicBlend_K(out, in, info->slot, x1, x2) >= 0)
129 for (;x1 < x2; x1++, out++) {
130 *out = 0;
134 for (;x1 < x2; x1++, out++, in++) {
135 *out = *in;
146 rsdIntrinsicBlendSrcOver_K(out, in, len);
148 out += len << 3;
153 for (;x1 < x2; x1++, out++, in++)
    [all...]
  /system/core/toolbox/upstream-netbsd/bin/dd/
dd.c 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
78 IO in, out; /* input/output state */ variable
179 if (out.name == NULL) {
181 out.fd = STDOUT_FILENO;
182 out.name = "stdout";
183 out.ops = &ddfops_stdfd;
185 out.ops = prog_ops;
188 out.fd = ddop_open(out, out.name, O_RDWR | OFLAGS, DEFFILEMODE)
    [all...]
  /art/test/068-classloader/src/
Main.java 31 //System.out.println("SYSTEM: " + ClassLoader.getSystemClassLoader());
32 //System.out.println("ALTERN: " + loader);
48 System.out.println("base: " + DoubledImplement.class);
49 System.out.println("base2: " + DoubledImplement2.class);
86 System.out.println(e);
88 System.out.println("Loaded class into null class loader");
132 ex.printStackTrace(System.out);
156 System.out.println("loadClass failed");
157 cnfe.printStackTrace(System.out);
165 System.out.println("ERROR: Inaccessible1 was accessible")
    [all...]
  /frameworks/native/opengl/tools/glgen/src/
JniCodeEmitter.java 130 public void emitNativeDeclaration(JFunc jfunc, PrintStream out) {
132 out.println(" /* @hide C function " + jfunc.getCFunc().getOriginal() + " */");
133 out.println();
135 out.println(" // C function " + jfunc.getCFunc().getOriginal());
136 out.println();
139 emitFunction(jfunc, out, true, false);
142 public void emitJavaInterfaceCode(JFunc jfunc, PrintStream out) {
143 emitFunction(jfunc, out, false, true);
146 public void emitJavaCode(JFunc jfunc, PrintStream out) {
147 emitFunction(jfunc, out, false, false)
    [all...]
  /art/test/1908-suspend-native-resume-self/src/art/
Test1908.java 24 System.out.println("Got " + ret + " instead of JVMTI_ERROR_THREAD_NOT_SUSPENDED");
34 System.out.println(me + ": isNativeThreadSpinning() = " + isNativeThreadSpinning());
35 System.out.println(me + ": isSuspended(spinner) = " + Suspension.isSuspended(spinner));
40 System.out.println(me + ": Suspended spinner while native spinning");
41 System.out.println(me + ": isNativeThreadSpinning() = " + isNativeThreadSpinning());
42 System.out.println(me + ": isSuspended(spinner) = " + Suspension.isSuspended(spinner));
44 System.out.println("Resuming other thread");
50 System.out.println("other thread attempting self resume");
51 System.out.println(me + ": isSuspended(spinner) = " + Suspension.isSuspended(spinner));
53 System.out.println("real resume")
    [all...]
  /art/test/985-re-obsolete/src/art/
Test985.java 25 System.out.println("hello - private");
29 System.out.println("goodbye - private");
33 System.out.println("Pre Start private method call");
35 System.out.println("Post Start private method call");
37 System.out.println("Pre Finish private method call");
39 System.out.println("Post Finish private method call");
45 // System.out.println("Hello - private - Transformed");
49 // System.out.println("Goodbye - private - Transformed");
53 // System.out.println("Pre Start private method call - Transformed");
55 // System.out.println("Post Start private method call - Transformed")
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionOutputBuffer.java 54 private final SessionOutputBuffer out; field in class:LoggingSessionOutputBuffer
61 * @param out The session output buffer.
64 public LoggingSessionOutputBuffer(final SessionOutputBuffer out, final Wire wire) {
66 this.out = out;
71 this.out.write(b, off, len);
78 this.out.write(b);
85 this.out.write(b);
92 this.out.flush();
96 this.out.writeLine(buffer)
    [all...]
  /external/autotest/client/common_lib/
smogcheck_util.py 19 out: a string, stdout of the command executed.
34 out, err = proc.communicate()
35 logging.error('runInSubprocess %s: out=%r, err=%r', args[0], out, err)
38 (args[0], proc.returncode, out))
39 return str(out), str(err)
52 out, _ = runInSubprocess(args)
53 if not out:
55 out, _ = runInSubprocess(['modprobe', 'i2c-dev'])
56 if out
    [all...]
  /external/libdrm/libkms/
api.c 23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
40 int kms_create(int fd, struct kms_driver **out)
42 return linux_create(fd, out);
45 int kms_get_prop(struct kms_driver *kms, unsigned key, unsigned *out)
53 return kms->get_prop(kms, key, out);
66 int kms_bo_create(struct kms_driver *kms, const unsigned *attr, struct kms_bo **out)
101 return kms->bo_create(kms, width, height, type, attr, out);
104 int kms_bo_get_prop(struct kms_bo *bo, unsigned key, unsigned *out)
108 *out = bo->pitch;
111 *out = bo->handle
    [all...]
internal.h 23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
42 unsigned *out);
50 struct kms_bo **out);
52 unsigned *out);
53 int (*bo_map)(struct kms_bo *bo, void **out);
70 drm_private int linux_create(int fd, struct kms_driver **out);
72 drm_private int vmwgfx_create(int fd, struct kms_driver **out);
74 drm_private int intel_create(int fd, struct kms_driver **out);
76 drm_private int dumb_create(int fd, struct kms_driver **out);
78 drm_private int nouveau_create(int fd, struct kms_driver **out);
    [all...]

Completed in 471 milliseconds

<<21222324252627282930>>