Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/people/prediction/
H A DSharesheetModelScorerTest.java184 when(mEventHistory1.getEventIndex(Event.TYPE_SHARE_TEXT)).thenReturn(mEventIndex6); in testComputeScore()
185 when(mEventHistory2.getEventIndex(Event.TYPE_SHARE_TEXT)).thenReturn(mEventIndex7); in testComputeScore()
186 when(mEventHistory3.getEventIndex(Event.TYPE_SHARE_TEXT)).thenReturn(mEventIndex8); in testComputeScore()
187 when(mEventHistory4.getEventIndex(Event.TYPE_SHARE_TEXT)).thenReturn(mEventIndex9); in testComputeScore()
199 Event.TYPE_SHARE_TEXT, in testComputeScore()
250 Event.TYPE_SHARE_TEXT, 20, NOW, mDataManager, USER_ID, CHOOSER_ACTIVITY); in testComputeScoreForAppShare()
282 Event.TYPE_SHARE_TEXT, 20, NOW, mDataManager, USER_ID, CHOOSER_ACTIVITY); in testComputeScoreForAppShare_promoteFrequentlyChosenApps()
315 Event.TYPE_SHARE_TEXT, 20, NOW, mDataManager, USER_ID, CHOOSER_ACTIVITY); in testComputeScoreForAppShare_promoteFrequentlyUsedApps()
353 Event.TYPE_SHARE_TEXT, 4, NOW, mDataManager, USER_ID, CHOOSER_ACTIVITY); in testComputeScoreForAppShare_skipPromoteFrequentlyUsedAppsWhenReachesLimit()
389 Event.TYPE_SHARE_TEXT, 20, NOW, mDataManager, USER_ID, CHOOSER_ACTIVITY); in testComputeScoreForAppShare_promoteForegroundApp()
[all …]
/aosp14/frameworks/base/services/people/java/com/android/server/people/data/
H A DEvent.java46 public static final int TYPE_SHARE_TEXT = 4; field in Event
70 TYPE_SHARE_TEXT,
94 SHARE_EVENT_TYPES.add(TYPE_SHARE_TEXT);
H A DDataManager.java725 return Event.TYPE_SHARE_TEXT; in mimeTypeToShareEventType()