Searched refs:ConstraintsChanges (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
D | CombinedShadeHeadersConstraintManager.kt | 36 data class ConstraintsChanges( dataClass 41 operator fun plus(other: ConstraintsChanges) = ConstraintsChanges( in plus() 58 fun privacyChipVisibilityConstraints(visible: Boolean): ConstraintsChanges in plus() 63 fun emptyCutoutConstraints(): ConstraintsChanges in plus() 73 ): ConstraintsChanges in plus() 78 fun centerCutoutConstraints(rtl: Boolean, offsetFromEdge: Int): ConstraintsChanges in plus()
|
D | CombinedShadeHeadersConstraintManagerImpl.kt | 30 override fun privacyChipVisibilityConstraints(visible: Boolean): ConstraintsChanges { in privacyChipVisibilityConstraints() 32 return ConstraintsChanges( in privacyChipVisibilityConstraints() 39 override fun emptyCutoutConstraints(): ConstraintsChanges { in emptyCutoutConstraints() 40 return ConstraintsChanges( in emptyCutoutConstraints() 65 ): ConstraintsChanges { in edgesGuidelinesConstraints() 70 return ConstraintsChanges( in edgesGuidelinesConstraints() 77 override fun centerCutoutConstraints(rtl: Boolean, offsetFromEdge: Int): ConstraintsChanges { in centerCutoutConstraints() 81 return ConstraintsChanges( in centerCutoutConstraints()
|
D | ShadeHeaderController.kt | 591 private fun MotionLayout.updateAllConstraints(updates: ConstraintsChanges) { in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/ |
D | ConstraintChangesTest.kt | 41 val changes1 = ConstraintsChanges(mockQQS1, mockQS1, mockLS1) in testSumWithoutNulls() 42 val changes2 = ConstraintsChanges(mockQQS2, mockQS2, mockLS2) in testSumWithoutNulls() 66 val changes1 = ConstraintsChanges(mockQQS, null, null) in testSumWithSomeNulls() 67 val changes2 = ConstraintsChanges(null, mockQS, null) in testSumWithSomeNulls()
|
D | ShadeHeaderControllerTest.kt | 90 private val EMPTY_CHANGES = ConstraintsChanges() in <lambda>() 950 private fun createMockConstraintChanges(): ConstraintsChanges { in <lambda>() 951 return ConstraintsChanges(mock(), mock(), mock()) in <lambda>()
|
D | CombinedShadeHeaderConstraintsTest.kt | 396 private operator fun ConstraintsChanges.invoke() { in <lambda>()
|