/frameworks/compile/mclinker/unittests/ |
SystemUtilsTest.h | 15 namespace test { namespace in namespace:mcld 17 class SystemUtilsTest : public ::testing::Test 20 // Constructor can do set-up work for all test here. 26 // SetUp() will be called immediately before each test. 29 // TearDown() will be called immediately after each test. 33 } // namespace of test
|
/frameworks/testing/androidtestlib/src/com/android/test/ |
InjectBundle.java | 16 package com.android.test; 20 import junit.framework.Test; 31 * test runner into your JUnit4-style test. 37 * The test runner will set the value of this field with the {@link Bundle} after 40 * Declaring this in a JUnit3 test (ie a class that is a {@link Test}) will have no effect.
|
InjectContext.java | 16 package com.android.test; 20 import android.test.AndroidTestCase; 22 import junit.framework.Test; 33 * into your JUnit4-style test. 39 * The test runner will set the value of this field with the {@link Instrumentation} after 42 * Declaring this in a JUnit3 test (ie a class that is a {@link Test}) will have no effect.
|
InjectInstrumentation.java | 16 package com.android.test; 19 import android.test.InstrumentationTestCase; 21 import junit.framework.Test; 31 * Use this to inject an {@link Instrumentation} into your JUnit4-style test. 38 * The test runner will set the value of this field with the {@link Instrumentation} after 41 * Declaring this in a JUnit3 test (ie a class that is a {@link Test}) will have no effect.
|
/frameworks/testing/androidtestlib/tests/src/com/android/test/ |
MyAndroidTestCase.java | 16 package com.android.test; 19 import android.test.AndroidTestCase; 23 * Placeholder test to verify {@link Context} gets injected to {@link AndroidTestCase}. 27 // rely on testCaseSetupProperly to test for context
|
/libcore/support/src/test/java/tests/security/ |
TestHelper.java | 20 public abstract void test(T testObject); method in class:TestHelper
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.replace/ |
replace.pass.cpp | 26 test() function 40 test<forward_iterator<int*> >(); 41 test<bidirectional_iterator<int*> >(); 42 test<random_access_iterator<int*> >(); 43 test<int*>();
|
replace_if.pass.cpp | 27 test() function 41 test<forward_iterator<int*> >(); 42 test<bidirectional_iterator<int*> >(); 43 test<random_access_iterator<int*> >(); 44 test<int*>();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/make.heap/ |
make_heap.pass.cpp | 20 void test(unsigned N) function 33 test(0); 34 test(1); 35 test(2); 36 test(3); 37 test(10); 38 test(1000);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/pop.heap/ |
pop_heap.pass.cpp | 20 void test(unsigned N) function 38 test(1000);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/push.heap/ |
push_heap.pass.cpp | 21 void test(unsigned N) function 37 test(1000);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.heap.operations/sort.heap/ |
sort_heap.pass.cpp | 20 void test(unsigned N) function 34 test(0); 35 test(1); 36 test(2); 37 test(3); 38 test(10); 39 test(1000);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.merge/ |
inplace_merge.pass.cpp | 46 test(unsigned N) function 57 test() function 69 test<Iter>(4); 70 test<Iter>(100); 71 test<Iter>(1000); 76 test<bidirectional_iterator<int*> >(); 77 test<random_access_iterator<int*> >(); 78 test<int*>();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
max.pass.cpp | 21 test(const T& a, const T& b, const T& x) function 31 test(x, y, x); 32 test(y, x, y); 37 test(x, y, y); 38 test(y, x, y); 43 test(x, y, x); 44 test(y, x, x);
|
max_comp.pass.cpp | 23 test(const T& a, const T& b, C c, const T& x) function 33 test(x, y, std::greater<int>(), x); 34 test(y, x, std::greater<int>(), y); 39 test(x, y, std::greater<int>(), x); 40 test(y, x, std::greater<int>(), x); 45 test(x, y, std::greater<int>(), y); 46 test(y, x, std::greater<int>(), y);
|
max_element.pass.cpp | 24 test(Iter first, Iter last) function 38 test(unsigned N) function 44 test(Iter(a), Iter(a+N)); 50 test() function 52 test<Iter>(0); 53 test<Iter>(1); 54 test<Iter>(2); 55 test<Iter>(3); 56 test<Iter>(10); 57 test<Iter>(1000) [all...] |
max_element_comp.pass.cpp | 25 test(Iter first, Iter last) function 39 test(unsigned N) function 45 test(Iter(a), Iter(a+N)); 51 test() function 53 test<Iter>(0); 54 test<Iter>(1); 55 test<Iter>(2); 56 test<Iter>(3); 57 test<Iter>(10); 58 test<Iter>(1000) [all...] |
min.pass.cpp | 21 test(const T& a, const T& b, const T& x) function 31 test(x, y, x); 32 test(y, x, y); 37 test(x, y, x); 38 test(y, x, x); 43 test(x, y, y); 44 test(y, x, y);
|
min_comp.pass.cpp | 23 test(const T& a, const T& b, C c, const T& x) function 33 test(x, y, std::greater<int>(), x); 34 test(y, x, std::greater<int>(), y); 39 test(x, y, std::greater<int>(), y); 40 test(y, x, std::greater<int>(), y); 45 test(x, y, std::greater<int>(), x); 46 test(y, x, std::greater<int>(), x);
|
min_element.pass.cpp | 24 test(Iter first, Iter last) function 38 test(unsigned N) function 44 test(Iter(a), Iter(a+N)); 50 test() function 52 test<Iter>(0); 53 test<Iter>(1); 54 test<Iter>(2); 55 test<Iter>(3); 56 test<Iter>(10); 57 test<Iter>(1000) [all...] |
min_element_comp.pass.cpp | 25 test(Iter first, Iter last) function 39 test(unsigned N) function 45 test(Iter(a), Iter(a+N)); 51 test() function 53 test<Iter>(0); 54 test<Iter>(1); 55 test<Iter>(2); 56 test<Iter>(3); 57 test<Iter>(10); 58 test<Iter>(1000) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.sort/is.sorted/ |
is_sorted.pass.cpp | 24 test() function 179 test<forward_iterator<const int*> >(); 180 test<bidirectional_iterator<const int*> >(); 181 test<random_access_iterator<const int*> >(); 182 test<const int*>();
|
is_sorted_comp.pass.cpp | 25 test() function 180 test<forward_iterator<const int*> >(); 181 test<bidirectional_iterator<const int*> >(); 182 test<random_access_iterator<const int*> >(); 183 test<const int*>();
|
is_sorted_until.pass.cpp | 24 test() function 179 test<forward_iterator<const int*> >(); 180 test<bidirectional_iterator<const int*> >(); 181 test<random_access_iterator<const int*> >(); 182 test<const int*>();
|
is_sorted_until_comp.pass.cpp | 25 test() function 180 test<forward_iterator<const int*> >(); 181 test<bidirectional_iterator<const int*> >(); 182 test<random_access_iterator<const int*> >(); 183 test<const int*>();
|