Home
last modified time | relevance | path

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

/external/chromium_org/components/metrics/
Dmetrics_service.cc1134 for (size_t i = 0; i < synthetic_trial_groups_.size(); ++i) { in RegisterSyntheticFieldTrial()
1135 if (synthetic_trial_groups_[i].id.name == trial.id.name) { in RegisterSyntheticFieldTrial()
1136 if (synthetic_trial_groups_[i].id.group != trial.id.group) { in RegisterSyntheticFieldTrial()
1137 synthetic_trial_groups_[i].id.group = trial.id.group; in RegisterSyntheticFieldTrial()
1138 synthetic_trial_groups_[i].start_time = base::TimeTicks::Now(); in RegisterSyntheticFieldTrial()
1146 synthetic_trial_groups_.push_back(trial_group); in RegisterSyntheticFieldTrial()
1165 for (size_t i = 0; i < synthetic_trial_groups_.size(); ++i) { in GetCurrentSyntheticFieldTrials()
1166 if (synthetic_trial_groups_[i].start_time <= current_log->creation_time()) in GetCurrentSyntheticFieldTrials()
1167 synthetic_trials->push_back(synthetic_trial_groups_[i].id); in GetCurrentSyntheticFieldTrials()
Dmetrics_service.h451 SyntheticTrialGroups synthetic_trial_groups_; variable