Home
last modified time | relevance | path

Searched refs:Insets (Results 1 – 6 of 6) sorted by relevance

/platform_testing/libraries/flicker/utils/src/android/tools/helpers/
DRotationUtils.kt19 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/
DDisplayCutout.kt19 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/
DInsets.kt25 open class Insets( class
39 if (other !is Insets) return false in equals()
DInputMethodServiceEntry.kt53 val lastComputedInsets: Insets,
/platform_testing/tests/perf/PerformanceLaunch/src/com/android/performanceLaunch/
DSimpleSurfaceGLActivity.java20 import android.graphics.Insets;
48 final Insets insets = windowInsets.getSystemWindowInsets(); in onCreate()
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/wm/
DWindowManagerStateBuilder.kt21 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>()