Searched refs:out (Results 151 - 175 of 890) sorted by last modified time

1234567891011>>

/frameworks/native/opengl/tools/glgen/src/
H A DGenerateEGL.java26 private static void copy(String filename, PrintStream out) throws IOException { argument
30 out.println(s);
51 System.out.println("Special-casing function " + fname);
93 new PrintStream(new FileOutputStream("out/" + egljFilename));
95 new PrintStream(new FileOutputStream("out/" + eglcFilename));
H A DGenerateGL.java26 static void copy(String filename, PrintStream out) throws IOException { argument
30 out.println(s);
52 System.out.println("Special-casing function " + fname);
93 System.out.println("useContextPointer = " + useContextPointer);
120 new PrintStream(new FileOutputStream("out/" + gl10Filename));
122 new PrintStream(new FileOutputStream("out/" + gl10ExtFilename));
124 new PrintStream(new FileOutputStream("out/" + gl11Filename));
126 new PrintStream(new FileOutputStream("out/" + gl11ExtFilename));
128 new PrintStream(new FileOutputStream("out/" + gl11ExtPackFilename));
130 new PrintStream(new FileOutputStream("out/"
[all...]
H A DGenerateGLES.java26 static void copy(String filename, PrintStream out) throws IOException { argument
30 out.println(s);
50 System.out.println("Special-casing function " + fname);
96 new PrintStream(new FileOutputStream("out/" + gl11Filename));
98 new PrintStream(new FileOutputStream("out/" + gl11cFilename));
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/native/services/inputflinger/
H A DEventHub.cpp89 String8 out; local
91 out.appendFormat("%02x", digest[i]);
93 return out;
998 // Timed out.
1165 // Figure out the kinds of events the device reports.
H A DInputReader.cpp76 // Maximum amount of time to wait on touch data before pushing out new pressure data.
321 // Send out a message that the describes the changed input devices.
326 // Flush queued events out to the listener.
1688 // out of sync with the initial state of the events in the evdev buffer.
3738 Calibration& out = mCalibration; local
3741 out.sizeCalibration = Calibration::SIZE_CALIBRATION_DEFAULT;
3745 out.sizeCalibration = Calibration::SIZE_CALIBRATION_NONE;
3747 out.sizeCalibration = Calibration::SIZE_CALIBRATION_GEOMETRIC;
3749 out.sizeCalibration = Calibration::SIZE_CALIBRATION_DIAMETER;
3751 out
4890 PointerCoords& out = mCurrentCookedState.cookedPointerData.pointerCoords[i]; local
[all...]
/frameworks/native/services/sensorservice/
H A DSensorService.cpp551 sensors_event_t out; local
558 if (si->process(&out, event[i])) {
559 mSensorEventBuffer[count + k] = out;
820 // We never expect this case, but out of paranoia, we handle it.
/frameworks/native/services/surfaceflinger/
H A DColorizer.h41 void colorize(String8& out, color c) { argument
43 out.appendFormat("\e[%dm", c);
47 void bold(String8& out) { argument
49 out.append("\e[1m");
53 void reset(String8& out) { argument
55 out.append("\e[0m");
H A DGpuService.cpp41 int out = data.readFileDescriptor(); local
48 return shellCommand(in, out, err, args);
59 status_t cmd_help(int out);
60 status_t cmd_vkjson(int out, int err);
67 status_t GpuService::shellCommand(int /*in*/, int out, int err, argument
75 return cmd_vkjson(out, err);
77 return cmd_help(out);
86 status_t cmd_help(int out) { argument
87 FILE* outs = fdopen(out, "w");
89 ALOGE("vkjson: failed to create out strea
100 vkjsonPrint(FILE* out, FILE* err) argument
150 cmd_vkjson(int out, int err) argument
[all...]
H A DGpuService.h36 virtual status_t shellCommand(int in, int out, int err,
51 virtual status_t shellCommand(int in, int out, int err,
H A DTransform.cpp222 Region out; local
228 out.orSelf(transform(*it++));
231 out.set(transform(reg.bounds()));
236 out = reg.translate(xpos, ypos);
238 return out;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.h162 void dump(String8& out) const;
H A DHWComposer_hwc1.h303 void dump(String8& out) const;
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.cpp52 friend Formatter& operator << (Formatter& out, const char* in) { argument
53 for (int i=0 ; i<out.mIndent ; i++) {
54 out.mString.append(" ");
56 out.mString.append(in);
57 out.mString.append("\n");
58 return out;
60 friend inline Formatter& operator << (Formatter& out, const String8& in) { argument
61 return operator << (out, in.string());
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DDecodeTask.java331 System.out.println("rect for this decode is: " + srcRect
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessageParser.java386 private Property extractVcard(StringBuilder out) throws IOException, ParseException { argument
389 out.append(BEGIN_VCARD).append(CRLF);
393 out.append(prop).append(CRLF);
H A DBluetoothMasRequest.java136 DataOutputStream out = op.openDataOutputStream();
137 out.write(body);
138 out.close();
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java188 * Filter out the ones for events whose BYxxx rule is for
191 * Returns 0 if the event should not be filtered out
297 // Not allowed, filter it out.
309 // if we got to here, we didn't filter it out
314 * Filters out instances that don't match the BYSETPOS clause of a monthly recurrence rule.
369 continue; // out of range
376 continue; // out of range
728 * @param add Whether or not we should add to out, or remove from out.
729 * @param out th
733 expand(Time dtstart, EventRecurrence r, long rangeStartDateValue, long rangeEndDateValue, boolean add, TreeSet<Long> out) argument
[all...]
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DEventRecurrenceTest.java731 System.out.println("Error... got:");
733 System.out.println("expected:");
734 System.out.println("{");
735 System.out.println(" freq=" + freq);
736 System.out.println(" until=" + until);
737 System.out.println(" count=" + count);
738 System.out.println(" interval=" + interval);
739 System.out.println(" wkst=" + wkst);
740 System.out.println(" bysecond=" + Arrays.toString(bysecond));
741 System.out
[all...]
H A DRRuleTest.java46 String[] out = new String[dates.length];
51 out[i] = time.format2445().substring(0, 8); // Just YYMMDD
53 out[i] = time.format2445().substring(0, 15); // YYMMDDThhmmss
57 return out;
118 long[] out = rp.expand(dtstart, recur, rangeStart.toMillis(false /* use isDst */),
126 String[] actual = getFormattedDates(out, outCal, truncate);
H A DRecurrenceProcessorTest.java38 String[] out = new String[dates.length];
42 out[i] = time.format2445();
45 return out;
48 private static void printLists(String[] expected, String[] out) { argument
49 Log.i(TAG, " expected out");
51 for (i = 0; i < expected.length && i < out.length; i++) {
53 + " " + out[i]);
58 for (; i < out.length; i++) {
59 Log.i(TAG, " [" + i + "] " + out[i]);
109 long[] out
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/data-binding/samples/BindingDemo/gradle/wrapper/
H A Dgradle-wrapper.jar ... .io.InputStream in java.io.OutputStream out byte[] buffer int len static synthetic java.io. ...
/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java357 StringBuilder out = new StringBuilder("[OperationScheduler:");
365 out.append(" ").append(key.substring(PREFIX.length(), key.length() - 10));
366 out.append("=").append(time.format("%Y-%m-%d/%H:%M:%S"));
368 out.append(" ").append(key.substring(PREFIX.length()));
371 out.append("=(null)");
373 out.append("=").append(v.toString());
378 return out.append("]").toString();
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2001 public void writeToParcel(Parcel out, int flags) { argument
2002 super.writeToParcel(out, flags);
2003 out.writeInt(mBackgroundColor);
2969 Log.d(TAG, "--- Number of the parameter is out of bound.");

Completed in 307 milliseconds

1234567891011>>