HomeSort by relevance Sort by last modified time
    Searched refs:featureMap (Results 1 - 4 of 4) sorted by null

  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/ranking/
SuggestionFeaturizer.java 71 Map<String, Double> featureMap = new HashMap<>();
72 features.put(id, featureMap);
82 featureMap.put(FEATURE_IS_SHOWN, booleanToDouble(lastShownTime > 0));
83 featureMap.put(FEATURE_IS_DISMISSED, booleanToDouble(lastDismissedTime > 0));
84 featureMap.put(FEATURE_IS_CLICKED, booleanToDouble(lastClickedTime > 0));
85 featureMap.put(FEATURE_TIME_FROM_LAST_SHOWN,
87 featureMap.put(FEATURE_TIME_FROM_LAST_DISMISSED,
89 featureMap.put(FEATURE_TIME_FROM_LAST_CLICKED,
91 featureMap.put(FEATURE_SHOWN_COUNT, normalizedCount(mEventStore.readMetric(id,
93 featureMap.put(FEATURE_DISMISSED_COUNT, normalizedCount(mEventStore.readMetric(id
    [all...]
  /packages/apps/Settings/src/com/android/settings/development/featureflags/
FeatureFlagsPreferenceController.java 64 final Map<String, String> featureMap = FeatureFlagUtils.getAllFeatureFlags();
65 if (featureMap == null) {
70 for (String feature : featureMap.keySet()) {
  /external/fonttools/Lib/fontTools/
merge.py 454 featureMap = dict((id(v),v) for v in table.table.FeatureList.FeatureRecord)
460 feature = [featureMap[v] for v in langsys.FeatureIndex if featureMap[v].FeatureTag == 'locl']
473 featureMap[id(synthFeature)] = synthFeature
474 langsys.FeatureIndex.sort(key=lambda v: featureMap[v].FeatureTag)
604 def mapFeatures(self, featureMap):
605 self.FeatureIndex = [featureMap[i] for i in self.FeatureIndex]
607 self.ReqFeatureIndex = featureMap[self.ReqFeatureIndex]
610 def mapFeatures(self, featureMap):
612 self.DefaultLangSys.mapFeatures(featureMap)
    [all...]
  /build/soong/android/
arch.go 1068 if featureMap, ok := archFeatureMap[archType]; ok {
1069 a.ArchFeatures = featureMap[a.ArchVariant]

Completed in 154 milliseconds