Lines Matching refs:data
195 # Inner loop runs over the set of data files specified for each locale.
201 foreach $data (@ff) {
203 # Run ICU Test for this (locale, data file) pair.
205 $iStrCol = `java -classpath $CLASSPATH com.ibm.icu.dev.test.perf.CollationPerformanceTest -terse -file data/collation/$data -locale $locale -loop 1000 -binsearch`;
206 print "java -classpath $CLASSPATH com.ibm.icu.dev.test.perf.CollationPerformanceTest -terse -file data/collation/$data -locale $locale -loop 1000 -binsearch\n";
208 doKeyTimes("java -classpath $CLASSPATH com.ibm.icu.dev.test.perf.CollationPerformanceTest -terse -file data/collation/$data -locale $locale -loop 1000 -keygen",
212 # Run Windows test for this (locale, data file) pair. Only do if
217 my $wStrCol = `java -classpath $CLASSPATH com.ibm.icu.dev.test.perf.CollationPerformanceTest -terse -file data/collation/$data -locale $locale -loop 1000 -binsearch -java`;
219 doKeyTimes("java -classpath $CLASSPATH com.ibm.icu.dev.test.perf.CollationPerformanceTest -terse -file data/collation/$data -locale $locale -loop 1000 -keygen -java",
230 my $testname = "Coll-$locale-data$counter-StrCol";
231 #write the results corresponding to this local,data pair
238 my $testname = "Coll-$locale-data$counter-keyGen";
245 my $testname = "Coll-$locale-data$counter-StrCol-JDK";
252 my $testname = "Coll-$locale-data$counter-keyGen-JDK";
290 my @data = measure1(@_);
291 my $iterPerPass = shift(@data);
292 my $eventPerIter = shift(@data);
294 shift(@data) if (@data > 1); # discard first run
296 my $ds = Dataset->new(@data);
329 my @data = split(/\s+/, $t[0]->[2]);
330 $data[0] *= 1.0e+3;
332 my $timePerIter = 1.0e-3 * $data[0] / $data[1];
346 # $a->[1]: 'begin' data, == $iterCount
347 # $a->[2]: 'end' data, of the form <ms> <loops> <eventsPerIter>
400 my $data = [];
406 #print "$_ => [[$m $state $data]]\n";
410 push(@$data, $d);
411 push(@$data, ''); # placeholder for end data
416 $data->[1] = $d; # insert end data at [1]
417 #print "#$method:", join(";",@$data), "\n";
418 unshift(@$data, $method); # add method to start
420 push(@results, $data);
422 $data = [];
429 push(@$data, $_);