Searched refs:POSITION_AT_END (Results 1 – 15 of 15) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/model/ |
D | AutoAddSignal.kt | 19 import com.android.systemui.qs.pipeline.data.repository.TileSpecRepository.Companion.POSITION_AT_END 30 val position: Int = POSITION_AT_END,
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/qs/pipeline/domain/autoaddable/ |
D | FakeAutoAddable.kt | 19 import com.android.systemui.qs.pipeline.data.repository.TileSpecRepository.Companion.POSITION_AT_END 46 fun sendAddSignal(userId: Int, position: Int = POSITION_AT_END) { in sendAddSignal()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/qs/pipeline/data/repository/ |
D | FakeTileSpecRepository.kt | 20 import com.android.systemui.qs.pipeline.data.repository.TileSpecRepository.Companion.POSITION_AT_END 41 if (position == POSITION_AT_END) { in addTile()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | QSHostAdapter.kt | 27 import com.android.systemui.qs.pipeline.data.repository.TileSpecRepository.Companion.POSITION_AT_END 140 interactor.addTile(TileSpec.create(component), if (end) POSITION_AT_END else 0) in addTile() 183 return addTile(spec, QSHost.POSITION_AT_END) in addTile()
|
D | QSHost.java | 32 int POSITION_AT_END = -1; field
|
D | QSTileHost.java | 408 addTile(spec, POSITION_AT_END); in addTile() 418 if (requestPosition == POSITION_AT_END || requestPosition >= size) { in addTile() 460 addTile(spec, end ? POSITION_AT_END : 0); in addTile()
|
D | AutoAddTracker.kt | 192 restoredTiles?.get(tile)?.index ?: QSHost.POSITION_AT_END in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/data/repository/ |
D | TileSpecRepository.kt | 53 suspend fun addTile(@UserIdInt userId: Int, tile: TileSpec, position: Int = POSITION_AT_END) in <lambda>() 76 const val POSITION_AT_END = -1 in <lambda>() constant
|
D | UserTileSpecRepository.kt | 133 suspend fun addTile(tile: TileSpec, position: Int = TileSpecRepository.POSITION_AT_END) { in <lambda>() 181 val position: Int = TileSpecRepository.POSITION_AT_END in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/panels/ui/viewmodel/ |
D | EditModeViewModel.kt | 27 …com.android.systemui.qs.pipeline.domain.interactor.CurrentTilesInteractor.Companion.POSITION_AT_END in <lambda>() 153 fun addTile(tileSpec: TileSpec, position: Int = POSITION_AT_END) { in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/data/restoreprocessors/ |
D | WorkTileRestoreProcessor.kt | 73 lastRestorePosition.getOrDefault(userId, TileSpecRepository.POSITION_AT_END).also { in pollLastPosition()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/interactor/ |
D | CurrentTilesInteractor.kt | 98 fun addTile(spec: TileSpec, position: Int = TileSpecRepository.POSITION_AT_END) in <lambda>() 121 val POSITION_AT_END: Int = TileSpecRepository.POSITION_AT_END in <lambda>() constant
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/panels/ui/compose/ |
D | PartitionedGridLayout.kt | 115 onAddTile(it, CurrentTilesInteractor.POSITION_AT_END) in <lambda>()
|
D | Tile.kt | 275 onAddTile(it, CurrentTilesInteractor.POSITION_AT_END) in DefaultEditTileGrid()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/ |
D | QSTileHostTest.java | 379 mQSTileHost.addTile("spec2", QSTileHost.POSITION_AT_END); in testAddTileAtEnd()
|