Home
last modified time | relevance | path

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

/aosp12/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()
/aosp12/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()
/aosp12/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/
H A DFullScreenMagnificationController.java436 void getMagnifiedFrameInContentCoordsLocked(Rect outFrame) { in getMagnifiedFrameInContentCoordsLocked() argument
440 getMagnificationBounds(outFrame); in getMagnifiedFrameInContentCoordsLocked()
441 outFrame.offset((int) -offsetX, (int) -offsetY); in getMagnifiedFrameInContentCoordsLocked()
442 outFrame.scale(1.0f / scale); in getMagnifiedFrameInContentCoordsLocked()
/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java1482 void getCompatFrameSize(Rect outFrame) { in getCompatFrameSize() argument
1483 outFrame.set(0, 0, mWindowFrames.mCompatFrame.width(), mWindowFrames.mCompatFrame.height()); in getCompatFrameSize()
6047 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets, in getAnimationFrames() argument
6054 outFrame.set(getFrame()); in getAnimationFrames()
6061 outFrame.set(getTask().getBounds()); in getAnimationFrames()
6065 outFrame.set(getTask().getParent().getBounds()); in getAnimationFrames()
6067 outFrame.set(getContainingFrame()); in getAnimationFrames()
6071 outInsets.set(state.calculateInsets(outFrame, systemBars(), in getAnimationFrames()
6073 outStableInsets.set(state.calculateInsets(outFrame, systemBars(), in getAnimationFrames()
H A DWindowContainer.java3185 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets, in getAnimationFrames() argument
3188 outFrame.set(0, 0, displayInfo.appWidth, displayInfo.appHeight); in getAnimationFrames()
H A DTask.java2771 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets, in getAnimationFrames() argument
2775 windowState.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in getAnimationFrames()
2777 super.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in getAnimationFrames()
H A DActivityRecord.java9337 void getAnimationFrames(Rect outFrame, Rect outInsets, Rect outStableInsets, in getAnimationFrames() argument
9343 win.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in getAnimationFrames()
/aosp12/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DDisplayContentTests.java1364 final Rect outFrame = new Rect(); in testApplyTopFixedRotationTransform() local
1368 mAppWindow.getAnimationFrames(outFrame, outInsets, outStableInsets, outSurfaceInsets); in testApplyTopFixedRotationTransform()
1370 assertEquals(mDisplayContent.getBounds(), outFrame); in testApplyTopFixedRotationTransform() local
/aosp12/frameworks/base/core/java/android/view/
H A DViewRootImpl.java8011 void getDisplayFrame(Rect outFrame) { in getDisplayFrame() argument
8012 outFrame.set(mTmpFrames.displayFrame); in getDisplayFrame()
8019 void getWindowVisibleDisplayFrame(Rect outFrame) { in getWindowVisibleDisplayFrame() argument
8020 outFrame.set(mTmpFrames.displayFrame); in getWindowVisibleDisplayFrame()
8025 outFrame.left += insets.left; in getWindowVisibleDisplayFrame()
8026 outFrame.top += insets.top; in getWindowVisibleDisplayFrame()
8027 outFrame.right -= insets.right; in getWindowVisibleDisplayFrame()
8028 outFrame.bottom -= insets.bottom; in getWindowVisibleDisplayFrame()