HomeSort by relevance Sort by last modified time
    Searched full:study (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/components/variations/
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...]
processed_study.cc 11 #include "components/variations/proto/study.pb.h"
17 // Validates the sanity of |study| and computes the total probability.
19 const Study& study,
21 // At the moment, a missing default_experiment_name makes the study invalid.
22 if (study.default_experiment_name().empty()) {
23 DVLOG(1) << study.name() << " has no default experiment defined.";
26 if (study.filter().has_min_version() &&
27 !Version::IsValidWildcardString(study.filter().min_version())) {
28 DVLOG(1) << study.name() << " has invalid min version:
    [all...]
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...]
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...]
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...]
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...]
study_filtering.h 15 #include "components/variations/proto/study.pb.h"
23 // Checks whether a study is applicable for the given |channel| per |filter|.
26 // Checks whether a study is applicable for the given |form_factor| per
31 // Checks whether a study is applicable for the given |hardware_class| per
36 // Checks whether a study is applicable for the given |locale| per |filter|.
39 // Checks whether a study is applicable for the given |platform| per |filter|.
42 // Checks whether a study is applicable for the given date/time per |filter|.
46 // Checks whether a study is applicable for the given version per |filter|.
50 // Checks whether |study| is expired using the given date/time.
51 bool IsStudyExpired(const Study& study, const base::Time& date_time)
    [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...]
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.h 18 #include "components/variations/proto/study.pb.h"
65 // Check if the |study| is only associated with platform Android/iOS and
68 bool AllowVariationIdWithForcingFlag(const Study& study);
  /external/chromium_org/components/variations/proto/
variations_seed.proto 11 import "study.proto";
21 repeated Study study = 2;
study.proto 11 // This defines the Protocol Buffer representation of a Chrome Variations study
15 message Study {
16 // The name of the study. Should not contain spaces or special characters.
20 // The expiry date of the study in Unix time format. (Seconds since midnight
23 // A study that has expired will be disabled, which will take precedence over
29 // Consistency setting for a study.
35 // Consistency setting for this study. Optional - defaults to SESSION.
44 // An experiment within the study.
59 // The name of the experiment within the study.
125 // List of experiments in this study. This list should include the default
    [all...]
BUILD.gn 11 "study.proto",
  /frameworks/base/core/java/android/webkit/
EventLogTags.logtags 5 # browser stats for diary study
  /external/pcre/dist/testdata/
testoutput12 12 JIT study was successful
20 Study returned NULL
21 JIT study was not successful
31 JIT study was not successful
40 JIT study was successful
42 Study data written to testsavedregex
46 Study data loaded from testsavedregex
56 Study returned NULL
169 JIT study was successful
testoutput13 20 Study returned NULL
testoutput21-16 7 No study data
24 Study data loaded from testsaved16LE-1
57 Study data loaded from testsaved16BE-1
90 Study data loaded from testsaved32LE-1
96 Study data loaded from testsaved32BE-1
  /external/ceres-solver/data/nist/
Misra1a.dat 11 Description: These data are the result of a NIST study regarding
17 Dental Research Monomolecular Adsorption Study.
Misra1b.dat 11 Description: These data are the result of a NIST study regarding
17 Dental Research Monomolecular Adsorption Study.
Misra1d.dat 11 Description: These data are the result of a NIST study regarding
17 Dental Research Monomolecular Adsorption Study.
  /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/pcre/dist/
pcre_fullinfo.c 83 const pcre_study_data *study = NULL; local
88 study = (const pcre_study_data *)extra_data->study_data;
114 *((size_t *)where) = (study == NULL)? 0 : study->size;
159 (study != NULL && (study->flags & PCRE_STUDY_MAPPED) != 0)?
165 (study != NULL && (study->flags & PCRE_STUDY_MINLEN) != 0)?
166 (int)(study->minlength) : -1;
RunTest.bat 20 @rem Sheri P also added override tests for study and jit testing
311 call :runsub 1 testoutstudy "Test with Study Override" -q -s
317 call :runsub 2 testoutstudy "Test with Study Override" -q -s
323 call :runsub 3 testoutstudy "Test with Study Override" -q -s
333 call :runsub 4 testoutstudy "Test with Study Override" -q -s
343 call :runsub 5 testoutstudy "Test with Study Override" -q -s
353 call :runsub 6 testoutstudy "Test with Study Override" -q -s
363 call :runsub 7 testoutstudy "Test with Study Override" -q -s
369 call :runsub 8 testoutstudy "Test with Study Override" -q -dfa -s
378 call :runsub 9 testoutstudy "Test with Study Override" -q -dfa -
    [all...]
  /external/pcre/dist/doc/
pcreprecompile.3 67 If the pattern has been studied, it is also possible to save the normal study
81 documentation. The \fIstudy_data\fP field points to the binary study data, and
83 length of the study data can be obtained by calling \fBpcre[16|32]_fullinfo()\fP
86 study data.
122 If you saved study data with the compiled pattern, you need to create your own
124 to the reloaded study data. You must also set the PCRE_EXTRA_STUDY_DATA bit in
125 the \fIflags\fP field to indicate that study data is present. Then pass the

Completed in 339 milliseconds

1 2 3 4 5 6 7 8