Home
last modified time | relevance | path

Searched refs:RectF (Results 1 – 11 of 11) sorted by relevance

/platform_testing/libraries/flicker/utils/test/src/android/tools/traces/surfaceflinger/
DLayerTest.kt19 import android.graphics.RectF
90 bounds = RectF(), in fallbackOnLayerBoundsIfCompositionStateIsNotAvailableForVisibility()
99 bounds = RectF(0f, 0f, 100f, 100f), in fallbackOnLayerBoundsIfCompositionStateIsNotAvailableForVisibility()
109 bounds = RectF(), in fallbackOnLayerBoundsIfCompositionStateIsNotAvailableForVisibility()
121 bounds: RectF = RectF(), in makeLayerWithDefaults()
137 RectF(), in makeLayerWithDefaults()
DLayerTraceEntryBuilderTest.kt20 import android.graphics.RectF
90 bounds = RectF(), in removesLayersFromOffDisplays()
95 screenBounds = RectF(), in removesLayersFromOffDisplays()
/platform_testing/libraries/flicker/utils/src/android/tools/traces/surfaceflinger/
DLayerProperties.kt20 import android.graphics.RectF
32 override val bounds: RectF = RectF(),
37 override val screenBounds: RectF = RectF(),
43 override val crop: RectF = RectF(),
126 bounds: RectF, in from()
131 screenBounds: RectF, in from()
137 crop: RectF?, in from()
159 crop ?: RectF(), in from()
DILayerProperties.kt20 import android.graphics.RectF
35 val bounds: RectF
40 val screenBounds: RectF
46 val crop: RectF
DLayer.kt20 import android.graphics.RectF
179 fun contains(innerLayer: Layer, crop: RectF = RectF()): Boolean { in contains()
183 val thisBounds: RectF in contains()
184 val innerLayerBounds: RectF in contains()
212 fun overlaps(other: Layer, crop: RectF = RectF()): Boolean { in overlaps()
213 val thisBounds: RectF in overlaps()
214 val otherBounds: RectF in overlaps()
324 bounds: RectF, in from()
329 screenBounds: RectF, in from()
336 crop: RectF?, in from()
DTransform.kt19 import android.graphics.RectF
134 fun apply(bounds: RectF?): RectF { in apply()
135 return multiplyRect(matrix, bounds ?: RectF()) in apply()
140 private fun multiplyRect(matrix: Matrix33, rect: RectF): RectF { in multiplyRect()
150 return RectF( in multiplyRect()
DLayerTraceEntry.kt20 import android.graphics.RectF in <lambda>()
171 ?: RectF() in <lambda>()
/platform_testing/libraries/flicker/utils/src/android/tools/datatypes/
DUtils.kt21 import android.graphics.RectF
38 fun RectF.crop(crop: RectF): RectF { in emptyColor() method
43 return RectF(newLeft, newTop, newRight, newBottom) in emptyColor()
46 fun RectF.containsWithThreshold(r: RectF, threshold: Float = 0.01f): Boolean { in RectF() method
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/perfetto/
DLayersTraceParser.kt21 import android.graphics.RectF in <lambda>()
207 private fun newRectF(rectf: Args?): RectF { in <lambda>()
209 return RectF() in <lambda>()
211 return RectF( in <lambda>()
262 private fun newCropRect(crop: Args?): RectF? { in <lambda>()
264 return RectF() in <lambda>()
277 return RectF(left.toFloat(), top.toFloat(), right.toFloat(), bottom.toFloat()) in <lambda>()
/platform_testing/libraries/flicker/utils/test/src/android/tools/parsers/
DWindowManagerStateHelperTest.kt20 import android.graphics.RectF in <lambda>()
98 RectF( in <lambda>()
/platform_testing/libraries/flicker/src/android/tools/flicker/subject/region/
DRegionSubject.kt21 import android.graphics.RectF in <lambda>()
61 rect: RectF?, in <lambda>()