Home
last modified time | relevance | path

Searched refs:mSourceCrop (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/services/surfaceflinger/
DDisplayRenderArea.cpp40 mSourceCrop(sourceCrop) {} in DisplayRenderArea()
56 if (mSourceCrop.isEmpty()) { in getSourceCrop()
59 return mSourceCrop; in getSourceCrop()
DDisplayRenderArea.h44 const Rect mSourceCrop; variable
/frameworks/native/services/surfaceflinger/CompositionEngine/src/planner/
DLayerState.cpp85 return mSourceCrop.get().getWidth() == other.mSourceCrop.get().getWidth() && in isSourceCropSizeEqual()
86 mSourceCrop.get().getHeight() == other.mSourceCrop.get().getHeight(); in isSourceCropSizeEqual()
166 lhs.mSourceCrop == rhs.mSourceCrop && lhs.mBufferTransform == rhs.mBufferTransform && in operator ==()
/frameworks/base/core/java/android/window/
DScreenCapture.java274 public final Rect mSourceCrop = new Rect(); field in ScreenCapture.CaptureArgs
286 mSourceCrop.set(builder.mSourceCrop); in CaptureArgs()
299 mSourceCrop.readFromParcel(in); in CaptureArgs()
356 private final Rect mSourceCrop = new Rect(); field in ScreenCapture.CaptureArgs.Builder
388 mSourceCrop.setEmpty(); in setSourceCrop()
390 mSourceCrop.set(sourceCrop); in setSourceCrop()
492 mSourceCrop.writeToParcel(dest, flags); in writeToParcel()
634 setSourceCrop(args.mSourceCrop); in Builder()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/planner/
DLayerState.h300 mSourceCrop{[](auto layer) { return layer->getState().sourceCrop; },
525 return {&mDisplayFrame, &mSourceCrop, &mBufferTransform, &mBlendMode,
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DWindowManagerServiceTests.java1115 assertEquals(displayBounds, resultingArgs.mSourceCrop); in testCaptureDisplay()
1120 assertEquals(displayBounds, resultingArgs.mSourceCrop); in testCaptureDisplay()
1127 assertEquals(displayBounds, resultingArgs.mSourceCrop); in testCaptureDisplay()
1134 assertEquals(displayBounds, resultingArgs.mSourceCrop); in testCaptureDisplay()
1142 assertEquals(validRect, resultingArgs.mSourceCrop); in testCaptureDisplay()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java10016 if (captureArgs.mSourceCrop.isEmpty()) { in getCaptureArgs()
10020 mTmpRect.set(captureArgs.mSourceCrop); in getCaptureArgs()