Home
last modified time | relevance | path

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

/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/ranking/
DSuggestionFeaturizer.java51 private final SuggestionEventStore mEventStore;
54 mEventStore = SuggestionEventStore.get(context); in SuggestionFeaturizer()
74 SuggestionEventStore.EVENT_SHOWN, in featurize()
75 SuggestionEventStore.METRIC_LAST_EVENT_TIME); in featurize()
77 SuggestionEventStore.EVENT_DISMISSED, in featurize()
78 SuggestionEventStore.METRIC_LAST_EVENT_TIME); in featurize()
80 SuggestionEventStore.EVENT_CLICKED, in featurize()
81 SuggestionEventStore.METRIC_LAST_EVENT_TIME); in featurize()
92 SuggestionEventStore.EVENT_SHOWN, SuggestionEventStore.METRIC_COUNT))); in featurize()
94 SuggestionEventStore.EVENT_DISMISSED, SuggestionEventStore.METRIC_COUNT))); in featurize()
[all …]
DSuggestionEventStore.java33 public class SuggestionEventStore { class
42 private static SuggestionEventStore sEventStore;
51 public static SuggestionEventStore get(Context context) { in get()
53 sEventStore = new SuggestionEventStore(context); in get()
58 private SuggestionEventStore(Context context) { in SuggestionEventStore() method in SuggestionEventStore
/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/
DSuggestionFeatureProvider.java23 import com.android.settings.intelligence.suggestions.ranking.SuggestionEventStore;
53 final SuggestionEventStore eventStore = SuggestionEventStore.get(context); in getSuggestions()
55 eventStore.writeEvent(suggestion.getId(), SuggestionEventStore.EVENT_SHOWN); in getSuggestions()
69 SuggestionEventStore.get(context).writeEvent(id, SuggestionEventStore.EVENT_DISMISSED); in markSuggestionDismissed()
83 SuggestionEventStore.get(context).writeEvent(id, SuggestionEventStore.EVENT_CLICKED); in markSuggestionLaunched()