Home
last modified time | relevance | path

Searched defs:TestResult (Results 1 – 25 of 479) sorted by relevance

12345678910>>...20

/aosp_15_r20/external/cronet/base/test/launcher/
H A Dtest_result.h52 struct TestResult { struct
65 TestResult(); argument
70 TestResult& operator=(const TestResult& other); argument
71 TestResult& operator=(TestResult&& other); argument
96 bool completed() const { in completed()
104 std::string full_name;
129 std::vector<TestResultPart> test_result_parts; argument
132 std::map<std::string, std::string> links;
135 std::map<std::string, std::string> properties;
138 std::map<std::string, std::vector<std::string>> tags;
/aosp_15_r20/external/libchrome/base/test/launcher/
H A Dtest_result.h48 struct TestResult { struct
60 TestResult(); argument
65 TestResult& operator=(const TestResult& other); argument
66 TestResult& operator=(TestResult&& other); argument
99 std::vector<TestResultPart> test_result_parts; argument
/aosp_15_r20/external/rust/android-crates-io/crates/quickcheck/src/
Dtester.rs190 pub struct TestResult { struct
204 impl TestResult { impl
216 pub fn error<S: Into<String>>(msg: S) -> TestResult { in error()
233 pub fn from_bool(b: bool) -> TestResult { in from_bool()
296 fn result(&self, _: &mut Gen) -> TestResult; in result()
300 fn result(&self, _: &mut Gen) -> TestResult { in result()
306 fn result(&self, _: &mut Gen) -> TestResult { in result()
311 impl Testable for TestResult { implementation
312 fn result(&self, _: &mut Gen) -> TestResult { in result()
322 fn result(&self, g: &mut Gen) -> TestResult { in result()
Dtests.rs53 fn prop(xs: Vec<usize>) -> TestResult { in reverse_single()
83 fn prop(x: isize, y: isize) -> TestResult { in max()
240 fn prop_discarded(_: u8) -> TestResult { in all_tests_discarded_min_tests_passed_set()
252 fn prop_discarded(_: u8) -> TestResult { in all_tests_discarded_min_tests_passed_missing()
/aosp_15_r20/build/soong/java/
H A Ddexpreopt_config_testing.go207 func CheckArtBootImageConfig(t *testing.T, result *android.TestResult) {
212 func getArtImageConfig(result *android.TestResult) *bootImageConfig {
222 func checkArtBootImageConfig(t *testing.T, result *android.TestResult, mutated bool, expectedLicens…
530 func getFrameworkImageConfig(result *android.TestResult) *bootImageConfig {
540 func CheckFrameworkBootImageConfig(t *testing.T, result *android.TestResult) {
548 func checkFrameworkBootImageConfig(t *testing.T, result *android.TestResult, mutated bool, expected…
911 func getMainlineImageConfig(result *android.TestResult) *bootImageConfig {
921 func CheckMainlineBootImageConfig(t *testing.T, result *android.TestResult) {
1214 func checkBootImageConfig(t *testing.T, result *android.TestResult, imageConfig *bootImageConfig, m…
1226 func nestedCheckBootImageConfig(t *testing.T, result *android.TestResult, imageConfig *bootImageCon…
[all …]
/aosp_15_r20/build/soong/android/
H A Dfixture.go230 FinalPreparer(result *TestResult) CustomTestResult
588 CheckErrors(t *testing.T, result *TestResult)
675 func FixtureCustomErrorHandler(function func(t *testing.T, result *TestResult)) FixtureErrorHandler…
702 type TestResult struct { struct
726 // *android.TestResult
750 *TestResult anonMember
1013 func (r *TestResult) NormalizePathForTesting(path Path) string {
1024 func (r *TestResult) NormalizePathsForTesting(paths Paths) []string {
1045 func (r *TestResult) Preparer() FixturePreparer {
1050 func (r *TestResult) Module(name string, variant string) Module {
[all …]
H A Dlicenses_test.go500 func checkEffectiveLicenses(t *testing.T, result *TestResult, effectiveLicenses map[string][]string…
535 func checkEffectiveInheritedLicenses(t *testing.T, result *TestResult, effectiveInheritedLicenses m…
600 func checkEffectivePackage(t *testing.T, result *TestResult, effectivePackage map[string]string) {
640 func checkEffectiveNotices(t *testing.T, result *TestResult, effectiveNotices map[string][]string) {
675 func checkEffectiveKinds(t *testing.T, result *TestResult, effectiveKinds map[string][]string) {
710 func checkEffectiveConditions(t *testing.T, result *TestResult, effectiveConditions map[string][]st…
H A Dnamespace_test.go665 func dependsOn(result *TestResult, module TestingModule, possibleDependency TestingModule) bool {
676 func numDeps(result *TestResult, module TestingModule) int {
685 func getModule(result *TestResult, moduleName string) TestingModule {
689 func findModuleById(result *TestResult, id string) (module TestingModule) {
/aosp_15_r20/packages/modules/DnsResolver/tests/dns_metrics_listener/
Dtest_metrics.h70 struct TestResult { struct
80 TestOnDnsEvent(const std::vector<TestResult>& results) : mResults(results){}; in TestOnDnsEvent() argument
/aosp_15_r20/external/flashrom/util/flashrom_tester/src/
H A Dtests.rs156 fn get_device_name_test(env: &mut TestEnv) -> TestResult { in get_device_name_test()
164 fn wp_region_list_test(env: &mut TestEnv) -> TestResult { in wp_region_list_test()
173 fn erase_write_test(env: &mut TestEnv) -> TestResult { in erase_write_test()
200 fn hwwp_locks_swwp_test(env: &mut TestEnv) -> TestResult { in hwwp_locks_swwp_test()
221 fn elog_sanity_test(env: &mut TestEnv) -> TestResult { in elog_sanity_test()
246 fn host_is_chrome_test(_env: &mut TestEnv) -> TestResult { in host_is_chrome_test()
272 fn partial_lock_test(section: LayoutNames) -> impl Fn(&mut TestEnv) -> TestResult { in partial_lock_test()
315 fn verify_fail_test(env: &mut TestEnv) -> TestResult { in verify_fail_test()
H A Dtester.rs51 pub type TestResult = Result<(), TestError>; typedef
102 pub fn run_test<T: TestCase>(&mut self, test: T) -> TestResult { in run_test()
321 fn run(&self, env: &mut TestEnv) -> TestResult; in run()
333 fn run(&self, env: &mut TestEnv) -> TestResult { in run()
347 fn run(&self, env: &mut TestEnv) -> TestResult { in run()
369 fn decode_test_result(res: TestResult, con: TestConclusion) -> (TestConclusion, Option<TestError>) { in decode_test_result()
/aosp_15_r20/external/ComputeLibrary/tests/framework/
H A DTestResult.h39 struct TestResult struct
53 TestResult() = default; argument
59 TestResult(Status status) in TestResult() argument
69 TestResult(Status status, const Profiler::MeasurementsMap &measurements) in TestResult() function
/aosp_15_r20/external/perfetto/test/stress_test/
H A Dstress_test.cc82 struct TestResult { struct
83 const char* cfg_name = nullptr;
84 StressTestConfig cfg;
85 uint32_t run_time_ms = 0;
86 uint32_t trace_size_kb = 0;
87 uint32_t num_packets = 0;
88 uint32_t num_threads = 0;
89 uint32_t num_errors = 0;
90 base::Subprocess::ResourceUsage svc_rusage;
91 base::Subprocess::ResourceUsage prod_rusage;
/aosp_15_r20/external/cronet/third_party/icu/source/test/letest/
H A Dletest.h42 struct TestResult struct
51 typedef struct TestResult TestResult; argument
/aosp_15_r20/external/icu/icu4c/source/test/letest/
H A Dletest.h42 struct TestResult struct
51 typedef struct TestResult TestResult; argument
/aosp_15_r20/external/swiftshader/tests/regres/deqp/
H A Ddeqp.go87 type TestResult struct { struct
88 Test string
89 Status testlist.Status
90 TimeTaken time.Duration
91 Err string `json:",omitempty"`
92 Coverage *cov.Coverage
95 func (r TestResult) String() string {
/aosp_15_r20/external/angle/third_party/spirv-tools/src/test/val/
H A Dval_non_semantic_test.cpp29 struct TestResult { struct
30 TestResult(spv_result_t in_validation_result = SPV_SUCCESS, in TestResult() argument
36 spv_result_t validation_result;
37 const char* error_str;
38 const char* error_str2;
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/test/val/
H A Dval_non_semantic_test.cpp29 struct TestResult { struct
30 TestResult(spv_result_t in_validation_result = SPV_SUCCESS, in TestResult() argument
36 spv_result_t validation_result;
37 const char* error_str;
38 const char* error_str2;
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/test/val/
Dval_non_semantic_test.cpp29 struct TestResult { struct
30 TestResult(spv_result_t in_validation_result = SPV_SUCCESS, in TestResult() argument
36 spv_result_t validation_result;
37 const char* error_str;
38 const char* error_str2;
/aosp_15_r20/external/cronet/testing/rust_gtest_interop/
H A Drust_gtest_interop.rs80 pub trait TestResult { interface
83 impl TestResult for () { implementation
/aosp_15_r20/external/skia/tools/skqp/src/
H A Dskqp.h82 struct TestResult { struct
86 std::vector<TestResult> fTestResults; argument
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/test/src/
H A Dtest_result.rs25 pub enum TestResult { enum
41 ) -> TestResult { in calc_result()
95 ) -> TestResult { in get_result_from_exit_code()
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/test/src/
H A Dtest_result.rs25 pub enum TestResult { enum
41 ) -> TestResult { in calc_result()
95 ) -> TestResult { in get_result_from_exit_code()
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/test/src/
H A Dtest_result.rs33 pub enum TestResult { enum
49 ) -> TestResult { in calc_result()
103 ) -> TestResult { in get_result_from_exit_code()
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/test/src/
H A Dtest_result.rs33 pub enum TestResult { enum
49 ) -> TestResult { in calc_result()
103 ) -> TestResult { in get_result_from_exit_code()

12345678910>>...20