HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2101 - 2125 of 5424) sorted by null

<<81828384858687888990>>

  /frameworks/data-binding/compiler/src/main/java/android/databinding/annotationprocessor/
ProcessExpressions.java 162 String out = Joiner.on(StringUtils.LINE_SEPARATOR).join(classNames); local
163 L.d("Writing list of classes to %s . \nList:%s", exportClassNamesTo, out);
166 FileUtils.write(new File(exportClassNamesTo), out);
  /frameworks/minikin/tests/unittest/
CmapCoverageTest.cpp 31 size_t writeU8(uint8_t x, uint8_t* out, size_t offset) {
32 out[offset] = x;
36 size_t writeU16(uint16_t x, uint8_t* out, size_t offset) {
37 out[offset] = x >> 8;
38 out[offset + 1] = x;
42 size_t writeI16(int16_t sx, uint8_t* out, size_t offset) {
43 return writeU16(static_cast<uint16_t>(sx), out, offset);
46 size_t writeU24(uint32_t x, uint8_t* out, size_t offset) {
47 out[offset] = x >> 16;
48 out[offset + 1] = x >> 8
282 std::vector<uint8_t> out; member in class:minikin::CmapBuilder
    [all...]
  /frameworks/ml/nn/common/
CpuExecutor.cpp 283 return verify(requiredIns, ins, "in") && verify(requiredOuts, outs, "out");
299 RunTimeOperandInfo& out = mOperands[outs[0]]; local
300 Shape outShape = out.shape();
304 setInfoAndAllocateIfNeeded(&out, outShape) &&
310 reinterpret_cast<float*>(out.buffer),
314 setInfoAndAllocateIfNeeded(&out, outShape) &&
320 reinterpret_cast<uint8_t*>(out.buffer),
332 RunTimeOperandInfo& out = mOperands[outs[0]]; local
333 Shape outShape = out.shape();
337 setInfoAndAllocateIfNeeded(&out, outShape) &
    [all...]
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
SetupWizardLayout.java 139 final TypedValue out = new TypedValue(); local
140 getResources().getValue(R.dimen.suw_illustration_aspect_ratio, out, true);
141 illustrationAspectRatio = out.getFloat();
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
Wap230WspContentTypeTest.java 257 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
258 out.write(0x00);
259 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray());
266 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
267 out.write(testType.getBytes("US-ASCII"));
268 out.write(WSP_STRING_TERMINATOR);
270 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray());
281 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
282 out.write(testType.length() + 1);
283 out.write(testType.getBytes("US-ASCII"))
297 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
313 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
329 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
348 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
368 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
386 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
403 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
424 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
446 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
470 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
493 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
510 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
533 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
557 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
582 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
606 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
627 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
648 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
673 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
694 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
717 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
738 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
759 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
782 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
793 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
815 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
839 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
863 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [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...]
rsCpuIntrinsicResize.cpp 334 uchar4 *out = ((uchar4 *)info->outPtr[0]) + xstart; local
355 out, len,
360 out += len;
367 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth);
368 out++;
401 uchar2 *out = ((uchar2 *)info->outPtr[0]) + xstart; local
422 out, len,
427 out += len;
434 *out = OneBiCubic(yp0, yp1, yp2, yp3, xf, yf, srcWidth);
435 out++
468 uchar *out = ((uchar *)info->outPtr[0]) + xstart; local
535 float4 *out = ((float4 *)info->outPtr[0]) + xstart; local
575 float2 *out = ((float2 *)info->outPtr[0]) + xstart; local
615 float *out = ((float *)info->outPtr[0]) + xstart; local
    [all...]
rsCpuScriptGroup2.cpp 67 const Allocation* out = closure->mReturnValue; local
68 const uint32_t ostep = out->mHal.state.elementSizeBytes;
69 const uint8_t* ptr = (uint8_t *)(out->mHal.drvState.lod[0].mallocPtr) +
72 ptr += out->mHal.drvState.lod[0].stride * kinfo->current.y;
304 // The output filename has to be the last, in case we need to pop it out and
  /frameworks/support/compat/tests/java/android/support/v4/provider/
FontsContractCompatTest.java 79 ArrayList<byte[]> out = new ArrayList<>(); external variable declarations
81 out.add(sig.toByteArray());
84 SIGNATURE.add(out); external variable declarations
  /hardware/libhardware/modules/audio/
audio_hw.c 87 // out->last_write_time_us = 0; unnecessary as a stale write time has same effect
128 struct stub_stream_out *out = (struct stub_stream_out *)stream; local
132 const int64_t elapsed_time_since_last_write = now - out->last_write_time_us;
141 out->last_write_time_us = now + sleep_time;
304 struct stub_stream_out *out = local
306 if (!out)
309 out->stream.common.get_sample_rate = out_get_sample_rate;
310 out->stream.common.set_sample_rate = out_set_sample_rate;
311 out->stream.common.get_buffer_size = out_get_buffer_size;
312 out->stream.common.get_channels = out_get_channels
    [all...]
  /hardware/qcom/audio/legacy/alsa_sound/
AudioHardwareALSA.cpp 735 AudioStreamOutALSA *out = 0; local
741 return out;
771 return out;
827 out = new AudioStreamOutALSA(this, &(*it));
828 err = out->set(format, channels, sampleRate, devices);
834 return out;
903 out = new AudioStreamOutALSA(this, &(*it));
904 err = out->set(format, channels, sampleRate, devices);
907 return out;
1006 AudioStreamOutALSA *out = 0; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
SystemTest.java 49 PrintStream orgOut = System.out;
50 PrintStream out = new PrintStream(new ByteArrayOutputStream()); local
51 System.setOut(out);
52 assertTrue("out not set", System.out == out);
  /libcore/luni/src/test/java/libcore/java/io/
OldOutputStreamWriterTest.java 125 Support_OutputStream out = new Support_OutputStream(); local
136 writer = new OutputStreamWriter(out, (Charset) null);
142 writer = new OutputStreamWriter(out, cs);
151 Support_OutputStream out = new Support_OutputStream(); local
163 writer = new OutputStreamWriter(out, (CharsetEncoder) null);
169 writer = new OutputStreamWriter(out, cs);
239 System.out.println(e);
341 Support_OutputStream out = new Support_OutputStream(500); local
344 writer = new OutputStreamWriter(out, "utf-8");
399 out.setThrowsException(true)
434 Support_OutputStream out = new Support_OutputStream(500); local
486 Support_OutputStream out = new Support_OutputStream(500); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldRuntimeTest.java 471 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
474 Runtime.getRuntime().getLocalizedOutputStream(out);
479 byte[] returned = out.toByteArray();
  /libcore/luni/src/test/java/libcore/java/text/
OldNumberFormatTest.java 212 String out = nf1.format(1234567890.0123456789); local
213 assertEquals("Wrong result for double : " + out, "1,234,567,890.012",
214 out.toString());
216 out = nf1.format(-1234567890.0123456789);
217 assertEquals("Wrong result for double : " + out, "-1,234,567,890.012",
218 out.toString());
222 out = nf2.format(-1234567890.0123456789);
224 // assertEquals("Wrong result for double : " + out, "1,234,567,890.012-",
225 // out.toString());
226 assertEquals("Wrong result for double : " + out, "-1'234'567'890.012", out.toString())
239 String out = nf1.format(Long.MAX_VALUE); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 869 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
878 out.write(begStream, 0, begStream.length);
879 out.write(cName.length); // second byte for C class name length
880 out.write(cName, 0, cName.length); // C class name
892 out.write(midStream, 0, midStream.length);
893 out.write(aName.length); // second byte for A class name length
894 out.write(aName, 0, aName.length); // A class name
925 out.write(endStream, 0, endStream.length);
926 out.flush();
930 out.toByteArray()))
1003 ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream( local
1273 ObjectOutputStream out = new ObjectOutputStream(pout); local
1406 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DigestOutputStreamTest.java 80 MyOutputStream out = new MyOutputStream(); local
82 MyDigestOutputStream dos = new MyDigestOutputStream(out, md);
83 assertSame(out, dos.myOutputStream());
95 dos = new MyDigestOutputStream(out, null);
106 OutputStream out = new MyOutputStream(); local
109 DigestOutputStream dos = new DigestOutputStream(out, digest);
113 dos = new DigestOutputStream(out, null);
123 OutputStream out = new MyOutputStream(); local
125 DigestOutputStream dos = new DigestOutputStream(out, null);
666 public MyDigestOutputStream(OutputStream out, MessageDigest digest)
    [all...]
  /libcore/ojluni/src/main/java/java/io/
ObjectOutputStream.java 109 * <p>Serialization does not write out the fields of any object that does not
229 * @param out output stream to write to
233 * @throws NullPointerException if <code>out</code> is <code>null</code>
239 public ObjectOutputStream(OutputStream out) throws IOException {
241 bout = new BlockDataOutputStream(out);
1811 private final OutputStream out; field in class:ObjectOutputStream.BlockDataOutputStream
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
ThreadGroup.java     [all...]
  /libcore/ojluni/src/main/java/java/util/
Base64.java 663 // scan all bytes to fill out all non-alphabet. a performance
782 out.write(newline);
807 out.write(base64[b0 >> 2]);
808 out.write(base64[(b0 << 4) & 0x3f | (b1 >> 4)]);
809 out.write(base64[(b1 << 2) & 0x3f | (b2 >> 6)]);
810 out.write(base64[b2 & 0x3f]);
820 out.write(base64[(bits >>> 18) & 0x3f]);
821 out.write(base64[(bits >>> 12) & 0x3f])
    [all...]
Properties.java 177 * out across several adjacent natural lines by escaping
354 //System.out.println("line=<" + new String(lineBuf, 0, limit) + ">");
395 * and blank lines and filter out those leading whitespace characters
546 char[] out = convtBuf; local
577 out[outLen++] = (char)value;
583 out[outLen++] = aChar;
586 out[outLen++] = aChar;
589 return new String (out, 0, outLen);
696 * Calls the {@code store(OutputStream out, String comments)} method
701 * properties list is via the {@code store(OutputStream out,
    [all...]
  /libcore/ojluni/src/main/java/sun/security/pkcs/
SignerInfo.java 212 public void encode(DerOutputStream out) throws IOException {
214 derEncode(out);
221 * @param out
226 public void derEncode(OutputStream out) throws IOException {
251 out.write(tmp.toByteArray());
646 String out = ""; local
648 out += "Signer Info for (issuer): " + issuerName + "\n";
649 out += "\tversion: " + Debug.toHexString(version) + "\n";
650 out += "\tcertificateSerialNumber: " +
652 out += "\tdigestAlgorithmId: " + digestAlgorithmId + "\n"
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
ObjectIdentifier.java 322 void encode (DerOutputStream out) throws IOException
324 out.write (DerValue.tag_ObjectId, encoding);
491 * turn out to be 000001 001100. While the 8 bits on the right are from
510 byte[] out = new byte[(bits+ow-1)/ow];
524 out[opos/ow] |= // paste!
527 & ((1 << (count))-1)) // zero out all other bits
532 return out;
540 * @param out the existing array to be pasted into
544 private static int pack7Oid(byte[] in, int ioffset, int ilength, byte[] out, int ooffset) {
553 System.arraycopy(pack, firstNonZero, out, ooffset, pack.length-firstNonZero)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
X509CRLEntryImpl.java 312 DerOutputStream out = new DerOutputStream(); local
313 out.putOctetString(extValue);
314 extValue = out.toByteArray();
423 DerOutputStream out = new DerOutputStream();
424 out.putOctetString(extData);
425 return out.toByteArray();
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLauncherActivity.java 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
104 // EXTRA_TEXT, we will try send this TEXT out; Currently in
353 StringBuilder out = new StringBuilder(); local
357 out.append(text.substring(end, start));
363 out.append("&nbsp;");
365 out.append(' ');
367 out.append("<br>");
369 out.append("&lt;");
371 out.append("&gt;");
373 out.append("&amp;")
    [all...]

Completed in 102 milliseconds

<<81828384858687888990>>