/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
D | MotionSensor.java | 84 FrameValues outFrame = outPort.fetchAvailableFrame(null).asFrameValues(); in onProcess() local 86 outFrame.setValues(mValues); in onProcess() 88 outFrame.setTimestamp(System.currentTimeMillis() * 1000000L); in onProcess() 89 outPort.pushFrame(outFrame); in onProcess()
|
D | NormFilter.java | 59 FrameValue outFrame = outPort.fetchAvailableFrame(null).asFrameValue(); in onProcess() local 60 outFrame.setValue(norm); in onProcess() 61 outPort.pushFrame(outFrame); in onProcess()
|
D | StatsFilter.java | 104 FrameValue outFrame = outPort.fetchAvailableFrame(null).asFrameValue(); in onProcess() local 105 outFrame.setValue(mStats[MEAN_INDEX]); in onProcess() 106 outPort.pushFrame(outFrame); in onProcess()
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/ |
D | MotionSensorWTime.java | 90 FrameValues outFrame = outPort.fetchAvailableFrame(null).asFrameValues(); in onProcess() local 103 outFrame.setValues(mAvgValues); in onProcess() 105 outFrame.setTimestamp(System.currentTimeMillis() * 1000000L); in onProcess() 106 outPort.pushFrame(outFrame); in onProcess()
|
D | AverageFilter.java | 68 FrameValue outFrame = outPort.fetchAvailableFrame(null).asFrameValue(); in onProcess() local 69 outFrame.setValue(output); in onProcess() 70 outPort.pushFrame(outFrame); in onProcess()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | DisplayPolicyLayoutTests.java | 432 final Rect outFrame = new Rect(); in layoutHint_appWindow() local 440 false /* floatingStack */, outFrame, outContentInsets, outStableInsets, in layoutHint_appWindow() 443 assertThat(outFrame, is(mFrames.mUnrestricted)); in layoutHint_appWindow() 459 final Rect outFrame = new Rect(); in layoutHint_appWindowInTask() local 467 false /* floatingStack */, outFrame, outContentInsets, outStableInsets, in layoutHint_appWindowInTask() 470 assertThat(outFrame, is(taskBounds)); in layoutHint_appWindowInTask() 489 final Rect outFrame = new Rect(); in layoutHint_appWindowInTask_outsideContentFrame() local 497 true /* floatingStack */, outFrame, outContentInsets, outStableInsets, in layoutHint_appWindowInTask_outsideContentFrame() 500 assertThat(outFrame, is(taskBounds)); in layoutHint_appWindowInTask_outsideContentFrame()
|
/frameworks/av/media/libmediaplayerservice/ |
D | StagefrightMetadataRetriever.cpp | 273 sp<IMemory>* outFrame, std::vector<sp<IMemory> >* outFrames) { in getFrameInternal() argument 314 if (outFrame != NULL) { in getFrameInternal() 315 *outFrame = FrameDecoder::getMetadataOnly(trackMeta, colorFormat); in getFrameInternal() 316 if (*outFrame != NULL) { in getFrameInternal() 355 if (outFrame != NULL) { in getFrameInternal() 356 *outFrame = decoder->extractFrame(); in getFrameInternal() 357 if (*outFrame != NULL) { in getFrameInternal()
|
D | StagefrightMetadataRetriever.h | 74 sp<IMemory>* outFrame, std::vector<sp<IMemory> >* outFrames);
|
/frameworks/base/core/java/android/view/ |
D | IWindowSession.aidl | 44 in int viewVisibility, in int layerStackId, out Rect outFrame, in addToDisplay() argument 101 int flags, long frameNumber, out Rect outFrame, out Rect outOverscanInsets, in relayout() argument
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | Session.java | 155 int viewVisibility, int displayId, Rect outFrame, Rect outContentInsets, in addToDisplay() argument 159 return mService.addWindow(this, window, seq, attrs, viewVisibility, displayId, outFrame, in addToDisplay() 187 Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, Rect outVisibleInsets, in relayout() argument 196 outFrame, outOverscanInsets, outContentInsets, outVisibleInsets, in relayout()
|
D | DisplayPolicy.java | 1258 DisplayFrames displayFrames, boolean floatingStack, Rect outFrame, in getLayoutHintLw() argument 1290 outFrame.set(displayFrames.mUnrestricted); in getLayoutHintLw() 1292 outFrame.set(displayFrames.mRestricted); in getLayoutHintLw() 1318 outFrame.intersect(taskBounds); in getLayoutHintLw() 1320 InsetUtils.insetsBetweenFrames(outFrame, cf, outContentInsets); in getLayoutHintLw() 1321 InsetUtils.insetsBetweenFrames(outFrame, sf, outStableInsets); in getLayoutHintLw() 1322 outDisplayCutout.set(displayFrames.mDisplayCutout.calculateRelativeTo(outFrame) in getLayoutHintLw() 1327 outFrame.set(displayFrames.mUnrestricted); in getLayoutHintLw() 1329 outFrame.set(displayFrames.mStable); in getLayoutHintLw() 1332 outFrame.intersect(taskBounds); in getLayoutHintLw()
|
D | WindowManagerService.java | 1241 LayoutParams attrs, int viewVisibility, int displayId, Rect outFrame, in addWindow() argument 1586 outFrame, outContentInsets, outStableInsets, outOutsets, outDisplayCutout)) { in addWindow() 1993 long frameNumber, Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, in relayoutWindow() argument 2291 win.getCompatFrame(outFrame); in relayoutWindow() 2302 + "\nRelayout returning frame=" + outFrame in relayoutWindow() 2311 … Slog.v(TAG_WM, "Relayout complete " + win + ": outFrame=" + outFrame.toShortString()); in relayoutWindow()
|
D | WindowState.java | 1190 void getCompatFrame(Rect outFrame) { in getCompatFrame() argument 1191 outFrame.set(mWindowFrames.mCompatFrame); in getCompatFrame() 1194 void getCompatFrameSize(Rect outFrame) { in getCompatFrameSize() argument 1195 outFrame.set(0, 0, mWindowFrames.mCompatFrame.width(), mWindowFrames.mCompatFrame.height()); in getCompatFrameSize()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | MagnificationController.java | 389 void getMagnifiedFrameInContentCoordsLocked(Rect outFrame) { in getMagnifiedFrameInContentCoordsLocked() argument 393 getMagnificationBounds(outFrame); in getMagnifiedFrameInContentCoordsLocked() 394 outFrame.offset((int) -offsetX, (int) -offsetY); in getMagnifiedFrameInContentCoordsLocked() 395 outFrame.scale(1.0f / scale); in getMagnifiedFrameInContentCoordsLocked()
|