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

  /external/chromium_org/components/variations/
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.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...]
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...]
  /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
  /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();

Completed in 3671 milliseconds