HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1251 - 1275 of 3043) sorted by null

<<51525354555657585960>>

  /cts/common/host-side/xml-plan-generator/src/com/android/compatibility/common/xmlgenerator/
XmlPlanGenerator.java 74 OutputStream out = System.out; local
76 out = new FileOutputStream(mOutput);
80 writer = new PrintWriter(out);
  /cts/tests/tests/net/src/android/net/cts/
LocalSocketTest.java 64 FileDescriptor[] out = serverSocket.getAncillaryFileDescriptors(); local
65 assertEquals(1, out.length);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestIlogb.java 39 public int out; field in class:TestIlogb.ArgumentsFloatInt
45 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
46 script.forEach_testIlogbFloatInt(in, out);
47 verifyResultsIlogbFloatInt(in, out, false);
52 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE); local
53 scriptRelaxed.forEach_testIlogbFloatInt(in, out);
54 verifyResultsIlogbFloatInt(in, out, true);
60 private void verifyResultsIlogbFloatInt(Allocation in, Allocation out, boolean relaxed) {
64 out.copyTo(arrayOut);
71 args.out = arrayOut[i * 1 + j]
95 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
102 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2), INPUTSIZE); local
145 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
152 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 3), INPUTSIZE); local
195 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
202 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 4), INPUTSIZE); local
    [all...]
TestRemquo.java 41 public float out; field in class:TestRemquo.ArgumentsFloatFloatIntFloat
49 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
52 script.forEach_testRemquoFloatFloatIntFloat(inB, out);
53 verifyResultsRemquoFloatFloatIntFloat(inB, inC, outD, out, false);
59 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local
62 scriptRelaxed.forEach_testRemquoFloatFloatIntFloat(inB, out);
63 verifyResultsRemquoFloatFloatIntFloat(inB, inC, outD, out, true);
69 private void verifyResultsRemquoFloatFloatIntFloat(Allocation inB, Allocation inC, Allocation outD, Allocation out, boolean relaxed) {
77 out.copyTo(arrayOut);
86 args.out = arrayOut[i * 1 + j]
120 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
130 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local
191 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
201 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local
262 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
272 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
BrowserTest.java 94 * to the browser when we run out of usable browser tabs. If such data is
168 FileOutputStream out = mContext.openFileOutput(filename, local
170 Writer writer = new OutputStreamWriter(out, "UTF-8");
203 FileOutputStream out = mContext.openFileOutput("target.txt", local
205 Writer writer = new OutputStreamWriter(out, "UTF-8");
  /cts/tests/tests/view/src/android/view/cts/
WindowManager_LayoutParamsTest.java 214 WindowManager.LayoutParams out = local
216 assertEquals(0, out.copyFrom(mLayoutParams));
  /cts/tools/dasm/src/java_cup/
emit.java 38 * production. This reveals a prior state, which we transition out
225 * @param out stream to produce output on.
227 protected static void emit_package(PrintStream out)
231 out.println("package " + package_name + ";\n");
239 * @param out stream to produce output on.
242 public static void symbols(PrintStream out, boolean emit_non_terms)
250 out.println();
251 out.println("//----------------------------------------------------");
252 out.println("// The following code was generated by " +
254 out.println("// " + new Date())
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvInsnList.java 122 * @param out {@code non-null;} where to write to
124 public void writeTo(AnnotatedOutput out) {
125 int startCursor = out.getCursor();
128 if (out.annotates()) {
129 boolean verbose = out.isVerbose();
137 s = insn.listingString(" ", out.getAnnotationWidth(),
144 out.annotate(codeBytes, s);
146 out.annotate(codeBytes, "");
154 insn.writeTo(out);
162 int written = (out.getCursor() - startCursor) / 2
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstUtf8.java 86 char out; local
96 out = (char) v0;
118 out = (char) value;
145 out = (char) value;
154 chars[outAt] = out;
  /dalvik/dx/src/com/android/dx/command/dump/
BaseDumper.java 42 private final PrintStream out; field in class:BaseDumper
76 * @param out {@code non-null;} where to dump to
80 public BaseDumper(byte[] bytes, PrintStream out,
84 this.out = out;
208 out.print(s);
218 out.println(s);
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsnList.java 122 * @param out {@code non-null;} where to write to
124 public void writeTo(AnnotatedOutput out) {
125 int startCursor = out.getCursor();
128 if (out.annotates()) {
129 boolean verbose = out.isVerbose();
137 s = insn.listingString(" ", out.getAnnotationWidth(),
144 out.annotate(codeBytes, s);
146 out.annotate(codeBytes, "");
154 insn.writeTo(out);
162 int written = (out.getCursor() - startCursor) / 2
    [all...]
  /dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java 43 System.out.println("section " + Integer.toHexString(section.type)
54 System.out.println("string " + index + ": " + string);
62 System.out.println("type " + index + ": " + dex.strings().get(type));
70 System.out.println("proto " + index + ": " + protoId);
78 System.out.println("field " + index + ": " + fieldId);
86 System.out.println("methodId " + index + ": " + methodId);
93 System.out.println("No type lists");
99 System.out.print("Type list i=" + i + ", size=" + size + ", elements=");
101 System.out.print(" " + dex.typeNames().get((int) in.readShort()));
106 System.out.println()
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstString.java 86 char out; local
96 out = (char) v0;
118 out = (char) value;
145 out = (char) value;
154 chars[outAt] = out;
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 186 private void copy(InputStream in, OutputStream out) throws IOException {
190 out.write(buffer, 0, count);
  /development/perftests/panorama/feature_mos/src/mosaic/
ImageUtils.cpp 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height)
31 ImageType yimg = out;
73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height)
76 ImageType yimg = out;
121 ImageType out = ImageUtils::allocateImage(width, height, 1); local
122 ImageType outCopy = out;
143 return out;
146 ImageType ImageUtils::rgb2gray(ImageType out, ImageType in, int width, int height)
149 ImageType gray = out;
151 ImageType outCopy = out;
    [all...]
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnService.java 162 FileOutputStream out = new FileOutputStream(mInterface.getFileDescriptor()); local
200 out.write(packet.array(), 0, length);
238 throw new IllegalStateException("Timed out");
286 throw new IllegalStateException("Timed out");
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelpers.java 322 private void copyStreamData(InputStream in, OutputStream out) throws IOException {
326 out.write(data, 0, numBytes);
  /development/tools/idegen/src/com/android/idegen/
IntellijProject.java 125 File out = new File(ideaDir, "modules.xml"); local
126 logger.info("Creating " + out.getCanonicalPath());
127 Files.write(modulesContent, out, CHARSET);
148 File out = new File(ideaDir, ".name"); local
149 Files.write(name, out, CHARSET);
  /development/tools/yuv420sp2rgb/
yuv420sp2rgb.c 136 unsigned char *out = ctx->buffer; local
165 out += offset;
167 if (alpha) out[i++] = 0xff;
168 out[i++] = r;
169 out[i++] = g;
170 out[i] = b;
199 void *in, *out; local
250 out = mmap(0, outsize, PROT_WRITE, MAP_SHARED, ofd, 0);
251 FAILIF(out == MAP_FAILED, "could not mmap output file: %s (%d)\n",
262 out + header_size, outsize - header_size
    [all...]
  /device/asus/fugu/libaudio/
AudioHardwareOutput.cpp 116 AudioStreamOut* out; local
120 out = new AudioStreamOut(*this, false);
123 out = new AudioStreamOut(*this, true);
126 if (out == NULL) {
131 *status = out->set(format, channels, sampleRate);
134 *pp_out = out;
137 delete out;
143 void AudioHardwareOutput::closeOutputStream(AudioStreamOut* out) {
144 if (out == NULL)
149 out->standby()
309 sp<AudioOutput> out; local
    [all...]
  /external/android-clat/
translate.c 220 * out - output packet
227 int icmp_to_icmp6(clat_packet out, clat_packet_index pos, const struct icmphdr *icmp,
229 struct icmp6_hdr *icmp6_targ = out[pos].iov_base;
239 out[pos].iov_len = sizeof(struct icmp6_hdr);
246 clat_packet_len = ipv4_packet(out, pos + 1, payload, payload_size);
259 out[CLAT_POS_PAYLOAD].iov_base = (uint8_t *) payload;
260 out[CLAT_POS_PAYLOAD].iov_len = payload_size;
268 icmp6_targ->icmp6_cksum = packet_checksum(checksum, out, pos);
275 * out - output packet
281 int icmp6_to_icmp(clat_packet out, clat_packet_index pos, const struct icmp6_hdr *icmp6
512 clat_packet out = { local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3debughandlers.c 33 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
790 unsigned char * out; local
798 out = buffer + sprintf((char *)buffer, "semanticPredicate\t%s\t", result == ANTLR3_TRUE ? "true" : "false");
806 *out++ = '%';
807 *out++ = '0';
808 *out++ = 'A';
813 *out++ = '%';
814 *out++ = '0';
815 *out++ = 'D';
820 *out++ = '%'
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
DigestOutputStreamTest.java 87 MyOutputStream out = new MyOutputStream(); local
89 MyDigestOutputStream dos = new MyDigestOutputStream(out, md);
90 assertSame(out, dos.myOutputStream());
105 OutputStream out = new MyOutputStream(); local
108 DigestOutputStream dos = new DigestOutputStream(out, digest);
112 dos = new DigestOutputStream(out, null);
123 OutputStream out = new MyOutputStream(); local
125 DigestOutputStream dos = new DigestOutputStream(out, null);
592 public MyDigestOutputStream(OutputStream out, MessageDigest digest) {
593 super(out, digest)
    [all...]
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 659 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
660 putObjectToStream(initial, out);
661 ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
ServerHandshakeImplTest.java 72 HandshakeIODataStream out = new HandshakeIODataStream(); local
73 out.writeUint8(message.getType());
74 out.writeUint24(message.length());
75 message.send(out);
76 byte[] encodedClientHello = out.getData(1000);

Completed in 1069 milliseconds

<<51525354555657585960>>