Home
last modified time | relevance | path

Searched refs:outFrame (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DMotionSensor.java84 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()
DNormFilter.java59 FrameValue outFrame = outPort.fetchAvailableFrame(null).asFrameValue(); in onProcess() local
60 outFrame.setValue(norm); in onProcess()
61 outPort.pushFrame(outFrame); in onProcess()
DStatsFilter.java104 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/
DMotionSensorWTime.java90 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()
DAverageFilter.java68 FrameValue outFrame = outPort.fetchAvailableFrame(null).asFrameValue(); in onProcess() local
69 outFrame.setValue(output); in onProcess()
70 outPort.pushFrame(outFrame); in onProcess()
/frameworks/base/core/java/android/view/
DWindowLayout.java76 final Rect outFrame = frames.frame; in computeFrames() local
261 (int) (y + attrs.verticalMargin * ph), outFrame); in computeFrames()
265 Gravity.applyDisplay(attrs.gravity, outDisplayFrame, outFrame); in computeFrames()
269 extendFrameByCutout(displayCutoutSafe, outDisplayFrame, outFrame, in computeFrames()
DViewRootImpl.java9461 void getDisplayFrame(Rect outFrame) { in getDisplayFrame() argument
9462 outFrame.set(mTmpFrames.displayFrame); in getDisplayFrame()
9465 applyViewBoundsSandboxingIfNeeded(outFrame); in getDisplayFrame()
9472 void getWindowVisibleDisplayFrame(Rect outFrame) { in getWindowVisibleDisplayFrame() argument
9473 outFrame.set(mTmpFrames.displayFrame); in getWindowVisibleDisplayFrame()
9478 outFrame.left += insets.left; in getWindowVisibleDisplayFrame()
9479 outFrame.top += insets.top; in getWindowVisibleDisplayFrame()
9480 outFrame.right -= insets.right; in getWindowVisibleDisplayFrame()
9481 outFrame.bottom -= insets.bottom; in getWindowVisibleDisplayFrame()
9484 applyViewBoundsSandboxingIfNeeded(outFrame); in getWindowVisibleDisplayFrame()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/
DFullScreenMagnificationController.java581 void getMagnifiedFrameInContentCoordsLocked(Rect outFrame) { in getMagnifiedFrameInContentCoordsLocked() argument
585 getMagnificationBounds(outFrame); in getMagnifiedFrameInContentCoordsLocked()
586 outFrame.offset((int) -offsetX, (int) -offsetY); in getMagnifiedFrameInContentCoordsLocked()
587 outFrame.scale(1.0f / scale); in getMagnifiedFrameInContentCoordsLocked()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowState.java5682 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets, in getAnimationFrames() argument
5689 outFrame.set(getFrame()); in getAnimationFrames()
5696 outFrame.set(getTask().getBounds()); in getAnimationFrames()
5698 outFrame.set(getParentFrame()); in getAnimationFrames()
5702 outInsets.set(state.calculateInsets(outFrame, systemBars(), in getAnimationFrames()
5704 outStableInsets.set(state.calculateInsets(outFrame, systemBars(), in getAnimationFrames()
DTask.java2846 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets, in getAnimationFrames() argument
2851 super.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in getAnimationFrames()
2857 windowState.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in getAnimationFrames()
2859 super.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in getAnimationFrames()
DWindowContainer.java3725 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets, in getAnimationFrames() argument
3728 outFrame.set(0, 0, displayInfo.appWidth, displayInfo.appHeight); in getAnimationFrames()
DActivityRecord.java11005 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets,
11011 win.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets);
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DDisplayContentTests.java1631 final Rect outFrame = new Rect(); in testApplyTopFixedRotationTransform() local
1635 mAppWindow.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in testApplyTopFixedRotationTransform()
1637 assertEquals(mDisplayContent.getBounds(), outFrame); in testApplyTopFixedRotationTransform() local