Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DInflatedSmartRepliesTest.java70 @Mock private SmartReplyConstants mSmartReplyConstants; field in InflatedSmartRepliesTest
98 when(mSmartReplyConstants.isEnabled()).thenReturn(true); in setUp()
104 mSmartReplyConstants, in setUp()
118 when(mSmartReplyConstants.isEnabled()).thenReturn(false); in chooseSmartRepliesAndActions_smartRepliesOff_noAppGeneratedSmartSuggestions()
136 when(mSmartReplyConstants.isEnabled()).thenReturn(false); in chooseSmartRepliesAndActions_smartRepliesOff_noSystemGeneratedSmartSuggestions()
595 when(mSmartReplyConstants.requiresTargetingP()).thenReturn(false); in setupAppGeneratedReplies()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentView.java101 private SmartReplyConstants mSmartReplyConstants; field in NotificationContentView
179 mSmartReplyConstants = Dependency.get(SmartReplyConstants.class); in NotificationContentView()
1396 && mSmartReplyConstants.getEffectiveEditChoicesBeforeSending( in applySmartReplyView()
1406 if (mSmartReplyConstants.getShowInHeadsUp()) { in applySmartReplyView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java318 @Inject Lazy<SmartReplyConstants> mSmartReplyConstants; field in Dependency
531 mProviders.put(SmartReplyConstants.class, mSmartReplyConstants::get); in start()