/external/chromium_org/chrome/app/ |
breakpad_unittest_win.cc | 26 typedef std::vector<string16> Experiments; 27 void ValidateExperimentChunks(const Experiments& experiments) { 29 chrome_variations::GenerateVariationChunks(experiments, &chunks); 30 testing::SetExperimentChunks(chunks, experiments.size()); 31 EXPECT_STREQ(base::StringPrintf(L"%d", experiments.size()).c_str(), 33 // We make a copy of the array that we empty as we find the experiments. 34 Experiments experiments_left(experiments); 48 Experiments::const_iterator experiment = experiments_left.begin() 71 Experiments experiments; local [all...] |
/external/chromium/chrome/browser/ |
about_flags_unittest.cc | 37 // The experiments that are set for these tests. The 3rd experiment is not 124 // Add two experiments, check they're there. 153 // Add two experiments, check the pref exists. 212 // Tests enabling experiments that aren't supported on the current platform. 214 // Enable experiments 1 and 3. 236 // Enable experiments 1 and 2. 284 // Tests multi-value type experiments. 324 const Experiment* experiments = testing::GetExperiments(&count); local 326 std::string name = experiments->internal_name;
|
about_flags.cc | 38 // Names for former Chrome OS Labs experiments, shared with prefs migration 65 // distinct types of experiments: 300 const Experiment* experiments = kExperiments; member in namespace:about_flags::__anon4249 327 // Extracts the list of enabled lab experiments from preferences and stores them 347 // Takes a set of enabled lab experiments 400 // Removes all experiments from prefs::kEnabledLabsExperiments that are 401 // unknown, to prevent this list to become very long as experiments are added 406 DCHECK(ValidateExperiment(experiments[i])); 407 AddInternalName(experiments[i], &known_experiments); 434 // Filter out any experiments that aren't enabled on the current platform. W [all...] |
/external/chromium_org/chrome/browser/ |
about_flags_unittest.cc | 43 // The experiments that are set for these tests. The 3rd experiment is not 168 // Add two experiments, check they're there. 197 // Add two experiments, check the pref exists. 284 // Tests enabling experiments that aren't supported on the current platform. 286 // Enable experiments 1 and 3. 315 // Enable experiments 1 and 2. 369 // Tests multi-value type experiments. 450 const Experiment* experiments = testing::GetExperiments(&count); local 452 std::string name = experiments->internal_name;
|
about_flags.cc | 303 // distinct types of experiments: 863 "enable-devtools-experiments", 1612 const Experiment* experiments = kExperiments; member in namespace:about_flags::__anon6598 [all...] |
/external/chromium_org/chrome/browser/sync/glue/ |
autofill_data_type_controller_unittest.cc | 277 // Set up the experiments state. 280 syncer::Experiments experiments; local 281 experiments.autofill_culling = true; 282 sync->OnExperimentsChanged(experiments);
|
sync_backend_host.cc | 53 #include "sync/internal_api/public/util/experiments.h" 1388 syncer::Experiments experiments; local [all...] |
/external/chromium_org/chrome/common/metrics/variations/ |
variations_util_unittest.cc | 144 std::vector<string16> experiments; local 146 experiments.push_back(UTF8ToUTF16(kExperimentStrings[j])); 149 GenerateVariationChunks(experiments, &chunks);
|
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/ |
Stripifier.java | 913 // Works by setting runnning a number of experiments in different areas of
923 // the experiments
934 // PHASE 1: Set up numSamples * numEdges experiments
936 StripInfoVec[] experiments = new StripInfoVec[numSamples * 6];
local 937 for (int i = 0; i < experiments.length; i++)
938 experiments[i] = new StripInfoVec();
952 // slew of experiments, then skip going any further
960 // otherwise, we shall now try experiments for starting on the
968 experiments[experimentIndex++].add(strip01);
975 experiments[experimentIndex++].add(strip10); [all...] |