Home
last modified time | relevance | path

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

/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/ranking/
DSuggestionFeaturizer.java73 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()
DSuggestionEventStore.java87 public long readMetric(String suggestionId, String eventType, String metricType) { in readMetric() method in SuggestionEventStore