Searched refs:rect (Results 1 – 4 of 4) sorted by relevance
32 constructor(rect: Rect?): this(rect?.let { arrayOf(rect) } ?: emptyArray()) in <lambda>()34 constructor(rect: RectF?): this(rect?.toRect())
55 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()
137 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()
77 val rect = if (newWmDisplayRect != currDisplayRect) { in doProcessState() constant82 processDisplaySizeChange(previous, rect) in doProcessState()