HomeSort by relevance Sort by last modified time
    Searched refs:experiment (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/prefetch/
prefetch_field_trial.cc 16 std::string experiment = base::FieldTrialList::FindFullName("Prefetch"); local
17 if (StartsWithASCII(experiment, "ExperimentYes", false))
  /external/chromium_org/components/variations/
variations_seed_processor.cc 19 // Associates the variations params of |experiment|, if present.
21 const Study_Experiment& experiment) {
23 for (int i = 0; i < experiment.param_size(); ++i) {
24 if (experiment.param(i).has_name() && experiment.param(i).has_value())
25 params[experiment.param(i).name()] = experiment.param(i).value();
28 AssociateVariationParams(study.name(), experiment.name(), params);
31 // If there are variation ids associated with |experiment|, register the
33 void RegisterVariationIds(const Study_Experiment& experiment,
93 const Study_Experiment& experiment = study.experiment(i); local
131 const Study_Experiment& experiment = study.experiment(i); local
    [all...]
variations_seed_simulator_unittest.cc 59 // Adds an experiment to |study| with the specified |experiment_name| and
60 // |probability| values and sets it as the study's default experiment.
64 Study_Experiment* experiment = study->add_experiment(); local
65 experiment->set_name(experiment_name);
66 experiment->set_probability_weight(probability);
68 return experiment;
71 // Add an experiment param with |param_name| and |param_value| to |experiment|.
74 Study_Experiment* experiment) {
75 Study_Experiment_Param* param = experiment->add_param()
151 Study_Experiment* experiment = AddExperiment("B", 100, &study); local
169 Study_Experiment* experiment = AddExperiment("C", 100, &study); local
189 Study_Experiment* experiment = AddExperiment("B", 1, &study); local
210 Study_Experiment* experiment = AddExperiment("B", 1, &study); local
243 Study_Experiment* experiment = AddExperiment("B", 0, &study); local
264 Study_Experiment* experiment = AddExperiment("B", 1, &study); local
291 Study_Experiment* experiment = AddExperiment("B", 100, &study); local
317 Study_Experiment* experiment = AddExperiment("B", 100, &study); local
344 Study_Experiment* experiment = AddExperiment("B", 100, &study); local
364 Study_Experiment* experiment = AddExperiment("B", 100, &study); local
    [all...]
variations_seed_simulator.cc 29 // Returns the experiment group that will be selected. Mirrors logic in
46 const Study_Experiment& experiment = study.experiment(i); local
50 if (!experiment.has_forcing_flag() &&
51 experiment.name() != study.default_experiment_name()) {
52 trial->AppendGroup(experiment.name(), experiment.probability_weight());
60 // Finds an experiment in |study| with name |experiment_name| and returns it,
65 if (study.experiment(i).name() == experiment_name)
66 return &study.experiment(i)
208 const Study_Experiment* experiment = FindExperiment(study, selected_group); local
229 const Study_Experiment* experiment = FindExperiment(study, selected_group); local
    [all...]
processed_study.cc 22 DVLOG(1) << study.name() << " has no default experiment defined.";
44 if (study.experiment(i).name().empty()) {
45 DVLOG(1) << study.name() << " is missing experiment " << i << " name";
48 if (!experiment_names.insert(study.experiment(i).name()).second) {
49 DVLOG(1) << study.name() << " has a repeated experiment name "
50 << study.experiment(i).name();
54 if (!study.experiment(i).has_forcing_flag())
55 divisor += study.experiment(i).probability_weight();
56 if (study.experiment(i).name() == default_group_name)
61 DVLOG(1) << study.name() << " is missing default experiment in its
    [all...]
variations_seed_processor_unittest.cc 34 // Adds an experiment to |study| with the specified |name| and |probability|.
37 Study_Experiment* experiment = study->add_experiment(); local
38 experiment->set_name(name);
39 experiment->set_probability_weight(probability);
40 return experiment;
286 ASSERT_EQ(kForcingFlag1, study.experiment(1).forcing_flag());
  /external/chromium_org/chrome/browser/resources/
flags.css 94 #experiment-reset-all {
98 html[dir=rtl] #experiment-reset-all {
120 .experiment-unsupported > td,
121 .experiment-disabled > td {
126 .experiment-unsupported .experiment-name,
127 .experiment-disabled .experiment-name {
131 .experiment {
135 .experiment td
    [all...]
flags.js 23 var elements = document.getElementsByClassName('experiment-select');
31 elements = document.getElementsByClassName('experiment-disable-link');
39 elements = document.getElementsByClassName('experiment-enable-link');
47 elements = document.getElementsByClassName('experiment-restart-button');
52 $('experiment-reset-all').onclick = resetAllFlags;
110 * internal_name: 'Experiment ID string',
111 * name: 'Experiment Name',
113 * // enabled is only set if the experiment is single valued.
115 * // choices is only set if the experiment has multiple values.
118 * internal_name: 'Experiment ID string'
    [all...]
  /external/chromium_org/chrome/browser/net/
connection_tester.h 77 // The "Experiment" structure describes an individual test to run.
78 struct Experiment {
79 Experiment(const GURL& url,
97 typedef std::vector<Experiment> ExperimentList;
109 // Called when an individual experiment is about to be started.
111 const Experiment& experiment) = 0;
113 // Called when an individual experiment has completed.
114 // |experiment| - the experiment that has completed
    [all...]
connection_tester.cc 49 // An instance of ExperimentURLRequestContext is created for each experiment
51 // to the specified "experiment".
64 // Creates a proxy config service for |experiment|. On success returns net::OK
68 ConnectionTester::ProxySettingsExperiment experiment,
71 switch (experiment) {
90 int Init(const ConnectionTester::Experiment& experiment,
95 // Create a custom HostResolver for this experiment.
97 rv = CreateHostResolver(experiment.host_resolver_experiment,
103 // Create a custom ProxyService for this this experiment
    [all...]
connection_tester_unittest.cc 48 const ConnectionTester::Experiment& experiment) OVERRIDE {
53 const ConnectionTester::Experiment& experiment,
151 // Don't run the message loop at all. Otherwise the experiment's request may
152 // complete and post a task to run the next experiment before we quit the
  /external/chromium_org/chrome/installer/util/
user_experiment.h 35 base::string16 prefix; // The experiment code prefix for this experiment,
37 int flavor; // The flavor index for this experiment.
38 int heading; // The heading resource ID to use for this experiment.
42 // experiment but does not participate.
45 // Creates the experiment details for a given language-brand combo.
46 // If |flavor| is -1, then a flavor will be selected at random. |experiment|
47 // is the struct you want to write the experiment information to.
48 // Returns false if no experiment details could be gathered.
49 bool CreateExperimentDetails(int flavor, ExperimentDetails* experiment);
    [all...]
user_experiment.cc 41 // The following strings are the possible outcomes of the toast experiment
110 // If handle to experiment result key was given at startup, re-add it.
270 // Use it to write the experiment results.
283 bool CreateExperimentDetails(int flavor, ExperimentDetails* experiment) {
288 // Maximum number of experiment flavors we support.
290 // This struct determines which experiment flavors we show for each locale and
293 // Plugin infobar experiment:
294 // The experiment in 2011 used PIxx codes.
296 // Inactive user toast experiment:
297 // The experiment in Dec 2009 used TGxx and THxx
411 ExperimentDetails experiment; local
    [all...]
  /external/chromium_org/chrome/browser/prerender/
prerender_histograms.cc 84 // Helper macros for experiment-based and origin-based histogram reporting.
94 experiment, HISTOGRAM) \
95 PREFIXED_HISTOGRAM_INTERNAL(origin, experiment, false, HISTOGRAM, \
98 #define PREFIXED_HISTOGRAM_INTERNAL(origin, experiment, wash, HISTOGRAM, \
106 std::string name = GetHistogramName(origin, experiment, wash, \
108 /* Usually, a browsing session should only have a single experiment. */ \
109 /* Therefore, when there is a second experiment ID other than the one */ \
112 /* somehow be an experiment ID if the origin is not GWS, ignore the */ \
113 /* experiment ID. */ \
115 if (recording_experiment == kNoExperiment && experiment != kNoExperiment)
155 uint8 experiment = GetQueryStringBasedExperiment(url); local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/tools/
all_builds.py 28 experiment = line[4:]
29 if experiment not in currently_broken:
30 experiments.append(experiment)
50 # Shard experiment list
  /external/libvpx/libvpx/tools/
all_builds.py 28 experiment = line[4:]
29 if experiment not in currently_broken:
30 experiments.append(experiment)
50 # Shard experiment list
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
all_builds.py 28 experiment = line[4:]
29 if experiment not in currently_broken:
30 experiments.append(experiment)
50 # Shard experiment list
  /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
381 const Experiment& experiment = kExperiments[3]; local
415 const Experiment& experiment = kExperiments[4]; local
    [all...]
about_flags.cc 66 Experiment::SINGLE_VALUE, \
72 Experiment::ENABLE_DISABLE_VALUE, enable_switch, enable_value, \
77 Experiment::MULTI_VALUE, NULL, NULL, NULL, NULL, choices, arraysize(choices)
85 // whether the experiment is available on that platform.
136 const Experiment::Choice kEnableCompositingForFixedPositionChoices[] = {
146 const Experiment::Choice kEnableCompositingForTransitionChoices[] = {
154 const Experiment::Choice kEnableAcceleratedFixedRootBackgroundChoices[] = {
162 const Experiment::Choice kTouchEventsChoices[] = {
173 const Experiment::Choice kOverscrollHistoryNavigationChoices[] = {
185 const Experiment::Choice kNaClDebugMaskChoices[] =
2195 const Experiment& experiment = experiments[i]; local
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
histogram_macros.h 90 #define CACHE_UMA(type, name, experiment, sample) {\
92 CACHE_UMA_BACKEND_IMPL_OBJ->HistogramName(name, experiment);\
backend_worker_v3.cc 66 // Sets group for the current experiment. Returns false if the files should be
69 if (header->experiment == disk_cache::EXPERIMENT_OLD_FILE1 ||
70 header->experiment == disk_cache::EXPERIMENT_OLD_FILE2) {
78 header->experiment = disk_cache::EXPERIMENT_SIMPLE_CONTROL;
80 } else if (header->experiment != disk_cache::EXPERIMENT_SIMPLE_CONTROL) {
85 header->experiment = disk_cache::NO_EXPERIMENT;
136 if (data_->header.experiment != NO_EXPERIMENT &&
138 // No experiment for other caches.
disk_format.h 83 int32 experiment; // Id of an ongoing test. member in struct:disk_cache::IndexHeader
  /external/chromium_org/chrome/browser/first_run/
try_chrome_dialog_view.cc 167 // Find out what experiment we are conducting.
168 installer::ExperimentDetails experiment; local
170 !installer::CreateExperimentDetails(flavor_, &experiment) ||
171 !experiment.heading) {
176 l10n_util::GetStringUTF16(experiment.heading),
204 !!(experiment.flags & installer::kToastUiDontBugMeAsButton);
215 if (experiment.flags & installer::kToastUiUninstall) {
228 if (experiment.flags & installer::kToastUiMakeDefault) {
259 if (experiment.flags & installer::kToastUiWhyLink) {
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_install_dialog_view.cc 91 // experiment. This is used to group the actions in UMA histograms named
209 // extension icon. Used for the experiment where the permissions are
265 // layout. Used for the permission experiment.
266 // TODO(meacer): Remove once the experiment is completed.
335 // TODO(meacer): Remove once the experiment is completed.
419 // Possible grid layouts without ExtensionPermissionDialog experiment:
453 // on the experiment group. For text only experiment, a footer is added at the
457 // Regular install w/ permissions and footer (experiment):
470 // Regular install w/ permissions and inline explanations (experiment)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_install_prompt.h 158 const ExtensionInstallPromptExperiment* experiment() const { function in class:ExtensionInstallPrompt::Prompt
161 void set_experiment(ExtensionInstallPromptExperiment* experiment) {
162 experiment_ = experiment;

Completed in 514 milliseconds

1 2 3