HomeSort by relevance Sort by last modified time
    Searched defs:trial (Results 1 - 25 of 26) 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/
chrome_browser_field_trials_desktop.cc 39 // Create a 100% field trial based on the brand code.
54 scoped_refptr<base::FieldTrial> trial(
58 trial->AppendGroup("Yes", infinite_cache_probability);
59 trial->AppendGroup("Control", infinite_cache_probability);
63 // This trial is created by the VariationsService, but it needs to be disabled
65 base::FieldTrial* trial = base::FieldTrialList::Find("ShowProfileSwitcher"); local
66 if (trial && !profiles::IsMultipleProfilesEnabled())
67 trial->Disable();
80 // Initialize the field trial. We declare all of the groups here (so that
84 scoped_refptr<base::FieldTrial> trial(
    [all...]
io_thread.cc 733 base::FieldTrial* trial = base::FieldTrialList::Find(kSpdyFieldTrialName); local
734 if (trial)
735 trial->Disable();
    [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/predictors/
resource_prefetch_common.cc 60 std::string trial = base::FieldTrialList::FindFullName( local
63 if (trial == "LearningHost") {
66 } else if (trial == "LearningURL") {
69 } else if (trial == "Learning") {
73 } else if (trial == "PrefetchingHost") {
77 } else if (trial == "PrefetchingURL") {
81 } else if (trial == "Prefetching") {
87 } else if (trial == "PrefetchingLowConfidence") {
97 } else if (trial == "PrefetchingHighConfidence") {
107 } else if (trial == "PrefetchingMoreResources")
    [all...]
  /external/chromium_org/chrome/common/metrics/variations/
uniformity_field_trials.cc 19 // Set up a uniformity field trial. |one_time_randomized| indicates if the
20 // field trial is one-time randomized or session-randomized. |trial_name_string|
22 // the trial name. |num_trial_groups| must be a divisor of 100 (e.g. 5, 20)
39 DVLOG(1) << "Trial name = " << trial_name;
41 scoped_refptr<base::FieldTrial> trial(
48 // Loop starts with group 1 because the field trial automatically creates a
54 trial->AppendGroup(group_name, kProbabilityPerGroup);
60 // Now that all groups have been appended, call group() on the trial to
61 // ensure that our trial is registered. This resolves an off-by-one issue
62 // where the default group never gets chosen if we don't "use" the trial
93 base::FieldTrial* trial = local
    [all...]
  /external/chromium/base/metrics/
field_trial_unittest.cc 104 scoped_refptr<FieldTrial> trial; local
107 std::string name = StringPrintf("trial%d", ++counter);
108 trial = new FieldTrial(name, 10, winner, next_year_, 12, 31);
109 trial->AppendGroup(loser, 5); // 50% chance of not being chosen.
111 } while (trial->group_ != FieldTrial::kNotFinalized);
114 EXPECT_EQ(FieldTrial::kDefaultGroupNumber, trial->group());
117 EXPECT_EQ(winner, trial->group_name());
132 scoped_refptr<FieldTrial> trial(
134 trial->AppendGroup("first", 1); // 50% chance of being chosen.
136 if (trial->group_ != FieldTrial::kNotFinalized)
156 FieldTrial* trial = local
179 FieldTrial* trial = local
208 scoped_refptr<FieldTrial> trial; local
223 FieldTrial* trial = local
254 FieldTrial* trial = FieldTrialList::Find("Some_name"); local
255 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
260 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
275 FieldTrial* trial = local
291 FieldTrial* trial = local
    [all...]
  /external/chromium_org/base/metrics/
field_trial.cc 83 // the trial to the default group.
101 // forced trial, it will not have the same value as the default group
203 DVLOG(1) << "Field trial: " << trial_name_ << " Group choice:" << group_name_;
291 // Check if the field trial has already been created in some other way.
295 // If the default group name differs between the existing forced trial
296 // and this trial, then use a different value for the default group number.
300 // chosen for the forced trial (which has been finalized when it was
422 FieldTrial* trial = CreateFieldTrial(name, group_name); local
423 if (!trial)
426 // Call |group()| to mark the trial as "used" and notify observers, i
    [all...]
field_trial_unittest.cc 51 virtual void OnFieldTrialGroupFinalized(const std::string& trial,
53 trial_name_ = trial;
140 scoped_refptr<FieldTrial> trial; local
144 std::string name = StringPrintf("trial%d", ++counter);
145 trial = CreateFieldTrial(name, 10, winner, &default_group_number);
146 trial->AppendGroup(loser, 5); // 50% chance of not being chosen.
148 } while (trial->group_ != FieldTrial::kNotFinalized);
151 EXPECT_EQ(default_group_number, trial->group());
154 EXPECT_EQ(winner, trial->group_name());
169 FieldTrial* trial = CreateFieldTrial(name, 2, default_group_name, NULL) local
192 FieldTrial* trial = CreateFieldTrial(name, 10, default_group_name, NULL); local
215 FieldTrial* trial = local
247 FieldTrial* trial = FieldTrialList::FactoryGetFieldTrial( local
262 FieldTrial* trial = CreateFieldTrial(no_group, 10, "Default", NULL); local
313 FieldTrial* trial = local
346 FieldTrial* trial = local
390 FieldTrial* trial = FieldTrialList::Find("Some_name"); local
391 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
396 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
413 FieldTrial* trial = CreateFieldTrial("Some name", 10, "Default", NULL); local
502 FieldTrial* trial = FieldTrialList::Find("Some_name"); local
503 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
520 FieldTrial* trial = CreateFieldTrial("Some_name", 10, "Default", NULL); local
534 FieldTrial* trial = local
542 FieldTrial* trial = CreateFieldTrial("trial", 100, "default", NULL); local
628 FieldTrial* trial = local
642 FieldTrial* trial = local
757 FieldTrial* trial = local
776 FieldTrial* trial = local
800 FieldTrial* trial = local
824 FieldTrial* trial = local
846 FieldTrial* trial = local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
external_metrics.cc 60 // Establishes field trial for wifi scanning in chromeos. crbug.com/242733.
67 scoped_refptr<base::FieldTrial> trial = local
75 group_to_char[trial->AppendGroup("FullScan", 0)] = "c";
76 group_to_char[trial->AppendGroup("33Percent_4MinMax", 0)] = "1";
77 group_to_char[trial->AppendGroup("50Percent_4MinMax", 0)] = "2";
78 group_to_char[trial->AppendGroup("50Percent_8MinMax", 0)] = "3";
79 group_to_char[trial->AppendGroup("100Percent_8MinMax", 0)] = "4";
80 group_to_char[trial->AppendGroup("100Percent_1MinSeen_A", 0)] = "5";
81 group_to_char[trial->AppendGroup("100Percent_1MinSeen_B", 0)] = "6";
82 group_to_char[trial->AppendGroup("100Percent_1Min_4Max", 0)] = "7"
    [all...]
  /external/chromium_org/chrome/renderer/
chrome_render_process_observer.cc 402 base::FieldTrial* trial = local
404 // Ensure the trial is marked as "used" by calling group() on it. This is
405 // needed to ensure the trial is properly reported in renderer crash reports.
406 trial->group();
  /external/chromium_org/third_party/icu/source/common/
caniter.cpp 565 UnicodeString trial; local
566 nfd.normalize(temp, trial, status);
567 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) {
  /external/icu4c/common/
caniter.cpp 566 UnicodeString trial; local
567 nfd.normalize(temp, trial, status);
568 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) {
  /external/aac/libAACdec/src/
aacdec_hcrs.cpp 127 UINT trial; local
215 for ( trial = *pNumSegment; trial > 0; trial-- ) {
299 } /* end of trial loop */
    [all...]
  /external/chromium_org/chrome/browser/net/
http_pipelining_compatibility_client.cc 465 base::FieldTrial* trial = base::FieldTrialList::Find(kTrialName); local
466 if (trial) {
469 // After May 4, 2012, the trial will disable itself.
470 trial = base::FieldTrialList::FactoryGetFieldTrial(
481 int collect_stats_group = trial->AppendGroup("enable_test",
483 if (trial->group() != collect_stats_group) {
  /external/icu4c/test/perf/howExpensiveIs/
howExpensiveIs.cpp 173 fprintf(stderr, "trial: %d/%d = %.9fs\n", i, ITERATIONS,times[i]);
299 double trial = unum_parseDouble(fFmt,fStr,fLen, NULL, &setupStatus); local
300 if(U_SUCCESS(setupStatus) && trial!=fExpect) {
303 fFile,fLine,getName(),trial,fExpect);
308 double trial=0.0; local
311 trial = unum_parse(fFmt,fStr,fLen, NULL, &setupStatus);
428 int32_t trial = unum_formatDouble(fFmt,fExpect, buf, 100, NULL, &setupStatus); local
430 || trial!=fLen
431 ||trial<=0
432 || u_strncmp(fStr,buf,trial) ) {
442 int32_t trial; local
505 int32_t trial = unum_formatInt64(fFmt,fExpect, buf, 100, NULL, &setupStatus); local
519 int32_t trial; local
600 int32_t trial; local
    [all...]
  /external/chromium/net/spdy/
spdy_session.cc 1447 base::FieldTrial* trial = base::FieldTrialList::Find("SpdyCwnd"); local
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
search_provider_unittest.cc 453 base::FieldTrial* trial = base::FieldTrialList::CreateFieldTrial( local
455 trial->group();
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
dtptngen.cpp 971 DateTimeMatcher trial = it.next(); local
1228 UnicodeString trial = getBestPattern(current.getPattern(), status); local
    [all...]
  /external/icu4c/i18n/
dtptngen.cpp 997 DateTimeMatcher trial = it.next(); local
1251 UnicodeString trial = getBestPattern(current.getPattern(), status); local
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 1414 int trial; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 2040 milliseconds

1 2