Searched refs:Insets (Results 1 – 6 of 6) sorted by relevance
/platform_testing/libraries/flicker/utils/src/android/tools/helpers/ |
D | RotationUtils.kt | 19 import android.graphics.Insets 30 fun rotateInsets(insets: Insets?, rotation: Rotation): Insets { in rotateInsets() 31 if (insets == null || insets === Insets.NONE) { in rotateInsets() 32 return Insets.NONE in rotateInsets() 38 Insets.of(insets.top, insets.right, insets.bottom, insets.left) in rotateInsets() 40 Insets.of(insets.right, insets.bottom, insets.left, insets.top) in rotateInsets() 42 Insets.of(insets.bottom, insets.left, insets.top, insets.right) in rotateInsets()
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/wm/ |
D | DisplayCutout.kt | 19 import android.graphics.Insets 26 val insets: Insets, 31 val waterfallInsets: Insets 70 insets: Insets, in from() 75 waterfallInsets: Insets in from()
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/inputmethod/ |
D | Insets.kt | 25 open class Insets( class 39 if (other !is Insets) return false in equals()
|
D | InputMethodServiceEntry.kt | 53 val lastComputedInsets: Insets,
|
/platform_testing/tests/perf/PerformanceLaunch/src/com/android/performanceLaunch/ |
D | SimpleSurfaceGLActivity.java | 20 import android.graphics.Insets; 48 final Insets insets = windowInsets.getSystemWindowInsets(); in onCreate()
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/wm/ |
D | WindowManagerStateBuilder.kt | 21 import android.graphics.Insets in <lambda>() 514 proto.insets?.toInsets() ?: Insets.NONE, in <lambda>() 519 proto.waterfallInsets?.toInsets() ?: Insets.NONE in <lambda>() 565 private fun RectProto.toInsets() = Insets.of(this.left, this.top, this.right, this.bottom) in <lambda>()
|