Home
last modified time | relevance | path

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

/external/chromium_org/components/metrics/
Dmetrics_service_unittest.cc129 const std::vector<variations::ActiveGroupId>& synthetic_trials, in HasSyntheticTrial() argument
135 synthetic_trials.begin(); in HasSyntheticTrial()
136 it != synthetic_trials.end(); ++it) { in HasSyntheticTrial()
325 std::vector<variations::ActiveGroupId> synthetic_trials; in TEST_F() local
326 service.GetCurrentSyntheticFieldTrials(&synthetic_trials); in TEST_F()
327 EXPECT_EQ(2U, synthetic_trials.size()); in TEST_F()
328 EXPECT_TRUE(HasSyntheticTrial(synthetic_trials, "TestTrial1", "Group1")); in TEST_F()
329 EXPECT_TRUE(HasSyntheticTrial(synthetic_trials, "TestTrial2", "Group2")); in TEST_F()
338 service.GetCurrentSyntheticFieldTrials(&synthetic_trials); in TEST_F()
339 EXPECT_EQ(1U, synthetic_trials.size()); in TEST_F()
[all …]
Dmetrics_service.cc769 std::vector<variations::ActiveGroupId> synthetic_trials; in CloseCurrentLog() local
770 GetCurrentSyntheticFieldTrials(&synthetic_trials); in CloseCurrentLog()
772 metrics_providers_.get(), synthetic_trials, GetInstallDate()); in CloseCurrentLog()
975 std::vector<variations::ActiveGroupId> synthetic_trials; in PrepareInitialMetricsLog() local
976 GetCurrentSyntheticFieldTrials(&synthetic_trials); in PrepareInitialMetricsLog()
978 synthetic_trials, in PrepareInitialMetricsLog()
1161 std::vector<variations::ActiveGroupId>* synthetic_trials) { in GetCurrentSyntheticFieldTrials() argument
1162 DCHECK(synthetic_trials); in GetCurrentSyntheticFieldTrials()
1163 synthetic_trials->clear(); in GetCurrentSyntheticFieldTrials()
1167 synthetic_trials->push_back(synthetic_trial_groups_[i].id); in GetCurrentSyntheticFieldTrials()
Dmetrics_log_unittest.cc247 std::vector<variations::ActiveGroupId> synthetic_trials; in TEST_F() local
249 synthetic_trials.push_back(kSyntheticTrials[0]); in TEST_F()
250 synthetic_trials.push_back(kSyntheticTrials[1]); in TEST_F()
253 synthetic_trials, in TEST_F()
Dmetrics_log.h99 const std::vector<variations::ActiveGroupId>& synthetic_trials,
Dmetrics_log.cc331 const std::vector<variations::ActiveGroupId>& synthetic_trials, in RecordEnvironment() argument
391 WriteFieldTrials(synthetic_trials, system_profile); in RecordEnvironment()
Dmetrics_service.h362 std::vector<variations::ActiveGroupId>* synthetic_trials);