HomeSort by relevance Sort by last modified time
    Searched defs:trial (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/wilhelm/tools/hashgen/
part8.c 5 SLInterfaceID trial = &SL_IID_array[MPH]; variable
6 if (!memcmp(iid, trial, sizeof(struct SLInterfaceID_)))
  /frameworks/wilhelm/src/autogen/
IID_to_MPH.c 254 SLInterfaceID trial = &SL_IID_array[MPH]; local
255 if (!memcmp(iid, trial, sizeof(struct SLInterfaceID_)))
  /external/icu4c/layout/
LookupTables.cpp 34 const LookupSegment *trial = (const LookupSegment *) ((char *) entry + extra); local
36 if (SWAPW(trial->lastGlyph) <= ttGlyph) {
37 entry = trial;
42 trial = (const LookupSegment *) ((char *) entry + probe);
44 if (SWAPW(trial->lastGlyph) <= ttGlyph) {
45 entry = trial;
63 const LookupSingle *trial = (const LookupSingle *) ((char *) entry + extra); local
65 if (SWAPW(trial->glyph) <= ttGlyph) {
66 entry = trial;
71 trial = (const LookupSingle *) ((char *) entry + probe)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
default_pinned_apps_field_trial_unittest.cc 62 base::FieldTrial* trial = base::FieldTrialList::Find("DefaultPinnedApps"); local
63 ASSERT_TRUE(trial != NULL);
64 EXPECT_EQ("Existing", trial->group_name());
73 base::FieldTrial* trial = base::FieldTrialList::Find("DefaultPinnedApps"); local
74 ASSERT_TRUE(trial != NULL);
75 const std::string allocated_group = trial->group_name();
86 // But he/she should still be included in the trial and in the same group.
87 trial = base::FieldTrialList::Find("DefaultPinnedApps");
88 EXPECT_EQ(allocated_group, trial->group_name());
default_pinned_apps_field_trial.cc 47 // Global state of trial setup.
103 // is the case, kick the user out of the trial and returns true.
127 // No trial if multiple profiles are enabled.
135 scoped_refptr<base::FieldTrial> trial = local
141 // Existing users already have their default pinned apps and have the trial
143 trial->AppendGroup("Control", 50);
144 alternate_group = trial->AppendGroup("Alternate", 50);
148 base::FieldTrial* trial = base::FieldTrialList::Find(kExperimentName); local
149 if (!trial)
160 trial->Disable()
    [all...]
  /external/chromium_org/chrome/browser/gpu/
chrome_gpu_util.cc 31 base::FieldTrial* trial = local
33 if (trial)
34 trial->Disable();
38 // Enable the field trial only on desktop OS's.
50 // Don't run the trial on Windows XP.
69 // Don't activate the field trial if force-compositing-mode has been
80 // Note 1: The compositing field trial may be created at startup time via the
82 // set before this function is called and any Field Trial setup calls
90 // trial must call DisableCompositingFieldTrial() before returning.
93 // field trial
    [all...]
  /external/chromium_org/chrome/browser/omnibox/
omnibox_field_trial_unittest.cc 35 // Creates and activates a field trial.
38 base::FieldTrial* trial = base::FieldTrialList::CreateFieldTrial( local
40 trial->group();
41 return trial;
84 // Test if GetDisabledProviderTypes() properly parses various field trial
102 SCOPED_TRACE("Valid group name, unsupported trial name.");
119 // Test if InZeroSuggestFieldTrial() properly parses various field trial
125 SCOPED_TRACE("Valid group name, unsupported trial name.");
140 SCOPED_TRACE("Valid trial name, unsupported group name.");
  /external/chromium_org/chrome/browser/
chrome_browser_field_trials_desktop.cc 49 // Create a 100% field trial based on the brand code.
64 scoped_refptr<base::FieldTrial> trial(
68 trial->AppendGroup("Yes", infinite_cache_probability);
69 trial->AppendGroup("Control", infinite_cache_probability);
73 // This trial is created by the VariationsService, but it needs to be disabled
80 base::FieldTrial* trial = base::FieldTrialList::Find("ShowProfileSwitcher"); local
81 if (trial && (!profiles::IsMultipleProfilesEnabled() ||
83 trial->Disable();
108 scoped_refptr<base::FieldTrial> trial(
112 trial->AppendGroup("ControlA", sensitivity_analysis_probability)
    [all...]