Home
last modified time | relevance | path

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

/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A 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()
H A DNormFilter.java59 FrameValue outFrame = outPort.fetchAvailableFrame(null).asFrameValue(); in onProcess() local
60 outFrame.setValue(norm); in onProcess()
61 outPort.pushFrame(outFrame); in onProcess()
H A 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()
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A 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()
H A DAverageFilter.java68 FrameValue outFrame = outPort.fetchAvailableFrame(null).asFrameValue(); in onProcess() local
69 outFrame.setValue(output); in onProcess()
70 outPort.pushFrame(outFrame); in onProcess()
/aosp14/frameworks/base/core/java/android/view/
H A 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()
H A DViewRootImpl.java8653 void getDisplayFrame(Rect outFrame) { in getDisplayFrame() argument
8654 outFrame.set(mTmpFrames.displayFrame); in getDisplayFrame()
8657 applyViewBoundsSandboxingIfNeeded(outFrame); in getDisplayFrame()
8664 void getWindowVisibleDisplayFrame(Rect outFrame) { in getWindowVisibleDisplayFrame() argument
8665 outFrame.set(mTmpFrames.displayFrame); in getWindowVisibleDisplayFrame()
8670 outFrame.left += insets.left; in getWindowVisibleDisplayFrame()
8671 outFrame.top += insets.top; in getWindowVisibleDisplayFrame()
8672 outFrame.right -= insets.right; in getWindowVisibleDisplayFrame()
8673 outFrame.bottom -= insets.bottom; in getWindowVisibleDisplayFrame()
8676 applyViewBoundsSandboxingIfNeeded(outFrame); in getWindowVisibleDisplayFrame()
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/
H A DFullScreenMagnificationController.java494 void getMagnifiedFrameInContentCoordsLocked(Rect outFrame) { in getMagnifiedFrameInContentCoordsLocked() argument
498 getMagnificationBounds(outFrame); in getMagnifiedFrameInContentCoordsLocked()
499 outFrame.offset((int) -offsetX, (int) -offsetY); in getMagnifiedFrameInContentCoordsLocked()
500 outFrame.scale(1.0f / scale); in getMagnifiedFrameInContentCoordsLocked()
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java5623 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets, in getAnimationFrames() argument
5630 outFrame.set(getFrame()); in getAnimationFrames()
5637 outFrame.set(getTask().getBounds()); in getAnimationFrames()
5639 outFrame.set(getParentFrame()); in getAnimationFrames()
5643 outInsets.set(state.calculateInsets(outFrame, systemBars(), in getAnimationFrames()
5645 outStableInsets.set(state.calculateInsets(outFrame, systemBars(), in getAnimationFrames()
H A DTask.java2770 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets, in getAnimationFrames() argument
2775 super.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in getAnimationFrames()
2781 windowState.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in getAnimationFrames()
2783 super.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in getAnimationFrames()
H A DWindowContainer.java3721 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets, in getAnimationFrames() argument
3724 outFrame.set(0, 0, displayInfo.appWidth, displayInfo.appHeight); in getAnimationFrames()
H A DActivityRecord.java10627 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets,
10633 win.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets);
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DDisplayContentTests.java1622 final Rect outFrame = new Rect(); in testApplyTopFixedRotationTransform() local
1626 mAppWindow.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in testApplyTopFixedRotationTransform()
1628 assertEquals(mDisplayContent.getBounds(), outFrame); in testApplyTopFixedRotationTransform() local