/external/chromium_org/components/variations/ |
processed_study.cc | 10 #include "components/variations/proto/study.pb.h" 16 // Validates the sanity of |study| and computes the total probability. 18 const Study& study, 20 // At the moment, a missing default_experiment_name makes the study invalid. 21 if (study.default_experiment_name().empty()) { 22 DVLOG(1) << study.name() << " has no default experiment defined."; 25 if (study.filter().has_min_version() && 26 !Version::IsValidWildcardString(study.filter().min_version())) { 27 DVLOG(1) << study.name() << " has invalid min version: [all...] |
variations_seed_processor.cc | 42 // Converts |date_time| in Study date format to base::Time. 48 void RegisterExperimentParams(const Study& study, 56 AssociateVariationParams(study.name(), experiment.name(), params); 90 const Study& study) { 91 if (!study.has_filter()) 93 const Study_Filter& filter = study.filter(); 137 // studies have been added (and do not add an expired study if a corresponding 138 // non-expired study got added). This way, if there's both an expired and 144 const Study& study = seed.study(i); local 250 const Study& study = *processed_study.study(); local [all...] |
processed_study.h | 14 class Study; 16 // Wrapper over Study with extra information computed during pre-processing, 17 // such as whether the study is expired and its total probability. 23 bool Init(const Study* study, bool is_expired); 25 const Study* study() const { return study_; } function in class:chrome_variations::ProcessedStudy 34 const Study* study, 39 // Corresponding Study object. Weak reference [all...] |
variations_seed_processor_unittest.cc | 19 // Converts |time| to Study proto format. 34 // Adds an experiment to |study| with the specified |name| and |probability|. 36 Study* study) { 37 Study_Experiment* experiment = study->add_experiment(); 43 // Populates |study| with test data used for testing associating command line 44 // flags with trials groups. The study will contain three groups, a default 47 Study CreateStudyWithFlagGroups(int default_group_probability, 53 Study study; local 109 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 126 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 482 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 501 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 513 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 526 Study study = CreateStudyWithFlagGroups(100, 0, 0); local 538 Study study = CreateStudyWithFlagGroups(1, 999, 999); local 558 Study study; local 618 Study study; local 664 Study study; local 686 Study study = CreateStudyWithFlagGroups(100, 0, 0); local [all...] |
variations_seed_processor.h | 16 #include "components/variations/proto/study.pb.h" 66 // Check if the |study| is only associated with platform Android/iOS and 69 bool AllowVariationIdWithForcingFlag(const Study& study); 73 // resulting list will not have more than one study with the same name. 82 // Validates |study| and if valid, adds it to |filtered_studies| as a 84 void ValidateAndAddStudy(const Study& study, 88 // Checks whether a study is applicable for the given |channel| per |filter|. 91 // Checks whether a study is applicable for the given |form_factor| pe [all...] |
/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
|
/external/chromium_org/chrome/browser/metrics/variations/ |
variations_service_unittest.cc | 17 #include "components/variations/proto/study.pb.h" 64 // study called "test", which contains one experiment called "abc" with 65 // probability weight 100. |seed|'s study field will be cleared before adding 66 // the new study. 69 Study* study = seed.add_study(); local 70 study->set_name("test"); 71 study->set_default_experiment_name("abc"); 72 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/tool/src/main/resources/org/antlr/codegen/templates/Ruby/ |
Ruby.stg | [all...] |