/external/chromium_org/components/variations/ |
processed_study.h | 15 class Study; 17 // Wrapper over Study with extra information computed during pre-processing, 18 // such as whether the study is expired and its total probability. 24 bool Init(const Study* study, bool is_expired); 26 const Study* study() const { return study_; } function in class:variations::ProcessedStudy 39 const Study* study, 44 // Corresponding Study object. Weak reference [all...] |
study_filtering.cc | 33 // Converts |date_time| in Study date format to base::Time. 152 bool IsStudyExpired(const Study& study, const base::Time& date_time) { 153 if (study.has_expiry_date()) { 155 ConvertStudyDateToBaseTime(study.expiry_date()); 163 const Study& study, 170 if (study.has_filter()) { 171 if (!CheckStudyChannel(study.filter(), channel)) { 172 DVLOG(1) << "Filtered out study " << study.name() << " due to channel." 235 const Study& study = seed.study(i); local [all...] |
variations_seed_processor.cc | 22 void RegisterExperimentParams(const Study& study, 30 AssociateVariationParams(study.name(), experiment.name(), params); 102 const Study& study = *processed_study.study(); local 107 for (int i = 0; i < study.experiment_size(); ++i) { 108 const Study_Experiment& experiment = study.experiment(i); 112 base::FieldTrialList::CreateFieldTrial(study.name(), 121 RegisterExperimentParams(study, experiment) [all...] |
variations_seed_simulator.cc | 11 #include "components/variations/proto/study.pb.h" 28 // Simulate group assignment for the specified study with PERMANENT consistency. 34 const Study& study = *processed_study.study(); local 35 DCHECK_EQ(Study_Consistency_PERMANENT, study.consistency()); 38 entropy_provider.GetEntropyForTrial(study.name(), 39 study.randomization_seed()); 42 study.name(), processed_study.total_probability(), 43 study.default_experiment_name(), entropy_value)) 133 const Study& study = *processed_studies[i].study(); local 203 const Study& study = *processed_study.study(); local 226 const Study& study = *processed_study.study(); local [all...] |
variations_seed_simulator_unittest.cc | 11 #include "components/variations/proto/study.pb.h" 50 // Creates a study with the given |study_name| and |consistency|. 51 Study CreateStudy(const std::string& study_name, 53 Study study; local 54 study.set_name(study_name); 55 study.set_consistency(consistency); 56 return study; 59 // Adds an experiment to |study| with the specified |experiment_name| and 60 // |probability| values and sets it as the study's default experiment 149 Study study = CreateStudy("A", Study_Consistency_PERMANENT); local 167 Study study = CreateStudy("A", Study_Consistency_PERMANENT); local 187 Study study = CreateStudy("A", Study_Consistency_PERMANENT); local 208 Study study = CreateStudy("A", Study_Consistency_SESSION); local 230 Study study = CreateStudy("A", Study_Consistency_SESSION); local 241 Study study = CreateStudy("A", Study_Consistency_SESSION); local 262 Study study = CreateStudy("A", Study_Consistency_SESSION); local 289 Study study = CreateStudy("A", Study_Consistency_PERMANENT); local 315 Study study = CreateStudy("A", Study_Consistency_PERMANENT); local 342 Study study = CreateStudy("A", Study_Consistency_PERMANENT); local 362 Study study = CreateStudy("A", Study_Consistency_PERMANENT); local [all...] |
study_filtering_unittest.cc | 17 // Converts |time| to Study proto format. 22 // Adds an experiment to |study| with the specified |name| and |probability|. 24 Study* study) { 25 Study_Experiment* experiment = study->add_experiment(); 381 Study* study1 = seed.add_study(); 387 Study* study2 = seed.add_study(); 390 ASSERT_EQ(seed.study(0).name(), seed.study(1).name()); 392 Study* study3 = seed.add_study() 422 Study study; local 436 Study study; local [all...] |
variations_seed_processor_unittest.cc | 22 // Converts |time| to Study proto format. 37 // Adds an experiment to |study| with the specified |name| and |probability|. 39 Study* study) { 40 Study_Experiment* experiment = study->add_experiment(); 46 // Populates |study| with test data used for testing associating command line 47 // flags with trials groups. The study will contain three groups, a default 50 Study CreateStudyWithFlagGroups(int default_group_probability, 56 Study study; local 143 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 161 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 173 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 186 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 198 Study study = CreateStudyWithFlagGroups(1, 999, 999); local 263 Study study; local 297 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 320 Study study; local 366 Study study; local 388 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 456 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 467 Study study = CreateStudyWithFlagGroups(100, 0, 0); local [all...] |
/external/chromium_org/chrome/browser/metrics/variations/ |
variations_seed_store_unittest.cc | 13 #include "components/variations/proto/study.pb.h" 43 // study called "test", which contains one experiment called "abc" with 44 // probability weight 100. |seed|'s study field will be cleared before adding 45 // the new study. 48 variations::Study* study = seed.add_study(); local 49 study->set_name("test"); 50 study->set_default_experiment_name("abc"); 51 variations::Study_Experiment* experiment = study->add_experiment();
|
variations_service_unittest.cc | 18 #include "components/variations/proto/study.pb.h" 124 // study called "test", which contains one experiment called "abc" with 125 // probability weight 100. |seed|'s study field will be cleared before adding 126 // the new study. 129 variations::Study* study = seed.add_study(); local 130 study->set_name("test"); 131 study->set_default_experiment_name("abc"); 132 variations::Study_Experiment* experiment = study->add_experiment();
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
task.rb | 263 study 402 def study method in class:ANTLR3 433 study
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
grammar.rb | 71 study 260 def study method in class:ANTLR3.Test.Grammar 282 study
|