Home
last modified time | relevance | path

Searched defs:prettyPrint (Results 1 – 7 of 7) sorted by relevance

/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/
DPoint.kt20 fun prettyPrint(): String = prettyPrint(this) in prettyPrint() method
41 fun prettyPrint(point: Point): String = "(${point.x}, ${point.y})" method
DBuffer.kt20 override fun prettyPrint(): String = prettyPrint(this) in prettyPrint() method
42 fun prettyPrint(buffer: Buffer): String = "w:${buffer.width}, h:${buffer.height}, " + in toString() method
DSize.kt26 open fun prettyPrint(): String = prettyPrint(this) in prettyPrint() method in com.android.server.wm.traces.common.Size
44 fun prettyPrint(bounds: Size): String = "${bounds.width} x ${bounds.height}" method
DColor.kt26 fun prettyPrint(): String = prettyPrint(this) in prettyPrint() method in com.android.server.wm.traces.common.Color
53 fun prettyPrint(color: Color): String { in prettyPrint() method
DRectF.kt110 fun prettyPrint(): String = prettyPrint(this) in intersection() method
137 fun prettyPrint(rect: RectF): String { in prettyPrint() method
DRect.kt43 open fun prettyPrint(): String = prettyPrint(this) in prettyPrint() method in com.android.server.wm.traces.common.Rect
89 fun prettyPrint(rect: Rect): String = "(${rect.left}, ${rect.top}) - " + in toString() method
DRegion.kt40 override fun prettyPrint(): String = rects.joinToString(", ") { it.prettyPrint() } in toString() method in com.android.server.wm.traces.common.Region