Searched defs:prettyPrint (Results 1 – 7 of 7) sorted by relevance
20 fun prettyPrint(): String = prettyPrint(this) in prettyPrint() method41 fun prettyPrint(point: Point): String = "(${point.x}, ${point.y})" method
20 override fun prettyPrint(): String = prettyPrint(this) in prettyPrint() method42 fun prettyPrint(buffer: Buffer): String = "w:${buffer.width}, h:${buffer.height}, " + in toString() method
26 open fun prettyPrint(): String = prettyPrint(this) in prettyPrint() method in com.android.server.wm.traces.common.Size44 fun prettyPrint(bounds: Size): String = "${bounds.width} x ${bounds.height}" method
26 fun prettyPrint(): String = prettyPrint(this) in prettyPrint() method in com.android.server.wm.traces.common.Color53 fun prettyPrint(color: Color): String { in prettyPrint() method
110 fun prettyPrint(): String = prettyPrint(this) in intersection() method137 fun prettyPrint(rect: RectF): String { in prettyPrint() method
43 open fun prettyPrint(): String = prettyPrint(this) in prettyPrint() method in com.android.server.wm.traces.common.Rect89 fun prettyPrint(rect: Rect): String = "(${rect.left}, ${rect.top}) - " + in toString() method
40 override fun prettyPrint(): String = rects.joinToString(", ") { it.prettyPrint() } in toString() method in com.android.server.wm.traces.common.Region