/external/testng/src/test/java/test/thread/ |
Sample1.java | 5 public class Sample1 extends BaseThreadTest {
|
/external/testng/src/test/resources/ |
suite1-1.xml | 8 <class name="test.sample.Sample1"/>
|
/external/testng/src/test/java/test/listeners/ |
ResultEndMillisTest.java | 7 import test.sample.Sample1; 14 TestNG tng = create(Sample1.class);
|
/external/chromium-trace/catapult/tracing/tracing/model/ |
power_sample_test.html | 22 var sample1 = new PowerSample(series, 0.0, 1000.0); 25 assert.equal(sample1.series, series); 26 assert.equal(sample1.start, 0.0); 27 assert.equal(sample1.power, 1000.0); 37 var sample1 = new PowerSample(series, 0.0, 1000.0); 41 sample1.addBoundsToRange(range);
|
power_series_test.html | 39 var sample1 = series.addPowerSample(0, 1000); 42 assert.deepEqual(series.samples, [sample1, sample2]); 135 var sample1 = series.addPowerSample(0, 1000); 145 assert.deepEqual(eventsInSeries, [sample1, sample2]);
|
/external/bzip2/ |
makefile.msc | 28 .\\bzip2 -1 < sample1.ref > sample1.rb2
31 .\\bzip2 -d < sample1.bz2 > sample1.tst
40 fc sample1.bz2 sample1.rb2
43 fc sample1.tst sample1.ref
54 del sample1.rb2
57 del sample1.tst [all...] |
Makefile | 58 ./bzip2 -1 < sample1.ref > sample1.rb2 61 ./bzip2 -d < sample1.bz2 > sample1.tst 64 cmp sample1.bz2 sample1.rb2 67 cmp sample1.tst sample1.ref 113 sample1.rb2 sample2.rb2 sample3.rb2 \ 114 sample1.tst sample2.tst sample3.ts [all...] |
/external/protobuf/gtest/scripts/test/ |
Makefile | 49 sample1.o : $(SAMPLE_DIR)/sample1.cc $(SAMPLE_DIR)/sample1.h 50 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(SAMPLE_DIR)/sample1.cc 53 $(SAMPLE_DIR)/sample1.h $(FUSED_GTEST_H) 56 sample1_unittest : sample1.o sample1_unittest.o gtest-all.o gtest_main.o
|
/external/testng/src/test/java/test/methods/ |
VerifyMethod1.java | 11 @Test(dependsOnGroups = { "sample1" })
|
SampleMethod1.java | 23 @Test(groups = { "sample1" }) 28 @Test(groups = { "sample1" })
|
/external/google-breakpad/src/testing/gtest/scripts/test/ |
Makefile | 51 sample1.o : $(SAMPLE_DIR)/sample1.cc $(SAMPLE_DIR)/sample1.h 52 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(SAMPLE_DIR)/sample1.cc 55 $(SAMPLE_DIR)/sample1.h $(FUSED_GTEST_H) 58 sample1_unittest : sample1.o sample1_unittest.o gtest-all.o gtest_main.o
|
/external/testng/src/test/java/test/ |
Test1.java | 21 addClass("test.sample.Sample1"); 36 addClass("test.sample.Sample1"); 56 addClass("test.sample.Sample1"); 79 addClass("test.sample.Sample1"); 95 addClass("test.sample.Sample1"); 112 addClass("test.sample.Sample1");
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/test/ |
Makefile | 51 sample1.o : $(SAMPLE_DIR)/sample1.cc $(SAMPLE_DIR)/sample1.h 52 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(SAMPLE_DIR)/sample1.cc 55 $(SAMPLE_DIR)/sample1.h $(FUSED_GTEST_H) 58 sample1_unittest : sample1.o sample1_unittest.o gtest-all.o gtest_main.o
|
/system/extras/simpleperf/ |
sample_tree_test.cpp | 53 static int CompareSampleFunction(const SampleEntry& sample1, const SampleEntry& sample2) { 54 if (sample1.thread->pid != sample2.thread->pid) { 55 return sample1.thread->pid - sample2.thread->pid; 57 if (sample1.thread->tid != sample2.thread->tid) { 58 return sample1.thread->tid - sample2.thread->tid; 60 if (strcmp(sample1.thread_comm, sample2.thread_comm) != 0) { 61 return strcmp(sample1.thread_comm, sample2.thread_comm); 63 if (sample1.map->dso->Path() != sample2.map->dso->Path()) { 64 return sample1.map->dso->Path() > sample2.map->dso->Path() ? 1 : -1; 66 if (sample1.map->start_addr != sample2.map->start_addr) [all...] |
sample_tree.h | 117 bool operator()(SampleEntry* sample1, SampleEntry* sample2) const { 118 return compare_function(*sample1, *sample2) < 0; 127 bool operator()(SampleEntry* sample1, SampleEntry* sample2) const { 128 uint64_t period1 = sample1->period + sample1->accumulated_period; 133 return compare_function(*sample1, *sample2) < 0;
|
cmd_report.cpp | 119 virtual int Compare(const SampleEntry& sample1, const SampleEntry& sample2) const = 0; 127 int Compare(const SampleEntry& sample1, const SampleEntry& sample2) const override { 128 return sample1.thread->pid - sample2.thread->pid; 141 int Compare(const SampleEntry& sample1, const SampleEntry& sample2) const override { 142 return sample1.thread->tid - sample2.thread->tid; 155 int Compare(const SampleEntry& sample1, const SampleEntry& sample2) const override { 156 return strcmp(sample1.thread_comm, sample2.thread_comm); 169 int Compare(const SampleEntry& sample1, const SampleEntry& sample2) const override { 170 return strcmp(sample1.map->dso->Path().c_str(), sample2.map->dso->Path().c_str()); 183 int Compare(const SampleEntry& sample1, const SampleEntry& sample2) const override [all...] |
/external/google-breakpad/src/testing/gtest/make/ |
Makefile | 72 sample1.o : $(USER_DIR)/sample1.cc $(USER_DIR)/sample1.h $(GTEST_HEADERS) 73 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1.cc 76 $(USER_DIR)/sample1.h $(GTEST_HEADERS) 79 sample1_unittest : sample1.o sample1_unittest.o gtest_main.a
|
/external/protobuf/gtest/make/ |
Makefile | 72 sample1.o : $(USER_DIR)/sample1.cc $(USER_DIR)/sample1.h $(GTEST_HEADERS) 73 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1.cc 76 $(USER_DIR)/sample1.h $(GTEST_HEADERS) 79 sample1_unittest : sample1.o sample1_unittest.o gtest_main.a
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/make/ |
Makefile | 74 sample1.o : $(USER_DIR)/sample1.cc $(USER_DIR)/sample1.h $(GTEST_HEADERS) 75 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1.cc 78 $(USER_DIR)/sample1.h $(GTEST_HEADERS) 81 sample1_unittest : sample1.o sample1_unittest.o gtest_main.a
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/ |
TTestImpl.java | 69 * differences between corresponding entries in <code>sample1</code> and 77 * @param sample1 array of sample data values 84 public double pairedT(double[] sample1, double[] sample2) 86 checkSampleData(sample1); 88 double meanDifference = StatUtils.meanDifference(sample1, sample2); 90 StatUtils.varianceDifference(sample1, sample2, meanDifference), 91 sample1.length); 108 * <code>sample1</code> and <code>sample2.</code></p> 121 * @param sample1 array of sample data values 127 public double pairedTTest(double[] sample1, double[] sample2 [all...] |
TestUtils.java | 158 public static double homoscedasticT(double[] sample1, double[] sample2) 160 return tTest.homoscedasticT(sample1, sample2); 175 public static boolean homoscedasticTTest(double[] sample1, double[] sample2, 178 return tTest. homoscedasticTTest(sample1, sample2, alpha); 184 public static double homoscedasticTTest(double[] sample1, double[] sample2) 186 return tTest.homoscedasticTTest(sample1, sample2); 201 public static double pairedT(double[] sample1, double[] sample2) 203 return tTest.pairedT(sample1, sample2); 209 public static boolean pairedTTest(double[] sample1, double[] sample2, 212 return tTest.pairedTTest(sample1, sample2, alpha) [all...] |
/external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/ |
MergeTaskTest.xml | 51 <property name="sample1.file" location="${basedir}/data/sample1.exec"/> 53 <au:assertLogContains text="Loading execution data file ${sample1.file}"/>
|
/external/chromium-trace/catapult/tracing/tracing/ui/analysis/ |
analysis_view_test.html | 50 var sample1 = series.addCounterSample(0, 100); 61 record1.associatedEvents.push(sample1); 88 new EventSet([sample1, slice1, sample2])); 93 [sample1, sample2]); 129 checkSelectedTab(singleRecordTab4, [sample1, slice1]);
|
/external/v8/test/cctest/ |
test-profile-generator.cc | 361 // -> aaa - sample1 364 TickSample sample1; local 365 sample1.pc = ToAddress(0x1600); 366 sample1.tos = ToAddress(0x1500); 367 sample1.stack[0] = ToAddress(0x1510); 368 sample1.frames_count = 1; 369 generator.RecordTickSample(sample1); 427 // -> aaa #3 - sample1 430 TickSample sample1; local 431 sample1.pc = ToAddress(0x1600) 472 TickSample sample1; local [all...] |
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/ |
BordeauxRanker.java | 79 // Update the ranker with two samples, sample1 has higher rank than 81 public boolean update(final HashMap<String, Float> sample1, 86 mRanker.UpdateClassifier(getArrayList(sample1), getArrayList(sample2));
|