Home
last modified time | relevance | path

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

/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/ranking/
DSuggestionFeaturizer.java51 private final SuggestionEventStore mEventStore; field in SuggestionFeaturizer
54 mEventStore = SuggestionEventStore.get(context); in SuggestionFeaturizer()
73 Long lastShownTime = mEventStore.readMetric(id, in featurize()
76 Long lastDismissedTime = mEventStore.readMetric(id, in featurize()
79 Long lastClickedTime = mEventStore.readMetric(id, in featurize()
91 featureMap.put(FEATURE_SHOWN_COUNT, normalizedCount(mEventStore.readMetric(id, in featurize()
93 featureMap.put(FEATURE_DISMISSED_COUNT, normalizedCount(mEventStore.readMetric(id, in featurize()
95 featureMap.put(FEATURE_CLICKED_COUNT, normalizedCount(mEventStore.readMetric(id, in featurize()