/third_party/skia/third_party/externals/spirv-tools/test/val/ |
H A D | val_builtins_test.cpp | 38 struct TestResult { struct 39 TestResult(spv_result_t in_validation_result = SPV_SUCCESS, in TestResult() function 59 const char*, const char*, TestResult>>; 62 const char*, const char*, TestResult>>; 64 std::tuple<const char*, const char*, const char*, const char*, TestResult>>; 68 const char*, const char*, const char*, TestResult>>; 73 const char*, const char*, TestResult>>; 160 const TestResult& test_result = std::get<5>(GetParam()); in TEST_P() 189 const TestResult& test_result = std::get<7>(GetParam()); in TEST_P() 220 const TestResult in TEST_P() [all...] |
H A D | val_non_semantic_test.cpp | 29 struct TestResult { struct 30 TestResult(spv_result_t in_validation_result = SPV_SUCCESS, in TestResult() function 47 std::tuple<bool, bool, const char*, const char*, TestResult>>; 85 const TestResult& test_result = std::get<4>(GetParam()); in TEST_P() 105 Values(""), Values(TestResult()))); 110 Values(TestResult( 117 Values(""), Values(TestResult()))); 123 Values(TestResult()))); 130 Values(""), Values(TestResult()))); 136 Values(TestResult()))); [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/ |
H A D | val_builtins_test.cpp | 38 struct TestResult { struct 39 TestResult(spv_result_t in_validation_result = SPV_SUCCESS, in TestResult() function 59 const char*, const char*, TestResult>>; 62 const char*, const char*, TestResult>>; 64 std::tuple<const char*, const char*, const char*, const char*, TestResult>>; 68 const char*, const char*, const char*, TestResult>>; 73 const char*, const char*, TestResult>>; 160 const TestResult& test_result = std::get<5>(GetParam()); in TEST_P() 189 const TestResult& test_result = std::get<7>(GetParam()); in TEST_P() 220 const TestResult in TEST_P() [all...] |
H A D | val_non_semantic_test.cpp | 29 struct TestResult { struct 30 TestResult(spv_result_t in_validation_result = SPV_SUCCESS, in TestResult() function 47 std::tuple<bool, bool, const char*, const char*, TestResult>>; 85 const TestResult& test_result = std::get<4>(GetParam()); in TEST_P() 105 Values(""), Values(TestResult()))); 110 Values(TestResult( 117 Values(""), Values(TestResult()))); 123 Values(TestResult()))); 130 Values(""), Values(TestResult()))); 136 Values(TestResult()))); [all...] |
/third_party/spirv-tools/test/val/ |
H A D | val_builtins_test.cpp | 38 struct TestResult { struct 39 TestResult(spv_result_t in_validation_result = SPV_SUCCESS, in TestResult() function 59 const char*, const char*, TestResult>>; 62 const char*, const char*, TestResult>>; 65 const char*, const char*, TestResult>>; 69 const char*, const char*, const char*, TestResult>>; 74 const char*, const char*, TestResult>>; 162 const TestResult& test_result = std::get<5>(GetParam()); in TEST_P() 191 const TestResult& test_result = std::get<7>(GetParam()); in TEST_P() 222 const TestResult in TEST_P() [all...] |
H A D | val_non_semantic_test.cpp | 29 struct TestResult { struct 30 TestResult(spv_result_t in_validation_result = SPV_SUCCESS, in TestResult() function 47 std::tuple<bool, bool, const char*, const char*, TestResult>>; 85 const TestResult& test_result = std::get<4>(GetParam()); in TEST_P() 105 Values(""), Values(TestResult()))); 110 Values(TestResult( 117 Values(""), Values(TestResult()))); 123 Values(TestResult()))); 130 Values(""), Values(TestResult()))); 136 Values(TestResult()))); [all...] |
/third_party/gn/src/util/test/ |
H A D | test.h | 30 friend class TestResult; 37 class TestResult { class 39 TestResult(bool condition, const char* error) in TestResult() function in testing::TestResult 70 AssertHelper(const char* file, int line, const TestResult& test_result) in AssertHelper() 120 if (const ::testing::TestResult test_result = (expression)) \ 133 TEST_ASSERT_(::testing::TestResult(a == b, #a " == " #b), \ 137 TEST_ASSERT_(::testing::TestResult(a != b, #a " != " #b), \ 141 TEST_ASSERT_(::testing::TestResult(a < b, #a " < " #b), \ 145 TEST_ASSERT_(::testing::TestResult(a > b, #a " > " #b), \ 149 TEST_ASSERT_(::testing::TestResult( [all...] |
/third_party/skia/third_party/externals/swiftshader/tests/regres/deqp/ |
H A D | deqp.go | 79 Tests map[string]TestResult 84 // TestResult holds the results of a single dEQP test. 85 type TestResult struct { type 93 func (r TestResult) String() string { 153 results := make(chan TestResult, 256) 227 Tests: map[string]TestResult{}, 273 func (c *Config) TestRoutine(exe string, tests <-chan string, results chan<- TestResult, goroutineIndex int, supportsCoverage bool) { 364 results <- TestResult{ 386 results <- TestResult{ 395 results <- TestResult{ [all...] |
/third_party/rust/crates/regex/tests/ |
H A D | consistent.rs | 118 use quickcheck::{Arbitrary, TestResult}; 160 fn result(&self, gen: &mut quickcheck::Gen) -> TestResult { in result() 165 return TestResult::error(format!( in result() 178 return TestResult::error(format!( in result() 186 return TestResult::error(format!( in result() 197 return TestResult::error(format!( in result() 209 return TestResult::error(format!( in result() 221 return TestResult::error(format!( in result() 228 TestResult::from_bool(true) in result()
|
/third_party/python/Lib/unittest/test/ |
H A D | test_suite.py | 55 suite.run(unittest.TestResult()) 70 suite.run(unittest.TestResult()) 94 suite_1.run(unittest.TestResult()) 96 suite_2.run(unittest.TestResult()) 98 suite_3.run(unittest.TestResult()) 117 suite.run(unittest.TestResult()) 166 suite.run(unittest.TestResult()) 186 parent.run(unittest.TestResult()) 248 suite.run(unittest.TestResult()) 264 suite.run(unittest.TestResult()) [all...] |
H A D | test_break.py | 66 result = unittest.TestResult() 83 result = unittest.TestResult() 114 result = unittest.TestResult() 128 result = unittest.TestResult() 132 result2 = unittest.TestResult() 136 result3 = unittest.TestResult() 184 result = unittest.TestResult() 196 result = unittest.TestResult() 203 self.assertFalse(unittest.removeResult(unittest.TestResult()))
|
H A D | test_result.py | 53 # Note: there are not separate tests for TestResult.wasSuccessful(), 54 # TestResult.errors, TestResult.failures, TestResult.testsRun or 55 # TestResult.shouldStop because these only have meaning in terms of 56 # other TestResult methods. 63 result = unittest.TestResult() 74 # run should be aborted by setting the TestResult's shouldStop 77 result = unittest.TestResult() 92 result = unittest.TestResult() [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/quickchecking/src/ |
H A D | lib.rs | 29 use quickcheck::{QuickCheck, StdGen, TestResult}; 97 fn bindgen_prop(header: fuzzers::HeaderC) -> TestResult { in bindgen_prop() 99 Ok(o) => TestResult::from_bool(o.status.success()), in bindgen_prop() 102 TestResult::from_bool(false) in bindgen_prop() 124 .quickcheck(bindgen_prop as fn(fuzzers::HeaderC) -> TestResult) in test_bindgen()
|
/third_party/icu/icu4c/source/test/letest/ |
H A D | letest.h | 42 struct TestResult struct 51 typedef struct TestResult TestResult; typedef
|
/third_party/python/Lib/test/libregrtest/ |
H A D | runtest.py | 20 class TestResult: class 35 class Passed(TestResult): 40 class Failed(TestResult): 89 class Skipped(TestResult): 99 class Interrupted(TestResult): 109 class DidNotRun(TestResult): 146 def is_failed(result: TestResult, ns: Namespace) -> bool: 177 def _runtest(ns: Namespace, test_name: str) -> TestResult: 248 def runtest(ns: Namespace, test_name: str) -> TestResult: 254 Returns a TestResult su [all...] |
H A D | runtest_mp.py | 20 runtest, is_failed, TestResult, Interrupted, Timeout, ChildError, PROGRESS_MIN_TIME) 44 def must_stop(result: TestResult, ns: Namespace) -> bool: 94 # Serialize TestResult as dict in JSON 123 result: TestResult 203 test_result: TestResult, 501 """Encode a TestResult (sub)class object into a JSON dict.""" 504 if isinstance(o, TestResult): 512 def decode_test_result(d: dict[str, Any]) -> TestResult | dict[str, Any]: 513 """Decode a TestResult (sub)class object from a JSON dict.""" 524 def get_all_test_result_classes() -> set[type[TestResult]] [all...] |
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
H A D | AudioMidiTester.java | 61 public static class TestResult { class in AudioMidiTester 69 public void onTestFinished(TestResult result); in onTestFinished() 184 TestResult result = new TestResult(); in analyzeCapturedAudio()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/ |
H A D | TestSuite.h | 71 struct TestResult struct 78 inline bool operator==(const TestResult &a, const TestResult &b) in operator ==() 83 inline std::ostream &operator<<(std::ostream &os, const TestResult &result) in operator <<() 93 std::map<TestIdentifier, TestResult> results;
|
H A D | TestSuite_unittest.cpp | 115 std::map<TestIdentifier, TestResult> expectedResults = { in TEST_F() 134 std::map<TestIdentifier, TestResult> expectedResults = { in TEST_F() 153 std::map<TestIdentifier, TestResult> expectedResults = { in TEST_F()
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | testing_refleaks.py | 55 class LocalTestResult(unittest.TestResult): 56 """A TestResult which forwards events to a parent object, except for Skips.""" 59 unittest.TestResult.__init__(self)
|
/third_party/googletest/googletest/include/gtest/ |
H A D | gtest.h | 406 // TestResult is not copyable. 407 class GTEST_API_ TestResult { class 409 // Creates an empty TestResult. 410 TestResult(); 412 // D'tor. Do not inherit from TestResult. 413 ~TestResult(); 525 // We disallow copying TestResult. 526 TestResult(const TestResult&) = delete; 527 TestResult [all...] |
/third_party/node/deps/googletest/include/gtest/ |
H A D | gtest.h | 398 // TestResult is not copyable. 399 class GTEST_API_ TestResult { class 401 // Creates an empty TestResult. 402 TestResult(); 404 // D'tor. Do not inherit from TestResult. 405 ~TestResult(); 517 // We disallow copying TestResult. 518 TestResult(const TestResult&) = delete; 519 TestResult [all...] |
/third_party/googletest/googletest/src/ |
H A D | gtest-internal-inl.h | 609 // Returns the TestResult for the test that's currently running, or 610 // the TestResult for the ad hoc test if no test is running. 611 TestResult* current_test_result(); 613 // Returns the TestResult for the ad hoc test. 614 const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } in ad_hoc_test_result() 745 // Adds a TestProperty to the current TestResult object when invoked in a 917 TestResult ad_hoc_test_result_; 1034 // TestResult contains some private methods that should be hidden from 1042 static void RecordProperty(TestResult* test_result, in RecordProperty() 1048 static void ClearTestPartResults(TestResult* test_resul [all...] |
/third_party/node/deps/googletest/src/ |
H A D | gtest-internal-inl.h | 610 // Returns the TestResult for the test that's currently running, or 611 // the TestResult for the ad hoc test if no test is running. 612 TestResult* current_test_result(); 614 // Returns the TestResult for the ad hoc test. 615 const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } in ad_hoc_test_result() 746 // Adds a TestProperty to the current TestResult object when invoked in a 918 TestResult ad_hoc_test_result_; 1035 // TestResult contains some private methods that should be hidden from 1043 static void RecordProperty(TestResult* test_result, in RecordProperty() 1049 static void ClearTestPartResults(TestResult* test_resul [all...] |
/third_party/mesa3d/src/gtest/src/ |
H A D | gtest-internal-inl.h | 612 // Returns the TestResult for the test that's currently running, or 613 // the TestResult for the ad hoc test if no test is running. 614 TestResult* current_test_result(); 616 // Returns the TestResult for the ad hoc test. 617 const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } in ad_hoc_test_result() 736 // Adds a TestProperty to the current TestResult object when invoked in a 903 TestResult ad_hoc_test_result_; 1029 // TestResult contains some private methods that should be hidden from 1037 static void RecordProperty(TestResult* test_result, in RecordProperty() 1043 static void ClearTestPartResults(TestResult* test_resul [all...] |