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

  /system/media/opensles/tools/hashgen/
part8.c 5 SLInterfaceID trial = &SL_IID_array[MPH]; variable
6 if (!memcmp(iid, trial, sizeof(struct SLInterfaceID_)))
  /system/media/opensles/libopensles/
IID_to_MPH.c 187 SLInterfaceID trial = &SL_IID_array[MPH]; local
188 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/base/
field_trial_unittest.cc 76 scoped_refptr<FieldTrial> trial; local
79 std::string name = StringPrintf("trial%d", ++counter);
80 trial = new FieldTrial(name, 10);
81 trial->AppendGroup(loser, 5); // 50% chance of not being chosen.
82 } while (trial->group() != FieldTrial::kNotParticipating);
85 trial->AppendGroup(winner, FieldTrial::kAllRemainingProbability);
88 EXPECT_EQ(winner, trial->group_name());
97 FieldTrial* trial = new FieldTrial(name, 10); local
98 int might_win = trial->AppendGroup("MightWin", 5);
100 if (trial->group() == might_win)
118 FieldTrial* trial = new FieldTrial(name, group_count); local
140 FieldTrial* trial = new FieldTrial("Some name", 10); local
168 FieldTrial* trial = FieldTrialList::Find("Some_name"); local
169 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
174 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
187 FieldTrial* trial = new FieldTrial("Some name", 10); local
    [all...]
  /external/chromium/third_party/icu/source/common/
caniter.cpp 597 UChar trial[bufSize]; local
598 unorm_decompose(trial, bufSize, temp, tempLen, FALSE, 0, &status);
601 || uprv_memcmp(segment+segmentPos, trial, (segLen - segmentPos)*sizeof(UChar)) != 0)
  /external/icu4c/common/
caniter.cpp 563 UnicodeString trial; local
564 nfd.normalize(temp, trial, status);
565 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) {
  /external/chromium/third_party/icu/source/i18n/
dtptngen.cpp 964 DateTimeMatcher trial = it.next(); local
1207 UnicodeString trial = getBestPattern(current.getPattern(), status); local
    [all...]
  /external/icu4c/i18n/
dtptngen.cpp 972 DateTimeMatcher trial = it.next(); local
1225 UnicodeString trial = getBestPattern(current.getPattern(), status); local
    [all...]

Completed in 152 milliseconds