Home
last modified time | relevance | path

Searched refs:test (Results 1 – 25 of 107) sorted by relevance

12345

/development/tools/templates/
Djava_tests_file.template3 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/
Dtest_defs.py90 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/
Ddisassemble_test.py6 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/
Dmain.c16 void (*test)(void) = dlsym(handle, "test"); in main() local
17 if (!test) { in main()
20 test(); in main()
Dtest.c1 extern void test();
5 void test() { in test() function
/development/tools/ops/
Dandroid_test_parser.py46 for test in test_case:
47 yield TestCase(test)
52 lambda test: not test.passed,
59 lambda test: test.name,
/development/samples/Vault/tests/
DAndroid.bp4 "android.test.runner.stubs",
5 "android.test.base.stubs",
9 static_libs: ["androidx.test.rules"],
/development/vndk/tools/header-checker/tests/abi_dumps/
Dopaque_ptr_types.lsdump5 "name" : "test"
11 "linker_set_key" : "test",
12 "name" : "test",
/development/tools/hosttestlib/src/com/android/hosttest/
DDeviceTestRunner.java120 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()
DDeviceTestSuite.java53 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/
DCMakeLists.txt20 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/
DApiDemosApplicationTests.java19 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/
DLocalServiceTest.java25 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/
Dexample.cpp5 void Test3::test() {} in test() function in Test3
6 void Test4::test() {} in test() function in Test4
Dexample.h6 void test();
11 void test();
/development/tools/winscope/
Dwebpack.config.js40 test: /\.vue$/, property
49 test: /\.js$/, property
54 test: /\.proto$/, property
64 test: /\.(png|jpg|gif|svg)$/, property
/development/samples/LunarLander/tests/
DAndroid.bp5 "android.test.runner.stubs",
6 "android.test.base.stubs",
/development/samples/Snake/tests/
DAndroid.bp5 "android.test.runner.stubs",
6 "android.test.base.stubs",
/development/samples/HelloActivity/tests/
DAndroid.bp5 "android.test.runner.stubs",
6 "android.test.base.stubs",
/development/samples/BrokenKeyDerivation/tests/
DAndroid.bp5 "android.test.runner.stubs",
6 "android.test.base.stubs",
/development/samples/SkeletonApp/tests/
DAndroid.bp5 "android.test.runner.stubs",
6 "android.test.base.stubs",
/development/samples/Vault/
DAndroid.bp6 "android.test.runner.stubs",
7 "android.test.base.stubs",
/development/vndk/tools/header-checker/tests/
Dgen_all.py13 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/
DClickFunActivityTest.java22 import android.test.ActivityInstrumentationTestCase2;
23 import android.test.TouchUtils;
24 import android.test.ViewAsserts;
25 import android.test.suitebuilder.annotation.MediumTest;
/development/testrunner/
Druntest.py262 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 …]

12345