Home
last modified time | relevance | path

Searched refs:outFrame (Results 1 – 9 of 9) 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/services/accessibility/java/com/android/server/accessibility/
DMagnificationController.java694 private void getMagnifiedFrameInContentCoordsLocked(Rect outFrame) { in getMagnifiedFrameInContentCoordsLocked() argument
698 getMagnificationBounds(outFrame); in getMagnifiedFrameInContentCoordsLocked()
699 outFrame.offset((int) -offsetX, (int) -offsetY); in getMagnifiedFrameInContentCoordsLocked()
700 outFrame.scale(1.0f / scale); in getMagnifiedFrameInContentCoordsLocked()
/frameworks/base/core/java/android/view/
DIWindowSession.aidl96 int flags, out Rect outFrame, out Rect outOverscanInsets, in relayout() argument
/frameworks/base/services/core/java/com/android/server/wm/
DSession.java222 int flags, Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, in relayout() argument
230 outFrame, outOverscanInsets, outContentInsets, outVisibleInsets, in relayout()
DWindowManagerService.java1887 Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, in relayoutWindow() argument
2152 outFrame.set(win.mCompatFrame); in relayoutWindow()
2165 + "\nRelayout returning frame=" + outFrame in relayoutWindow()
2176 … Slog.v(TAG_WM, "Relayout complete " + win + ": outFrame=" + outFrame.toShortString()); in relayoutWindow()