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

1 2 3

  /frameworks/wilhelm/tools/hashgen/
part8.c 5 SLInterfaceID trial = &SL_IID_array[MPH]; variable
6 if (!memcmp(iid, trial, sizeof(struct SLInterfaceID_)))
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialResult.java 17 import com.google.caliper.model.Trial;
24 private final Trial trial; field in class:TrialResult
28 TrialResult(Trial trial, Experiment experiment, ImmutableList<String> trialMessages) {
29 this.trial = trial;
38 Trial getTrial() {
39 return trial;
ResultsUploader.java 25 import com.google.caliper.model.Trial;
94 @Override public final void processTrial(Trial trial) {
103 resource.type(APPLICATION_JSON_TYPE).post(gson.toJson(ImmutableList.of(trial)));
105 runId = Optional.of(trial.run().id());
108 logUploadFailure(trial, e);
110 logUploadFailure(trial, e);
118 private static void logUploadFailure(Trial trial, Exception e) {
120 "Could not upload trial %s. Consider uploading it manually.", trial.id()), e)
    [all...]
ConsoleOutput.java 23 import com.google.caliper.model.Trial;
68 * Prints a short message when we observe a trial failure.
72 // TODO(lukes): it would be nice to print which trial failed. Consider adding Experiment data
75 "ERROR: Trial failed to complete (its results will not be included in the run):\n"
81 * Prints a summary of a successful trial result.
85 stdout.printf("Trial Report (%d of %d):%n Experiment %s%n",
94 Trial trial = result.getTrial(); local
98 .putAll(Multimaps.index(trial.measurements(), new Function<Measurement, String>() {
131 instrumentSpecs.add(trial.instrumentSpec())
    [all...]
OutputFileDumper.java 26 import com.google.caliper.model.Trial;
96 @Override public void processTrial(Trial trial) {
107 "An error occured writing trial %s. Results in %s will be incomplete.", trial.id(),
112 gson.toJson(trial, Trial.class, writer.get());
  /external/icu/icu4c/source/layout/
LookupTables.cpp 35 LEReferenceTo<LookupSegment> trial(entry, success, extra);
39 if (SWAPW(trial->lastGlyph) <= ttGlyph) {
40 entry = trial;
45 trial = entry; // copy
46 trial.addOffset(probe, success);
48 if (SWAPW(trial->lastGlyph) <= ttGlyph) {
49 entry = trial;
67 LEReferenceTo<LookupSingle> trial(entry, success, extra);
69 if (SWAPW(trial->glyph) <= ttGlyph) {
70 entry = trial;
    [all...]
PairPositioningSubtables.cpp 153 const PairValueRecord *trial = (const PairValueRecord *) ((char *) record + extra);
155 if (SWAPW(trial->secondGlyph) <= glyphID) {
156 record = trial;
161 trial = (const PairValueRecord *) ((char *) record + probe);
163 if (SWAPW(trial->secondGlyph) <= glyphID) {
164 record = trial;
  /external/fec/
sumsq_test.c 29 int i,d,trial,trials=10000; local
77 for(trial=0;trial<trials;trial++){
81 for(trial=0;trial<trials;trial++){
  /external/libchrome/base/metrics/
field_trial_unittest.cc 53 void OnFieldTrialGroupFinalized(const std::string& trial,
55 trial_name_ = trial;
147 scoped_refptr<FieldTrial> trial; local
151 std::string name = StringPrintf("trial%d", ++counter);
152 trial = CreateFieldTrial(name, 10, winner, &default_group_number);
153 trial->AppendGroup(loser, 5); // 50% chance of not being chosen.
155 } while (trial->group_ != FieldTrial::kNotFinalized);
158 EXPECT_EQ(default_group_number, trial->group());
161 EXPECT_EQ(winner, trial->group_name());
176 scoped_refptr<FieldTrial> trial local
201 scoped_refptr<FieldTrial> trial = local
225 scoped_refptr<FieldTrial> trial = local
257 FieldTrial* trial = FieldTrialList::FactoryGetFieldTrial( local
272 scoped_refptr<FieldTrial> trial = local
333 scoped_refptr<FieldTrial> trial = local
365 scoped_refptr<FieldTrial> trial = local
400 scoped_refptr<FieldTrial> trial = local
420 scoped_refptr<FieldTrial> trial = local
462 scoped_refptr<FieldTrial> trial = local
510 FieldTrial* trial = FieldTrialList::Find("Some_name"); local
511 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
516 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
526 FieldTrial* trial = FieldTrialList::Find("tname"); local
527 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
551 scoped_refptr<FieldTrial> trial = local
689 FieldTrial* trial = FieldTrialList::Find("Foo"); local
690 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
695 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
705 FieldTrial* trial = FieldTrialList::Find("Some_name"); local
706 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
723 scoped_refptr<FieldTrial> trial = local
738 scoped_refptr<FieldTrial> trial = local
746 scoped_refptr<FieldTrial> trial = local
833 scoped_refptr<FieldTrial> trial = local
847 scoped_refptr<FieldTrial> trial = local
962 scoped_refptr<FieldTrial> trial = local
981 scoped_refptr<FieldTrial> trial = local
1005 scoped_refptr<FieldTrial> trial = local
1029 scoped_refptr<FieldTrial> trial = local
1051 scoped_refptr<FieldTrial> trial = local
1135 scoped_refptr<FieldTrial> trial = local
    [all...]
field_trial.cc 25 // Define a marker character to be used as a prefix to a trial name on the
89 // Verify if the trial should be activated or not.
132 // the trial to the default group.
150 // forced trial, it will not have the same value as the default group
257 DVLOG(1) << "Field trial: " << trial_name_ << " Group choice:" << group_name_;
355 // Check if the field trial has already been created in some other way.
359 // If the default group name differs between the existing forced trial
360 // and this trial, then use a different value for the default group number.
364 // chosen for the forced trial (which has been finalized when it was
465 FieldTrial::State trial; local
535 FieldTrial* trial = CreateFieldTrial(trial_name, group_name); local
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/api/
ResultProcessor.java 19 import com.google.caliper.model.Trial;
30 void processTrial(Trial trial);
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
InMemoryResultsUploader.java 22 import com.google.caliper.model.Trial;
35 static ImmutableList<Trial> trials() {
39 private static List<Trial> trials;
51 @Override public void processTrial(Trial trial) {
53 trials.add(trial);
ResultProcessorCreatorTest.java 24 import com.google.caliper.model.Trial;
56 public void processTrial(Trial trial) {
85 public void processTrial(Trial trial) {
103 public void processTrial(Trial trial) {
AllocationInstrumentTest.java 23 import com.google.caliper.model.Trial;
73 Trial trial = Iterables.getOnlyElement(runner.trials()); local
75 Measurement.indexByDescription(trial.measurements());
  /external/autotest/client/cros/chameleon/
chameleon_bluetooth_audio.py 121 @param timeout: Timeout in seconds to pair bluetooth module in a trial.
129 for trial in xrange(retries):
134 elif trial == retries - 1:
  /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/icu/icu4c/source/test/perf/howExpensiveIs/
howExpensiveIs.cpp 177 fprintf(stderr, "trial: %d/%d = %.9fs\n", i, ITERATIONS,times[i]);
303 double trial = unum_parseDouble(fFmt,fStr,fLen, NULL, &setupStatus); local
304 if(U_SUCCESS(setupStatus) && trial!=fExpect) {
307 fFile,fLine,getName(),trial,fExpect);
312 double trial=0.0; local
315 trial = unum_parse(fFmt,fStr,fLen, NULL, &setupStatus);
432 int32_t trial = unum_formatDouble(fFmt,fExpect, buf, 100, NULL, &setupStatus); local
434 || trial!=fLen
435 ||trial<=0
436 || u_strncmp(fStr,buf,trial) ) {
446 int32_t trial; local
556 int32_t trial = unum_formatInt64(fFmt,fExpect, buf, 100, NULL, &setupStatus); local
570 int32_t trial; local
663 int32_t trial; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpMath.java 177 int trial = 1; local
181 prevtrial = trial;
182 trial = trial * 2;
183 if (trial > a) {
189 trial = prevtrial;
191 a -= trial;
231 int trial = 1; local
236 prevtrial = trial;
238 trial = trial * 2
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
Utf8Test.java 67 for (int trial = 0; trial < 100; trial++) {
  /external/webp/src/enc/
alpha.c 246 FilterTrial trial; local
249 &trial);
250 if (ok && trial.score < best.score) {
252 best = trial;
254 VP8BitWriterWipeOut(&trial.bw);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
RoundTripTest.java 235 String trial = Normalizer.compose(sample, false); local
236 if (trial.length() == 2) {
237 resultToAddTo.add(trial);
248 String trial = Normalizer.compose(sample, false); local
249 if (trial.length() == 2) {
250 resultToAddTo.add(trial);
256 String trial = Normalizer.compose(sample, false); local
257 if (trial.length() == 2) {
258 resultToAddTo.add(trial);
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RoundTripTest.java 231 String trial = Normalizer.compose(sample, false); local
232 if (trial.length() == 2) {
233 resultToAddTo.add(trial);
244 String trial = Normalizer.compose(sample, false); local
245 if (trial.length() == 2) {
246 resultToAddTo.add(trial);
252 String trial = Normalizer.compose(sample, false); local
253 if (trial.length() == 2) {
254 resultToAddTo.add(trial);
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
RateLimiterTest.java 398 for (int trial = 0; trial < 100; trial++) {
  /external/icu/icu4c/source/common/
caniter.cpp 573 UnicodeString trial; local
574 nfd.normalize(temp, trial, status);
575 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) {
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
TransliterationChart.java 124 String trial = (String)sit.next(); local
125 if (!sets[i].containsAll(trial)) continue;
126 item = trial;

Completed in 363 milliseconds

1 2 3