/third_party/mesa3d/src/compiler/glsl/tests/ |
H A D | lower_precision_test.py | 29 Test = namedtuple("Test", "name source match_re") variable 33 Test("f32 simple division", 43 Test("i32 simple division", 58 Test("u32 simple division", 73 Test("dot", 83 Test("f32 array with const index", 95 Test("i32 array with const index", 111 Test("u32 array with const index", 127 Test("f3 [all...] |
/third_party/vixl/test/ |
H A D | test-runner.cc | 34 vixl::Test* vixl::Test::first_ = NULL; 35 vixl::Test* vixl::Test::last_ = NULL; 37 bool vixl::Test::verbose_ = false; 40 bool vixl::Test::trace_sim_ = false; 41 bool vixl::Test::trace_reg_ = false; 42 bool vixl::Test::trace_write_ = false; 43 bool vixl::Test::trace_branch_ = false; 46 bool vixl::Test [all...] |
H A D | test-runner.h | 36 // Each test is represented by a Test instance. 38 class Test { class 40 typedef void(TestFunctionWithConfig)(Test* config); 44 // few tests require dynamic configuration, and are passed a `Test` object. 46 Test(const char* name, Fn* callback) in Test() function in vixl::Test 59 static Test* MakeSVETest(int vl, in MakeSVETest() 65 Test* test = new Test(name, fn); in MakeSVETest() 88 static Test* first() { return first_; } in first() 89 static Test* las in first() [all...] |
/third_party/python/Lib/unittest/test/ |
H A D | test_setups.py | 33 class Test(unittest.TestCase): class 37 Test.setUpCalled += 1 44 result = self.runTests(Test) 46 self.assertEqual(Test.setUpCalled, 1) 51 class Test(unittest.TestCase): class 55 Test.tearDownCalled += 1 62 result = self.runTests(Test) 64 self.assertEqual(Test.tearDownCalled, 1) 69 class Test(unittest.TestCase): class 73 Test 117 class Test(unittest.TestCase): global() class 150 class Test(unittest.TestCase): global() class 166 class Test(unittest.TestCase): global() class 272 class Test(unittest.TestCase): global() class 297 class Test(unittest.TestCase): global() class 331 class Test(unittest.TestCase): global() class 349 class Test(unittest.TestCase): global() class 370 class Test(unittest.TestCase): global() class 403 class Test(unittest.TestCase): global() class 421 class Test(unittest.TestCase): global() class 453 class Test(unittest.TestCase): global() class 482 class Test(unittest.TestCase): global() class [all...] |
H A D | test_async_case.py | 63 class Test(unittest.IsolatedAsyncioTestCase): class 129 test = Test("test_func") 138 test = Test("test_func") 147 class Test(unittest.IsolatedAsyncioTestCase): class 164 test = Test("test_func") 171 test = Test("test_func") 184 class Test(unittest.IsolatedAsyncioTestCase): class 200 test = Test("test_func") 207 test = Test("test_func") 220 class Test(unittes class 256 class Test(unittest.IsolatedAsyncioTestCase): global() class 302 class Test(unittest.IsolatedAsyncioTestCase): global() class 331 class Test(unittest.IsolatedAsyncioTestCase): global() class 353 class Test(unittest.IsolatedAsyncioTestCase): global() class 379 class Test(unittest.IsolatedAsyncioTestCase): global() class 399 class Test(unittest.IsolatedAsyncioTestCase): global() class 413 class Test(unittest.IsolatedAsyncioTestCase): global() class 427 class Test(unittest.IsolatedAsyncioTestCase): global() class [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | declarationEmitNoNonRequiredParens.js | 2 export enum Test { 6 export type TestType = typeof Test; 13 exports.bar = exports.Test = void 0;
14 var Test;
variable 15 (function (Test) {
16 Test[Test["A"] = 0] = "A";
17 Test[Test["B"] = 1] = "B";
18 Test[Tes [all...] |
H A D | enumNumbering1.js | 2 enum Test { 12 var Test;
variable 13 (function (Test) {
14 Test[Test["A"] = 0] = "A";
15 Test[Test["B"] = 1] = "B";
16 Test[Test["C"] = Math.floor(Math.random() * 1000)] = "C";
17 Test[Tes [all...] |
H A D | constructorArgWithGenericCallSignature.js | 2 module Test { 12 var func: Test.MyFunc; 13 Test.F(func); // OK 14 var test = new Test.MyClass(func); // Should be OK 18 var Test;
variable 19 (function (Test) {
25 Test.MyClass = MyClass;
27 Test.F = F;
28 })(Test || (Test [all...] |
H A D | emitClassExpressionInDeclarationFile2.js | 24 export class Test extends WithTags(FooItem) {} 26 const test = new Test(); 28 Test.getTags() 51 exports.Test = exports.WithTags = exports.FooItem = exports.noPrivates = void 0;
83 var Test = /** @class */ (function (_super) {
84 __extends(Test, _super);
85 function Test() {
88 return Test;
90 exports.Test = Test;
[all...] |
/third_party/rust/crates/memoffset/src/ |
H A D | span_of.rs | 221 struct Test { in ig_test() structure names 228 assert_eq!(span_of!(Test, ..x), 0..0); in ig_test() 229 assert_eq!(span_of!(Test, ..=x), 0..8); in ig_test() 230 assert_eq!(span_of!(Test, ..y), 0..8); in ig_test() 231 assert_eq!(span_of!(Test, ..=y), 0..64); in ig_test() 232 assert_eq!(span_of!(Test, ..z), 0..64); in ig_test() 233 assert_eq!(span_of!(Test, ..=z), 0..68); in ig_test() 234 assert_eq!(span_of!(Test, ..egg), 0..68); in ig_test() 235 assert_eq!(span_of!(Test, ..=egg), 0..84); in ig_test() 236 assert_eq!(span_of!(Test, in ig_test() [all...] |
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
H A D | JsonParserTest.cs | 49 [Test] 55 [Test] 63 [Test] 70 // Test that integer parsing is strict. We assume that if this is correct for int32, in IntegerMapKeysAreStrict() 76 [Test] 84 [Test] 90 [Test] 108 [Test] 126 [Test] 137 [Test] [all...] |
H A D | JsonFormatterTest.cs | 53 [Test] 63 [Test] 70 [Test] 82 [Test] 99 [Test] 157 [Test] 168 [Test] 179 [Test] 190 [Test] 199 [Test] [all...] |
H A D | ByteStringTest.cs | 45 [Test]
73 [Test]
79 [Test]
90 [Test]
96 [Test]
102 [Test]
113 [Test]
125 [Test]
135 [Test]
145 [Test]
[all...] |
/third_party/libunwind/libunwind/tests/ |
H A D | Ltest-cxx-exceptions.cxx | 35 struct Test struct 38 Test() { ++counter_; } in Test() function 39 ~Test() { -- counter_; } in ~Test() 40 Test(const Test&) { ++counter_; } in Test() function 46 int Test::counter_ = 0; 51 Test t; in bar() 53 Test t; in bar() 56 Test t; in bar() 68 Test in main() [all...] |
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
H A D | JsonParserTest.cs | 47 [Test] 53 [Test] 61 [Test] 68 // Test that integer parsing is strict. We assume that if this is correct for int32, in IntegerMapKeysAreStrict() 74 [Test] 82 [Test] 88 [Test] 106 [Test] 124 [Test] 135 [Test] [all...] |
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Collections/ |
H A D | MapFieldTest.cs | 48 [Test] 58 [Test] 76 [Test] 83 [Test] 90 [Test] 103 [Test] 117 [Test] 131 [Test] 140 [Test] 156 [Test] [all...] |
H A D | RepeatedFieldTest.cs | 47 [Test] 58 [Test] 67 [Test] 77 [Test] 87 [Test] 96 [Test] 105 [Test] 115 [Test] 125 [Test] 135 [Test] [all...] |
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Collections/ |
H A D | RepeatedFieldTest.cs | 48 [Test] 59 [Test] 68 [Test] 78 [Test] 88 [Test] 97 [Test] 106 [Test] 116 [Test] 126 [Test] 136 [Test] [all...] |
H A D | MapFieldTest.cs | 49 [Test] 59 [Test] 77 [Test] 84 [Test] 91 [Test] 104 [Test] 118 [Test] 132 [Test] 141 [Test] 157 [Test] [all...] |
/third_party/pcre2/pcre2/ |
H A D | RunGrepTest.bat | 93 echo ---------------------------- Test 1 ------------------------------>testtrygrep
97 echo ---------------------------- Test 2 ------------------------------>>testtrygrep
101 echo ---------------------------- Test 3 ------------------------------>>testtrygrep
105 echo ---------------------------- Test 4 ------------------------------>>testtrygrep
109 echo ---------------------------- Test 5 ------------------------------>>testtrygrep
113 echo ---------------------------- Test 6 ------------------------------>>testtrygrep
117 echo ---------------------------- Test 7 ------------------------------>>testtrygrep
121 echo ---------------------------- Test 8 ------------------------------>>testtrygrep
125 echo ---------------------------- Test 9 ------------------------------>>testtrygrep
129 echo ---------------------------- Test 1 [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | char.rs | 13 pub struct Test { structure names 29 const UNINIT: ::std::mem::MaybeUninit<Test> = in bindgen_test_layout_Test() 33 ::std::mem::size_of::<Test>(), in bindgen_test_layout_Test() 35 concat!("Size of: ", stringify!(Test)) in bindgen_test_layout_Test() 38 ::std::mem::align_of::<Test>(), in bindgen_test_layout_Test() 40 concat!("Alignment of ", stringify!(Test)) in bindgen_test_layout_Test() 45 concat!("Offset of field: ", stringify!(Test), "::", stringify!(ch)) in bindgen_test_layout_Test() 50 concat!("Offset of field: ", stringify!(Test), "::", stringify!(u)) in bindgen_test_layout_Test() 55 concat!("Offset of field: ", stringify!(Test), "::", stringify!(d)) in bindgen_test_layout_Test() 60 concat!("Offset of field: ", stringify!(Test), " in bindgen_test_layout_Test() [all...] |
H A D | test_mixed_header_and_header_contents.rs | 20 pub struct Test { structure names 36 const UNINIT: ::std::mem::MaybeUninit<Test> = in bindgen_test_layout_Test() 40 ::std::mem::size_of::<Test>(), in bindgen_test_layout_Test() 42 concat!("Size of: ", stringify!(Test)) in bindgen_test_layout_Test() 45 ::std::mem::align_of::<Test>(), in bindgen_test_layout_Test() 47 concat!("Alignment of ", stringify!(Test)) in bindgen_test_layout_Test() 52 concat!("Offset of field: ", stringify!(Test), "::", stringify!(ch)) in bindgen_test_layout_Test() 57 concat!("Offset of field: ", stringify!(Test), "::", stringify!(u)) in bindgen_test_layout_Test() 62 concat!("Offset of field: ", stringify!(Test), "::", stringify!(d)) in bindgen_test_layout_Test() 67 concat!("Offset of field: ", stringify!(Test), " in bindgen_test_layout_Test() [all...] |
H A D | test_multiple_header_calls_in_builder.rs | 14 pub struct Test { structure names 30 const UNINIT: ::std::mem::MaybeUninit<Test> = in bindgen_test_layout_Test() 34 ::std::mem::size_of::<Test>(), in bindgen_test_layout_Test() 36 concat!("Size of: ", stringify!(Test)) in bindgen_test_layout_Test() 39 ::std::mem::align_of::<Test>(), in bindgen_test_layout_Test() 41 concat!("Alignment of ", stringify!(Test)) in bindgen_test_layout_Test() 46 concat!("Offset of field: ", stringify!(Test), "::", stringify!(ch)) in bindgen_test_layout_Test() 51 concat!("Offset of field: ", stringify!(Test), "::", stringify!(u)) in bindgen_test_layout_Test() 56 concat!("Offset of field: ", stringify!(Test), "::", stringify!(d)) in bindgen_test_layout_Test() 61 concat!("Offset of field: ", stringify!(Test), " in bindgen_test_layout_Test() [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
H A D | inlined_vector_exception_safety_test.cc | 112 struct NoSizeTest : ::testing::Test {}; 116 struct OneSizeTest : ::testing::Test {}; 120 struct TwoSizeTest : ::testing::Test {}; 238 EXPECT_TRUE(tester.Test([](VecT* vec) { in TYPED_TEST() 242 EXPECT_TRUE(tester.Test([](VecT* vec) { in TYPED_TEST() 247 EXPECT_TRUE(tester.Test([](VecT* vec) { in TYPED_TEST() 252 EXPECT_TRUE(tester.Test([](VecT* vec) { in TYPED_TEST() 257 EXPECT_TRUE(tester.Test([](VecT* vec) { in TYPED_TEST() 261 EXPECT_TRUE(tester.Test([](VecT* vec) { in TYPED_TEST() 278 EXPECT_TRUE(tester.Test([](Vec in TYPED_TEST() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | RbnfRoundTripTest.java | 14 import org.junit.Test; 28 @Test 40 @Test 52 @Test 64 @Test 76 @Test 88 @Test 100 @Test 112 @Test 124 @Test [all...] |