Home
last modified time | relevance | path

Searched refs:rect (Results 1 – 4 of 4) sorted by relevance

/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/
DRegion.kt32 constructor(rect: Rect?): this(rect?.let { arrayOf(rect) } ?: emptyArray()) in <lambda>()
34 constructor(rect: RectF?): this(rect?.toRect())
DRect.kt55 operator fun contains(rect: Rect): Boolean { in prettyPrint()
57 val otherRect = rect.toRectF() in prettyPrint()
70 fun intersection(rect: Rect): Rect { in intersection()
72 val otherRect = rect.toRectF() in intersection()
89 fun prettyPrint(rect: Rect): String = "(${rect.left}, ${rect.top}) - " + in toString()
DRectF.kt137 fun prettyPrint(rect: RectF): String { in prettyPrint()
138 val left = FloatFormatter.format(rect.left) in prettyPrint()
139 val top = FloatFormatter.format(rect.top) in prettyPrint()
140 val right = FloatFormatter.format(rect.right) in prettyPrint()
141 val bottom = FloatFormatter.format(rect.bottom) in prettyPrint()
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/service/processors/
DRotationProcessor.kt77 val rect = if (newWmDisplayRect != currDisplayRect) { in doProcessState() constant
82 processDisplaySizeChange(previous, rect) in doProcessState()