/external/chromium_org/chrome/browser/ |
chrome_browser_field_trials_desktop.cc | 58 trial->AppendGroup("Yes", infinite_cache_probability); 59 trial->AppendGroup("Control", infinite_cache_probability); 88 trial->AppendGroup("100-pct-control", group == "100-pct-control" ? 100 : 0); 89 trial->AppendGroup("95-pct", group == "95-pct" ? 100 : 0); 90 trial->AppendGroup("90-pct", group == "90-pct" ? 100 : 0); 91 trial->AppendGroup("85-pct", group == "85-pct" ? 100 : 0); 92 trial->AppendGroup("80-pct", group == "80-pct" ? 100 : 0); 93 trial->AppendGroup("75-pct", group == "75-pct" ? 100 : 0); 94 trial->AppendGroup("70-pct", group == "70-pct" ? 100 : 0); 95 trial->AppendGroup("65-pct", group == "65-pct" ? 100 : 0) [all...] |
chrome_browser_field_trials_mobile.cc | 43 const int kEnabledGroup = trial->AppendGroup(
|
/external/chromium/base/metrics/ |
field_trial_unittest.cc | 52 trial1->AppendGroup("", 7); 63 trial2->AppendGroup("a first group", 7); 86 int winner_group = trial_true->AppendGroup(winner, 10); 94 int loser_group = trial_false->AppendGroup("ALoser", 0); 109 trial->AppendGroup(loser, 5); // 50% chance of not being chosen. 134 trial->AppendGroup("first", 1); // 50% chance of being chosen. 140 trial->AppendGroup("second", 1); // Always chosen at this point. 158 int might_win = trial->AppendGroup("MightWin", 5); 186 int might_win = trial->AppendGroup("", 1); 211 trial->AppendGroup(loser, 999999999); // 99.9999999% chance of being chosen [all...] |
field_trial.h | 41 // trial->AppendGroup("HighMem", 20); // 2% in HighMem group. 43 // trial->AppendGroup("LowMem", 20); // 2% in LowMem group. 118 int AppendGroup(const std::string& name, Probability group_probability);
|
field_trial.cc | 68 int FieldTrial::AppendGroup(const std::string& name, 253 field_trial->AppendGroup(group_name, kTotalProbability);
|
/external/chromium_org/base/metrics/ |
field_trial_unittest.cc | 91 trial1->AppendGroup(std::string(), 7); 101 trial2->AppendGroup("a first group", 7); 123 int winner_group = trial_true->AppendGroup(winner, 10); 130 int loser_group = trial_false->AppendGroup("ALoser", 0); 146 trial->AppendGroup(loser, 5); // 50% chance of not being chosen. 170 trial->AppendGroup("first", 1); // 50% chance of being chosen. 176 trial->AppendGroup("second", 1); // Always chosen at this point. 193 int might_win = trial->AppendGroup("MightWin", 5); 221 int might_win = trial->AppendGroup(std::string(), 1); 251 trial->AppendGroup(loser, 999999999); // 99.9999999% chance of being chosen [all...] |
field_trial.h | 43 // trial->AppendGroup("HighMem", 20); // 2% in HighMem group. 45 // trial->AppendGroup("LowMem", 20); // 2% in LowMem group. 117 // AppendGroup calls). Once disabled, there is no way to re-enable a 127 int AppendGroup(const std::string& name, Probability group_probability); 253 // The number that will be returned by the next AppendGroup() call. 268 // When forced_ is true, we return the chosen group from AppendGroup when 337 // AppendGroup returns the number of the subsequence groups. |trial_name| and
|
field_trial.cc | 93 int FieldTrial::AppendGroup(const std::string& name, 306 // group number, so that it does not conflict with the |AppendGroup()|
|
/external/chromium/chrome/browser/prerender/ |
prerender_field_trial.cc | 71 trial->AppendGroup("ContentPrefetchEnabled", kYesPrefetchProbability); 73 trial->AppendGroup("ContentPrefetchPrerender1", 76 trial->AppendGroup("ContentPrefetchPrerenderControl1", 79 trial->AppendGroup("ContentPrefetchPrerender2", 82 trial->AppendGroup("ContentPrefetchPrerenderControl2",
|
/external/chromium_org/chrome/common/metrics/variations/ |
uniformity_field_trials.cc | 54 trial->AppendGroup(group_name, kProbabilityPerGroup); 78 trial->AppendGroup("Control", 50); 79 trial->AppendGroup("Experiment", 50);
|
/external/chromium_org/chrome/browser/chromeos/ |
external_metrics.cc | 75 group_to_char[trial->AppendGroup("FullScan", 0)] = "c"; 76 group_to_char[trial->AppendGroup("33Percent_4MinMax", 0)] = "1"; 77 group_to_char[trial->AppendGroup("50Percent_4MinMax", 0)] = "2"; 78 group_to_char[trial->AppendGroup("50Percent_8MinMax", 0)] = "3"; 79 group_to_char[trial->AppendGroup("100Percent_8MinMax", 0)] = "4"; 80 group_to_char[trial->AppendGroup("100Percent_1MinSeen_A", 0)] = "5"; 81 group_to_char[trial->AppendGroup("100Percent_1MinSeen_B", 0)] = "6"; 82 group_to_char[trial->AppendGroup("100Percent_1Min_4Max", 0)] = "7";
|
/external/chromium/chrome/browser/net/ |
predictor_api.cc | 578 int disabled_prefetch = trial_->AppendGroup("disabled_prefetch", 589 int max_250ms_prefetch = trial_->AppendGroup("max_250ms_queue_prefetch", 591 int max_500ms_prefetch = trial_->AppendGroup("max_500ms_queue_prefetch", 593 int max_750ms_prefetch = trial_->AppendGroup("max_750ms_queue_prefetch", 596 int max_2s_prefetch = trial_->AppendGroup("max_2s_queue_prefetch", 602 int max_2_concurrent_prefetch = trial_->AppendGroup( 604 int max_4_concurrent_prefetch = trial_->AppendGroup( 606 int max_6_concurrent_prefetch = trial_->AppendGroup(
|
/external/chromium_org/chrome/browser/prerender/ |
prerender_field_trial.cc | 139 trial->AppendGroup("PrerenderControl", 142 trial->AppendGroup("PrerenderMulti", 145 trial->AppendGroup("Prerender15minTTL", 148 trial->AppendGroup("PrerenderNoUse", 237 omnibox_prerender_trial->AppendGroup("OmniboxPrerenderDisabled",
|
/external/chromium/chrome/browser/ |
browser_main.cc | 280 const int connect_5 = connect_trial->AppendGroup("conn_count_5", 282 const int connect_7 = connect_trial->AppendGroup("conn_count_7", 284 const int connect_8 = connect_trial->AppendGroup("conn_count_8", 286 const int connect_9 = connect_trial->AppendGroup("conn_count_9", 323 socket_timeout_trial->AppendGroup("idle_timeout_5", 326 socket_timeout_trial->AppendGroup("idle_timeout_10", 329 socket_timeout_trial->AppendGroup("idle_timeout_20", 367 proxy_connection_trial->AppendGroup("proxy_connections_16", 370 proxy_connection_trial->AppendGroup("proxy_connections_64", 413 int npn_http_grp = trial->AppendGroup("npn_with_http", npnhttp_probability) [all...] |
io_thread.cc | 101 int parallel_6 = trial->AppendGroup("parallel_6", kProbabilityPerGroup); 102 int parallel_7 = trial->AppendGroup("parallel_7", kProbabilityPerGroup); 103 int parallel_8 = trial->AppendGroup("parallel_8", kProbabilityPerGroup); 104 int parallel_9 = trial->AppendGroup("parallel_9", kProbabilityPerGroup); 105 int parallel_10 = trial->AppendGroup("parallel_10", kProbabilityPerGroup); 106 int parallel_14 = trial->AppendGroup("parallel_14", kProbabilityPerGroup); 107 int parallel_20 = trial->AppendGroup("parallel_20", kProbabilityPerGroup);
|
/external/chromium_org/components/variations/ |
variations_associated_data_unittest.cc | 88 trial->AppendGroup(non_default_name, 100); 104 int winner_group = trial_true->AppendGroup(winner, 10); 121 const int loser_group = trial_false->AppendGroup(loser, 0); 141 const int winner_group = no_id_trial->AppendGroup(winner, 10);
|
entropy_provider_unittest.cc | 205 trials[i]->AppendGroup(std::string(), 1); 235 trials[i]->AppendGroup(std::string(), 1); 262 trials[i]->AppendGroup(std::string(), 1);
|
variations_seed_processor.cc | 299 trial->AppendGroup(experiment.name(), experiment.probability_weight());
|
/external/chromium_org/chrome/browser/omnibox/ |
omnibox_field_trial.cc | 99 trial->AppendGroup("DontCullRedirects", 109 trial->AppendGroup("DontCreateShorterMatch",
|
/external/chromium_org/chrome/browser/ui/bookmarks/ |
bookmark_prompt_controller.cc | 235 trial->AppendGroup(kBookmarkPromptControlGroup, 10); 236 trial->AppendGroup(kBookmarkPromptExperimentGroup, 10);
|
/external/chromium/chrome/browser/net/websocket_experiment/ |
websocket_experiment_runner.cc | 35 int active = trial->AppendGroup("active", 5); // 0.5% in active group.
|
/external/chromium_org/chrome/browser/password_manager/ |
password_manager.cc | 408 trial->AppendGroup("Enabled", enabled_probability);
|
/external/chromium_org/chrome/browser/net/ |
http_pipelining_compatibility_client.cc | 481 int collect_stats_group = trial->AppendGroup("enable_test",
|
/external/chromium_org/gpu/config/ |
gpu_info_collector_win.cc | 613 trial->AppendGroup("Enabled", 0);
|
/external/chromium_org/chrome/browser/metrics/ |
thread_watcher.cc | 577 int hung_thread_group = field_trial->AppendGroup("hung_thread", 100);
|