Searched refs:ShortcutKey (Results 1 – 4 of 4) sorted by relevance
46 data class ShortcutCommand(val keys: List<ShortcutKey>)48 sealed interface ShortcutKey { interface49 data class Text(val value: String) : ShortcutKey51 data class Icon(val value: ImageVector) : ShortcutKey77 keys.add(ShortcutKey.Text(value)) in key()81 keys.add(ShortcutKey.Icon(value)) in key()106 val keys = mutableListOf<ShortcutKey>() in build()
352 if (key is ShortcutKey.Text) { in ShortcutCommand()354 } else if (key is ShortcutKey.Icon) { in ShortcutCommand()376 private fun BoxScope.ShortcutTextKey(key: ShortcutKey.Text) { in ShortcutTextKey()385 private fun BoxScope.ShortcutIconKey(key: ShortcutKey.Icon) { in ShortcutIconKey()
222 val shortcutKeys = entities.map { ShortcutKey(it.userId, it.packageName) }.toSet() in <lambda>()245 }.groupBy { ShortcutKey(it.userId, it.`package`) } in <lambda>()249 shortcutMap[ShortcutKey(entity.userId, entity.packageName)] in <lambda>()270 data class ShortcutKey(val userId: Int, val pkg: String) class
23 import com.android.wm.shell.bubbles.ShortcutKey in <lambda>()162 bubbles.groupBy { ShortcutKey(it.userId, it.packageName) }.forEach { (key, bubbles) -> in <lambda>()169 bubbles.groupBy { ShortcutKey(it.userId, it.packageName) }.forEach { (key, bubbles) -> in <lambda>()