Home
last modified time | relevance | path

Searched refs:suppressedActionIndices (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DInflatedSmartReplyState.kt35 val suppressedActionIndices: List<Int> constant in com.android.systemui.statusbar.policy.InflatedSmartReplyState
36 get() = suppressedActions?.suppressedActionIndices ?: emptyList()
41 class SuppressedActions(val suppressedActionIndices: List<Int>) constant in com.android.systemui.statusbar.policy.InflatedSmartReplyState.SuppressedActions
DSmartReplyStateInflater.kt97 left.suppressedActionIndices != right.suppressedActionIndices -> false in areSuggestionsSimilar()
260 val suppressedActionIndices = notification.actions.mapIndexedNotNull { index, action -> in inflateSmartReplyState() constant
263 suppressedActions = SuppressedActions(suppressedActionIndices) in inflateSmartReplyState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentView.java1652 List<Integer> suppressedActionIndices = state != null
1657 if (DEBUG && !suppressedActionIndices.isEmpty()) {
1658 Log.d(TAG, "Suppressing actions with indices: " + suppressedActionIndices);
1665 && suppressedActionIndices.contains(actionIndex);