Home | History | Annotate | Download | only in base

Lines Matching refs:trial

32 // followed by a base::Pickle object that contains the feature and trial name.
47 // Reads the feature and trial name from the pickle. Calling this is only
60 // Return true because we are not guaranteed to have a trial name anyways.
68 // field trial names, as they are used as special characters for command-line
111 FieldTrial* trial = FieldTrialList::Find(trial_name.as_string());
112 RegisterOverride(feature_name, override_state, trial);
131 // Only one associated field trial is supported per feature. This is generally
136 << " already has trial: " << entry->field_trial->trial_name()
137 << ", associating trial: " << field_trial->trial_name();
151 << " has conflicting field trial overrides: "
311 // Activate the corresponding field trial, if necessary.
344 base::FieldTrial* trial = nullptr;
347 // this splits off the field trial name and associates it with the override.
351 trial = base::FieldTrialList::Find(value.substr(pos + 1).as_string());
354 RegisterOverride(feature_name, overridden_state, trial);