Searched refs:out (Results 1 - 25 of 405) sorted by relevance

1234567891011>>

/frameworks/base/tools/preload/
H A DPrintCsv.java42 printHeaders(System.out);
51 printRow(System.out, baseline, loadedClass);
55 static void printHeaders(PrintStream out) { argument
56 out.println("Name"
70 static void printRow(PrintStream out, MemoryUsage baseline, argument
72 out.print(loadedClass.name);
73 out.print(',');
74 out.print(loadedClass.preloaded);
75 out.print(',');
76 out
[all...]
H A DPrintHtmlDiff.java71 PrintStream out = System.out;
73 out.println("<html><body>");
74 out.println("<style>");
75 out.println("a, th, td, h2 { font-family: arial }");
76 out.println("th, td { font-size: small }");
77 out.println("</style>");
78 out.println("<script src=\"sorttable.js\"></script>");
79 out.println("<p><a href=\"#removed\">Removed</a>");
80 out
87 printTable(PrintStream out, MemoryUsage baseline, Iterable<LoadedClass> classes) argument
[all...]
/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/compile/linkloader/include/impl/
H A DELFSectionBits.hxx34 out() << '\n' << fillformat('=', 79) << '\n';
35 out().changeColor(raw_ostream::WHITE, true);
36 out() << "ELF " << section_type_str << ": " << sh->getName() << '\n';
37 out().resetColor();
38 out() << fillformat('-', 79) << '\n';
40 out() << " Size : " << sh->getSize() << '\n';
41 out() << " Start Address: " << (void *)chunk.getBuffer() << '\n';
42 out() << fillformat('-', 79) << '\n';
46 out() << fillformat('=', 79) << '\n';
H A DELFSectionHeader.hxx70 out() << '\n' << fillformat('=', 79) << '\n';
71 out().changeColor(raw_ostream::WHITE, true);
72 out() << "ELF Section Header "
74 out().resetColor();
75 out() << fillformat('-', 79) << '\n';
77 out() << fillformat('-', 79) << '\n';
78 out().changeColor(raw_ostream::YELLOW, true);
79 out() << "ELF Section Header "
81 out().resetColor();
85 out() << forma
[all...]
H A DELFHeader.hxx29 out() << fillformat('=', 79) << '\n';
30 out().changeColor(raw_ostream::WHITE, true);
31 out() << "ELF Header\n";
32 out().resetColor();
33 out() << fillformat('-', 79) << '\n';
36 out() << format(" %-32s : ", (char const *)(title)) << (value) << '\n'
57 out() << fillformat('=', 79) << "\n\n";
H A DELFReloc.hxx85 out() << '\n' << fillformat('=', 79) << '\n';
86 out().changeColor(raw_ostream::WHITE, true);
87 out() << "ELF Relaocation Table Entry "
89 out().resetColor();
90 out() << fillformat('-', 79) << '\n';
92 out() << fillformat('-', 79) << '\n';
93 out().changeColor(raw_ostream::YELLOW, true);
94 out() << "ELF Relaocation Table Entry "
96 out().resetColor();
100 out() << forma
[all...]
/frameworks/base/opengl/tools/glgen/src/
H A DJniCodeEmitter.java123 public void emitNativeDeclaration(JFunc jfunc, PrintStream out) { argument
124 out.println(" // C function " + jfunc.getCFunc().getOriginal());
125 out.println();
127 emitFunction(jfunc, out, true, false);
130 public void emitJavaInterfaceCode(JFunc jfunc, PrintStream out) { argument
131 emitFunction(jfunc, out, false, true);
134 public void emitJavaCode(JFunc jfunc, PrintStream out) { argument
135 emitFunction(jfunc, out, false, false);
144 void emitFunctionCall(JFunc jfunc, PrintStream out, String iii, boolean grabArray) { argument
149 out
186 printIfcheckPostamble(PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String iii) argument
192 printIfcheckPostamble(PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
327 emitNativeBoundsChecks(CFunc cfunc, String cname, PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
444 emitFunction(JFunc jfunc, PrintStream out, boolean nativeDecl, boolean interfaceDecl) argument
654 emitJniCode(JFunc jfunc, PrintStream out) argument
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java193 public void writeToParcel(android.os.Parcel out, int flags) { argument
195 out.writeInt(1);
196 this.provider.writeToParcel(out, flags);
198 out.writeInt(0);
200 out.writeInt(this.minWidth);
201 out.writeInt(this.minHeight);
202 out.writeInt(this.minResizeWidth);
203 out.writeInt(this.minResizeHeight);
204 out.writeInt(this.updatePeriodMillis);
205 out
[all...]
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DWap230WspContentTypeTest.java257 ByteArrayOutputStream out = new ByteArrayOutputStream();
258 out.write(0x00);
259 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray());
266 ByteArrayOutputStream out = new ByteArrayOutputStream();
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();
282 out.write(testType.length() + 1);
283 out
[all...]
/frameworks/support/v4/java/android/support/v4/util/
H A DDebugUtils.java27 public static void buildShortClassTag(Object cls, StringBuilder out) { argument
29 out.append("null");
39 out.append(simpleName);
40 out.append('{');
41 out.append(Integer.toHexString(System.identityHashCode(cls)));
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DPart.java200 * @param out The output stream
203 protected void sendStart(OutputStream out) throws IOException { argument
204 LOG.trace("enter sendStart(OutputStream out)");
205 out.write(EXTRA_BYTES);
206 out.write(getPartBoundary());
207 out.write(CRLF_BYTES);
213 * @param out The output stream
216 protected void sendDispositionHeader(OutputStream out) throws IOException { argument
217 LOG.trace("enter sendDispositionHeader(OutputStream out)");
218 out
229 sendContentTypeHeader(OutputStream out) argument
251 sendTransferEncodingHeader(OutputStream out) argument
266 sendEndOfHeader(OutputStream out) argument
277 sendData(OutputStream out) argument
292 sendEnd(OutputStream out) argument
305 send(OutputStream out) argument
358 sendParts(OutputStream out, final Part[] parts) argument
374 sendParts(OutputStream out, Part[] parts, byte[] partBoundary) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DEntropyService.java128 PrintWriter out = null;
130 out = new PrintWriter(new FileOutputStream(randomDevice));
131 out.println("Copyright (C) 2009 The Android Open Source Project");
132 out.println("All Your Randomness Are Belong To Us");
133 out.println(START_TIME);
134 out.println(START_NANOTIME);
135 out.println(SystemProperties.get("ro.serialno"));
136 out.println(SystemProperties.get("ro.bootmode"));
137 out.println(SystemProperties.get("ro.baseband"));
138 out
[all...]
/frameworks/compile/linkloader/utils/
H A Dhelper.cpp36 out() << format("%08x", i) << ':';
39 out().changeColor(raw_ostream::MAGENTA);
44 out().resetColor();
48 out().changeColor(raw_ostream::MAGENTA);
52 out() << ' ' << format("%02x", (unsigned)data[j]);
56 out().resetColor();
57 out() << " ";
61 out() << (char)data[j];
63 out() << '.';
67 out() << '\
[all...]
/frameworks/base/media/libstagefright/foundation/
H A Dbase64.cpp43 uint8_t *out = buffer->data(); local
72 out[j++] = (accum >> 16);
74 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; }
75 if (j < outLen) { out[j++] = accum & 0xff; }
99 const void *_data, size_t size, AString *out) {
100 out->clear();
110 out->append(encode6Bit(x1 >> 2));
111 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f));
112 out->append(encode6Bit((x2 << 2 | x3 >> 6) & 0x3f));
113 out
98 encodeBase64( const void *_data, size_t size, AString *out) argument
[all...]
/frameworks/base/core/java/android/speech/srec/
H A DWaveHeader.java226 * @param out {@link java.io.OutputStream} to receive the header.
230 public int write(OutputStream out) throws IOException { argument
232 writeId(out, "RIFF");
233 writeInt(out, 36 + mNumBytes);
234 writeId(out, "WAVE");
237 writeId(out, "fmt ");
238 writeInt(out, 16);
239 writeShort(out, mFormat);
240 writeShort(out, mNumChannels);
241 writeInt(out, mSampleRat
253 writeId(OutputStream out, String id) argument
257 writeInt(OutputStream out, int val) argument
264 writeShort(OutputStream out, short val) argument
[all...]
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
H A Ddct_inline.h29 int32 out; local
33 out = op2 * 724 + op3; /* op1 is not used here */
35 return out;
62 int32 out; local
66 out = k6 * 1338 + k1;
68 return out;
73 int32 out; local
77 out = k6 * 946 + k1;
79 return out;
113 int32 out; local
117 smlabb out, op1, op2, op3 local
149 int32 out; local
153 smlabb out, k6, k14, k1 local
161 int32 out; local
165 smlabb out, k6, k14, k1 local
176 int32 out; local
180 and out, op2, #0xFFFF local
181 mla out, op1, out, op3 local
215 int32 out; local
219 and out, k14, 0xFFFF local
220 mla out, k6, out, k1 local
228 int32 out; local
232 and out, k14, 0xFFFF local
233 mla out, k6, out, k1 local
271 register int32 out; local
287 register int32 out; local
303 register int32 out; local
319 register int32 out; local
334 register int32 out; local
[all...]
H A Ddct.cpp33 Output: out[64] ==> next block
38 Void BlockDCT_AANwSub(Short *out, UChar *cur, UChar *pred, Int width) argument
50 dst = out + 64 ;
52 out += 128;
158 while (dst < out);
160 out -= 64;
161 dst = out + 8;
166 k0 = out[0];
167 k1 = out[8];
168 k2 = out[1
267 Block4x4DCT_AANwSub(Short *out, UChar *cur, UChar *pred, Int width) argument
473 Block2x2DCT_AANwSub(Short *out, UChar *cur, UChar *pred, Int width) argument
652 BlockDCT_AANIntra(Short *out, UChar *cur, UChar *dummy2, Int width) argument
863 Block4x4DCT_AANIntra(Short *out, UChar *cur, UChar *dummy2, Int width) argument
1050 Block2x2DCT_AANIntra(Short *out, UChar *cur, UChar *dummy2, Int width) argument
1210 Block1x1DCTwSub(Short *out, UChar *cur, UChar *pred, Int width) argument
1247 Block1x1DCTIntra(Short *out, UChar *cur, UChar *dummy2, Int width) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DProviderInfo.java105 @Override public void writeToParcel(Parcel out, int parcelableFlags) { argument
106 super.writeToParcel(out, parcelableFlags);
107 out.writeString(authority);
108 out.writeString(readPermission);
109 out.writeString(writePermission);
110 out.writeInt(grantUriPermissions ? 1 : 0);
111 out.writeTypedArray(uriPermissionPatterns, parcelableFlags);
112 out.writeTypedArray(pathPermissions, parcelableFlags);
113 out.writeInt(multiprocess ? 1 : 0);
114 out
[all...]
/frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_stream.c75 u32 out; local
80 out = h264bsdShowBits32(pStrmData) >> (32 - numBits);
84 return(out);
119 u32 out; local
137 out = ((u32)pStrm[0] << 24) | ((u32)pStrm[1] << 16) |
144 out <<= bitPosInWord;
145 out |= byte>>tmp;
147 return (out);
153 out = (u32)(*pStrm++) << shift;
158 out |
[all...]
/frameworks/base/services/java/com/android/server/net/
H A DNetworkIdentitySet.java71 public void writeToStream(DataOutputStream out) throws IOException { argument
72 out.writeInt(VERSION_ADD_ROAMING);
73 out.writeInt(size());
75 out.writeInt(ident.getType());
76 out.writeInt(ident.getSubType());
77 writeOptionalString(out, ident.getSubscriberId());
78 out.writeBoolean(ident.getRoaming());
82 private static void writeOptionalString(DataOutputStream out, String value) throws IOException { argument
84 out.writeByte(1);
85 out
[all...]
/frameworks/base/media/libeffects/testlibs/
H A DAudioBiquadFilter.h76 // out The output buffer. Should be of size frameCount * nChannels.
78 void process(const audio_sample_t in[], audio_sample_t out[],
157 void process_bypass(const audio_sample_t * in, audio_sample_t * out,
160 void process_normal_mono(const audio_sample_t * in, audio_sample_t * out,
164 audio_sample_t * out, int frameCount);
167 audio_sample_t * out, int frameCount);
169 void process_normal_multi(const audio_sample_t * in, audio_sample_t * out,
173 audio_sample_t * out, int frameCount);
176 audio_sample_t * out, int frameCount);
/frameworks/base/core/java/android/util/
H A DJsonWriter.java71 * public void writeJsonStream(OutputStream out, List<Message> messages) throws IOException {
72 * JsonWriter writer = new JsonWriter(new OutputStreamWriter(out, "UTF-8"));
123 private final Writer out; field in class:JsonWriter
144 * Creates a new instance that writes a JSON-encoded stream to {@code out}.
148 public JsonWriter(Writer out) { argument
149 if (out == null) {
150 throw new NullPointerException("out == null");
152 this.out = out;
241 out
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
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/java/android/app/
H A DResultInfo.java53 public void writeToParcel(Parcel out, int flags) { argument
54 out.writeString(mResultWho);
55 out.writeInt(mRequestCode);
56 out.writeInt(mResultCode);
58 out.writeInt(1);
59 mData.writeToParcel(out, 0);
61 out.writeInt(0);

Completed in 845 milliseconds

1234567891011>>