HomeSort by relevance Sort by last modified time
    Searched defs:experiment (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/chrome/app/
breakpad_unittest_win.cc 38 EXPECT_STREQ(base::StringPrintf(L"experiment-chunk-%i", i + 1).c_str(),
48 Experiments::const_iterator experiment = experiments_left.begin(); local
49 while (experiment != experiments_left.end()) {
50 if (wcsstr(entry.value, experiment->c_str())) {
51 experiment = experiments_left.erase(experiment);
53 ++experiment;
  /external/chromium/chrome/browser/first_run/
try_chrome_dialog_view.cc 132 // Find out what experiment we are conducting.
138 BrowserDistribution::UserExperiment experiment; local
139 if (!dist->GetExperimentDetails(&experiment, version_) ||
140 !experiment.heading) {
144 string16 heading = l10n_util::GetStringUTF16(experiment.heading);
  /external/chromium_org/chrome/browser/
about_flags_unittest.cc 37 const Experiment::Choice kMultiChoices[] = {
43 // The experiments that are set for these tests. The 3rd experiment is not
45 static Experiment kExperiments[] = {
51 Experiment::SINGLE_VALUE,
64 Experiment::SINGLE_VALUE,
77 Experiment::SINGLE_VALUE,
90 Experiment::MULTI_VALUE,
103 Experiment::ENABLE_DISABLE_VALUE,
154 const Experiment& experiment = kExperiments[3] local
371 const Experiment& experiment = kExperiments[3]; local
405 const Experiment& experiment = kExperiments[4]; local
    [all...]
about_flags.cc 52 Experiment::SINGLE_VALUE, \
58 Experiment::ENABLE_DISABLE_VALUE, enable_switch, enable_value, \
63 Experiment::MULTI_VALUE, NULL, NULL, NULL, NULL, choices, arraysize(choices)
71 // whether the experiment is available on that platform.
122 const Experiment::Choice kEnableCompositingForFixedPositionChoices[] = {
132 const Experiment::Choice kEnableCompositingForTransitionChoices[] = {
140 const Experiment::Choice kEnableAcceleratedFixedRootBackgroundChoices[] = {
148 const Experiment::Choice kGDIPresentChoices[] = {
156 const Experiment::Choice kTouchEventsChoices[] = {
166 const Experiment::Choice kTouchOptimizedUIChoices[] =
1815 const Experiment& experiment = experiments[i]; local
    [all...]
  /external/chromium_org/chrome/browser/metrics/variations/
variations_seed_processor.cc 165 // flag. Force the first experiment with an existing flag.
168 const Study_Experiment& experiment = study.experiment(i); local
169 if (experiment.has_forcing_flag() &&
170 command_line->HasSwitch(experiment.forcing_flag())) {
171 base::FieldTrialList::CreateFieldTrial(study.name(), experiment.name());
173 << experiment.forcing_flag();
198 const Study_Experiment& experiment = study.experiment(i); local
201 for (int j = 0; j < experiment.param_size(); j++)
    [all...]
variations_seed_processor_unittest.cc 31 // Adds an experiment to |study| with the specified |name| and |probability|.
34 Study_Experiment* experiment = study->add_experiment(); local
35 experiment->set_name(name);
36 experiment->set_probability_weight(probability);
37 return experiment;
variations_service_unittest.cc 63 // study called "test", which contains one experiment called "abc" with
71 Study_Experiment* experiment = study->add_experiment(); local
72 experiment->set_name("abc");
73 experiment->set_probability_weight(100);
  /external/chromium_org/chrome/browser/prerender/
prerender_histograms.cc 78 // Helper macros for experiment-based and origin-based histogram reporting.
88 experiment, HISTOGRAM) \
89 PREFIXED_HISTOGRAM_INTERNAL(origin, experiment, false, HISTOGRAM, \
92 #define PREFIXED_HISTOGRAM_INTERNAL(origin, experiment, wash, HISTOGRAM, \
100 std::string name = GetHistogramName(origin, experiment, wash, \
103 if (recording_experiment == kNoExperiment && experiment != kNoExperiment) \
104 recording_experiment = experiment; \
107 } else if (experiment != kNoExperiment && \
109 experiment != recording_experiment)) { \
120 } else if (experiment != kNoExperiment) {
137 uint8 experiment = GetQueryStringBasedExperiment(url); local
    [all...]
prerender_manager.cc 95 // control group & the experiment group, so that we can make meaningful
1098 uint8 experiment = GetQueryStringBasedExperiment(url_arg); local
    [all...]
  /external/chromium/chrome/browser/
about_flags.cc 28 Experiment::SINGLE_VALUE, command_line_switch, switch_value, NULL, 0
32 Experiment::MULTI_VALUE, "", "", choices, arraysize(choices)
46 // The first line of the experiment is the internal name. If you'd like to
64 // To add a new experiment add to the end of kExperiments. There are two
66 // . SINGLE_VALUE: experiment is either on or off. Use the SINGLE_VALUE_TYPE
70 // this type of experiment use the macro MULTI_VALUE_TYPE supplying it the
72 // See the documentation of Experiment for details on the fields.
75 const Experiment kExperiments[] = {
300 const Experiment* experiments = kExperiments;
362 std::string NameForChoice(const Experiment& e, int index)
485 const Experiment& experiment = experiments[i]; local
    [all...]
  /external/chromium_org/chrome/browser/first_run/
try_chrome_dialog_view.cc 177 // Find out what experiment we are conducting.
178 installer::ExperimentDetails experiment; local
180 !installer::CreateExperimentDetails(flavor_, &experiment) ||
181 !experiment.heading) {
186 l10n_util::GetStringUTF16(experiment.heading));
214 !!(experiment.flags & installer::kToastUiDontBugMeAsButton);
225 if (experiment.flags & installer::kToastUiUninstall) {
238 if (experiment.flags & installer::kToastUiMakeDefault) {
269 if (experiment.flags & installer::kToastUiWhyLink) {
  /external/chromium_org/net/disk_cache/
disk_format.h 83 int32 experiment; // Id of an ongoing test. member in struct:disk_cache::IndexHeader
  /external/chromium_org/chrome/installer/util/
user_experiment.cc 39 // The following strings are the possible outcomes of the toast experiment
105 // If handle to experiment result key was given at startup, re-add it.
265 // Use it to write the experiment results.
278 bool CreateExperimentDetails(int flavor, ExperimentDetails* experiment) {
283 // Maximum number of experiment flavors we support.
285 // This struct determines which experiment flavors we show for each locale and
288 // Plugin infobar experiment:
289 // The experiment in 2011 used PIxx codes.
291 // Inactive user toast experiment:
292 // The experiment in Dec 2009 used TGxx and THxx
406 ExperimentDetails experiment; local
    [all...]
  /external/chromium/net/disk_cache/
disk_format.h 94 int32 experiment; // Id of an ongoing test. member in struct:disk_cache::IndexHeader
  /external/chromium_org/net/disk_cache/v3/
disk_format_v3.h 70 int32 experiment; // Id of an ongoing test. member in struct:disk_cache::IndexHeaderV3

Completed in 156 milliseconds