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

1234567891011>>

/frameworks/base/core/java/android/os/
H A DIProcessInfoService.aidl27 void getProcessStatesFromPids(in int[] pids, out int[] states);
34 void getProcessStatesAndOomScoresFromPids(in int[] pids, out int[] states, out int[] scores);
/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/tools/aapt2/java/
H A DClassDefinition.cpp25 void ClassMember::WriteToStream(const StringPiece& prefix, bool final, std::ostream* out) const {
26 processor_.WriteToStream(out, prefix);
34 std::ostream* out) const {
35 *out << prefix << signature_ << " {\n";
37 *out << prefix << " " << statement << "\n";
39 *out << prefix << "}";
52 std::ostream* out) const {
57 ClassMember::WriteToStream(prefix, final, out);
59 *out << prefix << "public ";
61 *out << "stati
84 WriteJavaFile(const ClassDefinition* def, const StringPiece& package, bool final, std::ostream* out) argument
[all...]
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
H A DVectorUtil.java23 public static void sub(double[] a, double[] b, double[] out) { argument
24 out[0] = a[0] - b[0];
25 out[1] = a[1] - b[1];
26 out[2] = a[2] - b[2];
29 public static void mult(double[] a, double b, double[] out) { argument
30 out[0] = a[0] * b;
31 out[1] = a[1] * b;
32 out[2] = a[2] * b;
43 public static void cross(double[] a, double[] b, double[] out) { argument
47 out[
59 add(double[] a, double[] b, double[] out) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DThumbnailData.java36 ThumbnailData out = new ThumbnailData();
37 out.thumbnail = Bitmap.createHardwareBitmap(snapshot.getSnapshot());
38 out.insets.set(snapshot.getContentInsets());
39 out.orientation = snapshot.getOrientation();
40 out.reducedResolution = snapshot.isReducedResolution();
41 out.scale = snapshot.getScale();
42 return out;
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A Dexposure.rs28 uchar4 out = 0;
29 out.r = rsClamp((int)(bright * in.r), 0, 255);
30 out.g = rsClamp((int)(bright * in.g), 0, 255);
31 out.b = rsClamp((int)(bright * in.b), 0, 255);
32 return out;
/frameworks/base/libs/hwui/renderthread/
H A DFrame.cpp24 void Frame::map(const SkRect& in, int32_t* out) const {
36 out[0] = idirty.x();
37 out[1] = y;
38 out[2] = idirty.width();
39 out[3] = idirty.height();
/frameworks/base/tools/aapt/
H A DAaptConfig.cpp34 bool parse(const String8& str, ConfigDescription* out) { argument
242 if (out != NULL) {
244 *out = config;
299 bool parseMcc(const char* name, ResTable_config* out) { argument
301 if (out) out->mcc = 0;
322 if (out) out->mcc = d;
329 bool parseMnc(const char* name, ResTable_config* out) { argument
331 if (out) ou
360 parseLayoutDirection(const char* name, ResTable_config* out) argument
381 parseScreenLayoutSize(const char* name, ResTable_config* out) argument
412 parseScreenLayoutLong(const char* name, ResTable_config* out) argument
432 parseScreenRound(const char* name, ResTable_config* out) argument
452 parseWideColorGamut(const char* name, ResTable_config* out) argument
472 parseHdr(const char* name, ResTable_config* out) argument
492 parseOrientation(const char* name, ResTable_config* out) argument
510 parseUiModeType(const char* name, ResTable_config* out) argument
551 parseUiModeNight(const char* name, ResTable_config* out) argument
572 parseDensity(const char* name, ResTable_config* out) argument
652 parseTouchscreen(const char* name, ResTable_config* out) argument
670 parseKeysHidden(const char* name, ResTable_config* out) argument
695 parseKeyboard(const char* name, ResTable_config* out) argument
713 parseNavHidden(const char* name, ResTable_config* out) argument
735 parseNavigation(const char* name, ResTable_config* out) argument
756 parseScreenSize(const char* name, ResTable_config* out) argument
790 parseSmallestScreenWidthDp(const char* name, ResTable_config* out) argument
814 parseScreenWidthDp(const char* name, ResTable_config* out) argument
836 parseScreenHeightDp(const char* name, ResTable_config* out) argument
858 parseVersion(const char* name, ResTable_config* out) argument
[all...]
H A DAaptConfig.h37 bool parse(const android::String8& str, ConfigDescription* out = NULL);
55 bool parseMcc(const char* str, android::ResTable_config* out = NULL);
56 bool parseMnc(const char* str, android::ResTable_config* out = NULL);
57 bool parseLayoutDirection(const char* str, android::ResTable_config* out = NULL);
58 bool parseSmallestScreenWidthDp(const char* str, android::ResTable_config* out = NULL);
59 bool parseScreenWidthDp(const char* str, android::ResTable_config* out = NULL);
60 bool parseScreenHeightDp(const char* str, android::ResTable_config* out = NULL);
61 bool parseScreenLayoutSize(const char* str, android::ResTable_config* out = NULL);
62 bool parseScreenLayoutLong(const char* str, android::ResTable_config* out = NULL);
63 bool parseScreenRound(const char* name, android::ResTable_config* out
[all...]
/frameworks/base/tools/aapt2/
H A DConfigDescription.cpp41 static bool parseMcc(const char* name, ResTable_config* out) { argument
43 if (out) out->mcc = 0;
64 if (out) out->mcc = d;
71 static bool parseMnc(const char* name, ResTable_config* out) { argument
73 if (out) out->mcc = 0;
92 if (out) {
93 out
102 parseLayoutDirection(const char* name, ResTable_config* out) argument
126 parseScreenLayoutSize(const char* name, ResTable_config* out) argument
162 parseScreenLayoutLong(const char* name, ResTable_config* out) argument
186 parseScreenRound(const char* name, ResTable_config* out) argument
209 parseWideColorGamut(const char* name, ResTable_config* out) argument
232 parseHdr(const char* name, ResTable_config* out) argument
255 parseOrientation(const char* name, ResTable_config* out) argument
273 parseUiModeType(const char* name, ResTable_config* out) argument
314 parseUiModeNight(const char* name, ResTable_config* out) argument
335 parseDensity(const char* name, ResTable_config* out) argument
413 parseTouchscreen(const char* name, ResTable_config* out) argument
431 parseKeysHidden(const char* name, ResTable_config* out) argument
456 parseKeyboard(const char* name, ResTable_config* out) argument
474 parseNavHidden(const char* name, ResTable_config* out) argument
496 parseNavigation(const char* name, ResTable_config* out) argument
517 parseScreenSize(const char* name, ResTable_config* out) argument
551 parseSmallestScreenWidthDp(const char* name, ResTable_config* out) argument
575 parseScreenWidthDp(const char* name, ResTable_config* out) argument
597 parseScreenHeightDp(const char* name, ResTable_config* out) argument
619 parseVersion(const char* name, ResTable_config* out) argument
646 Parse(const StringPiece& str, ConfigDescription* out) 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/native/services/surfaceflinger/
H A DColorizer.h43 void colorize(String8& out, color c) { argument
45 out.appendFormat("\e[%dm", c);
49 void bold(String8& out) { argument
51 out.append("\e[1m");
55 void reset(String8& out) { argument
57 out.append("\e[0m");
/frameworks/opt/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/base/tools/streaming_proto/test/src/com/android/streaming_proto_test/
H A DMain.java5 System.out.println("hello world");
/frameworks/rs/tests/lldb/cpp/InfiniteLoop/
H A Dinfiniteloop.rs45 float4 out = rsUnpackColor8888(in);
47 out.r = gColor.r;
48 out.g = gColor.g;
49 out.b = gColor.b;
50 out.a = gColor.a;
52 uchar4 result = rsPackColorTo8888(out);
/frameworks/av/media/libaudioprocessing/
H A DAudioResamplerFirOps.h62 int32_t out; local
64 asm( "smultb %[out], %[in], %[vRL] \n"
65 : [out]"=r"(out)
69 asm( "smultt %[out], %[in], %[vRL] \n"
70 : [out]"=r"(out)
74 return out;
85 int32_t out; local
86 asm( "smlabb %[out],
100 int32_t out; local
115 int32_t out; local
[all...]
/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
H A Dlog_helpers.h14 inline std::ostream& operator<<(std::ostream& out, argument
16 return out << "vec2(" << vec.x() << ',' << vec.y() << ')';
20 inline std::ostream& operator<<(std::ostream& out, argument
22 return out << "vec3(" << vec.x() << ',' << vec.y() << ',' << vec.z() << ')';
26 inline std::ostream& operator<<(std::ostream& out, argument
28 return out << "vec4(" << vec.x() << ',' << vec.y() << ',' << vec.z() << ','
33 inline std::ostream& operator<<(std::ostream& out, argument
35 out << std::setfill(' ') << std::setprecision(4) << std::fixed
37 out << "\nmat4[";
38 out << st
54 operator <<(std::ostream& out, const FieldOfView& fov) argument
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicBlend.cpp90 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
[all...]
/frameworks/native/opengl/tools/glgen/src/
H A DJniCodeEmitter.java130 public void emitNativeDeclaration(JFunc jfunc, PrintStream out) { argument
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) { argument
143 emitFunction(jfunc, out, false, true);
146 public void emitJavaCode(JFunc jfunc, PrintStream out) { argument
147 emitFunction(jfunc, out, fals
156 emitFunctionCall(JFunc jfunc, PrintStream out, String iii, boolean grabArray) argument
198 printIfcheckPostamble(PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String iii) argument
204 printIfcheckPostamble(PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
368 emitNativeBoundsChecks(CFunc cfunc, String cname, PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
446 emitSentinelCheck(CFunc cfunc, String cname, PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
489 emitStringCheck(CFunc cfunc, String cname, PrintStream out, String iii) argument
520 emitLocalVariablesForSentinel(CFunc cfunc, PrintStream out) argument
569 emitFunction(JFunc jfunc, PrintStream out, boolean nativeDecl, boolean interfaceDecl) argument
779 emitJniCode(JFunc jfunc, PrintStream out) argument
[all...]
/frameworks/av/media/libstagefright/foundation/
H A Dbase64.cpp49 uint8_t *out = buffer->data(); local
50 if (out == NULL || buffer->size() < outLen) {
81 out[j++] = (accum >> 16);
83 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; }
84 if (j < outLen) { out[j++] = accum & 0xff; }
108 const void *_data, size_t size, AString *out) {
109 out->clear();
119 out->append(encode6Bit(x1 >> 2));
120 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f));
121 out
107 encodeBase64( const void *_data, size_t size, AString *out) argument
[all...]
/frameworks/base/services/core/java/com/android/server/om/
H A DOverlayManagerShellCommand.java35 * Intended only for manual debugging. Execute 'adb exec-out cmd overlay help'
74 final PrintWriter out = getOutPrintWriter();
75 out.println("Overlay manager (overlay) commands:");
76 out.println(" help");
77 out.println(" Print this help text.");
78 out.println(" dump [--verbose] [--user USER_ID] [PACKAGE [PACKAGE [...]]]");
79 out.println(" Print debugging information about the overlay manager.");
80 out.println(" list [--user USER_ID] [PACKAGE [PACKAGE [...]]]");
81 out.println(" Print information about target and overlay packages.");
82 out
[all...]
/frameworks/native/opengl/tools/glgen/
H A Dgen4 rm -rf out generated
6 mkdir out
11 mkdir -p out/javax/microedition/khronos/opengles
12 mkdir -p out/com/google/android/gles_jni
13 mkdir -p out/android/app
14 mkdir -p out/android/graphics
15 mkdir -p out/android/view
16 mkdir -p out/android/opengl
17 mkdir -p out/android/content
18 mkdir -p out/androi
[all...]
/frameworks/compile/slang/
H A Dslang_rs_reflect_utils.cpp120 int bitwidth, GeneratedFile &out) {
122 out.indent() << "// return byte array representation of the " << bitwidth
124 out.indent() << "public static byte[] getBitCode" << bitwidth << "()";
125 out.startBlock();
126 out.indent() << "return getBitCode" << bitwidth << "Internal();\n";
127 out.endBlock(true);
134 int seg_num, GeneratedFile &out) {
135 out.indent() << "private static byte[] getSegment" << bitwidth << "_"
137 out.startBlock();
138 out
118 GenerateAccessorMethod( const RSSlangReflectUtils::BitCodeAccessorContext &context, int bitwidth, GeneratedFile &out) argument
133 GenerateSegmentMethod(const char *buff, int blen, int bitwidth, int seg_num, GeneratedFile &out) argument
163 GenerateJavaCodeAccessorMethodForBitwidth( const RSSlangReflectUtils::BitCodeAccessorContext &context, int bitwidth, GeneratedFile &out) argument
217 GenerateJavaCodeAccessorMethod( const RSSlangReflectUtils::BitCodeAccessorContext &context, GeneratedFile &out) argument
232 GenerateAccessorClass( const RSSlangReflectUtils::BitCodeAccessorContext &context, const char *clazz_name, GeneratedFile &out) argument
276 GeneratedFile out; local
[all...]
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A Dexposure.rs28 uchar4 out = {0, 0, 0, 255};
30 out.rgb = convert_uchar3(clamp(convert_int3(t * bright), 0, 255));
31 return out;

Completed in 6782 milliseconds

1234567891011>>