/development/tools/templates/ |
D | java_tests_file.template | 3 import android.test.ActivityInstrumentationTestCase2; 6 * This is a simple framework for a test of an Application. See 7 * {@link android.test.ApplicationTestCase ApplicationTestCase} for more information on 10 * To run this test, you can type: 13 * PACKAGE.tests/android.test.InstrumentationTestRunner
|
/development/testrunner/test_defs/ |
D | test_defs.py | 90 def _AddTest(self, test): argument 98 if self.GetTest(test.GetName()) is not None: 99 logger.SilentLog("Overriding test definition %s" % test.GetName()) 100 self._testname_map[test.GetName()] = test 107 for test in self.GetTests(): 108 if test.IsContinuous(): 109 con_tests.append(test)
|
/development/scripts/ |
D | disassemble_test.py | 6 for test in disassemble_test_input.tests: 7 print test 8 …for line in disassemble_tombstone.Disassemble(iter(disassemble_test_input.tests[test].splitlines(T…
|
/development/vndk/tools/definition-tool/tests/testdata/test_elfdump/input/ |
D | main.c | 16 void (*test)(void) = dlsym(handle, "test"); in main() local 17 if (!test) { in main() 20 test(); in main()
|
D | test.c | 1 extern void test(); 5 void test() { in test() function
|
/development/tools/ops/ |
D | android_test_parser.py | 46 for test in test_case: 47 yield TestCase(test) 52 lambda test: not test.passed, 59 lambda test: test.name,
|
/development/samples/Vault/tests/ |
D | Android.bp | 4 "android.test.runner.stubs", 5 "android.test.base.stubs", 9 static_libs: ["androidx.test.rules"],
|
/development/vndk/tools/header-checker/tests/abi_dumps/ |
D | opaque_ptr_types.lsdump | 5 "name" : "test" 11 "linker_set_key" : "test", 12 "name" : "test",
|
/development/tools/hosttestlib/src/com/android/hosttest/ |
D | DeviceTestRunner.java | 120 public TestResult doRun(Test test, boolean wait) { in doRun() argument 121 if (test instanceof DeviceTest) { in doRun() 122 DeviceTest deviceTest = (DeviceTest)test; in doRun() 127 test.getClass().getName())); in doRun() 129 return super.doRun(test, wait); in doRun() 140 Test test = DeviceTestSuite.createTest(testClass, method); in runSingleMethod() local 141 return doRun(test, wait); in runSingleMethod()
|
D | DeviceTestSuite.java | 53 public void runTest(Test test, TestResult result) { in runTest() argument 54 if (test instanceof DeviceTest) { in runTest() 55 DeviceTest deviceTest = (DeviceTest)test; in runTest() 59 test.run(result); in runTest()
|
/development/ide/clion/frameworks/ml/ |
D | CMakeLists.txt | 20 add_subdirectory(nn/runtime/test/NeuralNetworksTest_shared_partial-arm-android) 21 add_subdirectory(nn/runtime/test/NeuralNetworksTest_static-arm-android) 22 add_subdirectory(nn/runtime/test/NeuralNetworksTest_static_fuzzing-arm-android) 23 add_subdirectory(nn/runtime/test/NeuralNetworksTest_mt_static-arm-android) 24 add_subdirectory(nn/runtime/test/NeuralNetworksTest_static_asan-arm-android) 25 add_subdirectory(nn/runtime/test/NeuralNetworksTest_static_ubsan-arm-android) 26 add_subdirectory(nn/runtime/test/NeuralNetworksTest_mt_static_asan-arm-android)
|
/development/samples/ApiDemos/tests/src/com/example/android/apis/ |
D | ApiDemosApplicationTests.java | 19 import android.test.ApplicationTestCase; 20 import android.test.suitebuilder.annotation.MediumTest; 21 import android.test.suitebuilder.annotation.SmallTest;
|
/development/samples/ApiDemos/tests/src/com/example/android/apis/app/ |
D | LocalServiceTest.java | 25 import android.test.MoreAsserts; 26 import android.test.ServiceTestCase; 27 import android.test.suitebuilder.annotation.MediumTest; 28 import android.test.suitebuilder.annotation.SmallTest;
|
/development/vndk/tools/header-checker/tests/integration/version_script_example/ |
D | example.cpp | 5 void Test3::test() {} in test() function in Test3 6 void Test4::test() {} in test() function in Test4
|
D | example.h | 6 void test(); 11 void test();
|
/development/tools/winscope/ |
D | webpack.config.js | 40 test: /\.vue$/, property 49 test: /\.js$/, property 54 test: /\.proto$/, property 64 test: /\.(png|jpg|gif|svg)$/, property
|
/development/samples/LunarLander/tests/ |
D | Android.bp | 5 "android.test.runner.stubs", 6 "android.test.base.stubs",
|
/development/samples/Snake/tests/ |
D | Android.bp | 5 "android.test.runner.stubs", 6 "android.test.base.stubs",
|
/development/samples/HelloActivity/tests/ |
D | Android.bp | 5 "android.test.runner.stubs", 6 "android.test.base.stubs",
|
/development/samples/BrokenKeyDerivation/tests/ |
D | Android.bp | 5 "android.test.runner.stubs", 6 "android.test.base.stubs",
|
/development/samples/SkeletonApp/tests/ |
D | Android.bp | 5 "android.test.runner.stubs", 6 "android.test.base.stubs",
|
/development/samples/Vault/ |
D | Android.bp | 6 "android.test.runner.stubs", 7 "android.test.base.stubs",
|
/development/vndk/tools/header-checker/tests/ |
D | gen_all.py | 13 from test import INPUT_DIR 14 from test import EXPECTED_DIR 15 from test import make_and_copy_reference_dumps
|
/development/samples/training/testingfun/app/tests/src/com/example/android/testingfun/tests/lesson3/ |
D | ClickFunActivityTest.java | 22 import android.test.ActivityInstrumentationTestCase2; 23 import android.test.TouchUtils; 24 import android.test.ViewAsserts; 25 import android.test.suitebuilder.annotation.MediumTest;
|
/development/testrunner/ |
D | runtest.py | 262 for test in self._known_tests: 263 print "%-25s %-40s %s" % (test.GetName(), test.GetBuildPath(), 264 test.GetDescription()) 393 for test in tests: 394 if test.IsFullMake() and test.IsGrantedPermissions() == test_requires_permissions: 395 if test.GetExtraBuildArgs(): 397 extra_args_set.add(test.GetExtraBuildArgs()) 400 " extra_build_args" % test.GetName()) 447 test = self._known_tests.GetTest(name) 448 if test is None: [all …]
|