Home
last modified time | relevance | path

Searched defs:TestType (Results 1 – 25 of 129) sorted by relevance

123456

/third_party/rust/rust/tests/ui/traits/negative-impls/
Dnegated-auto-traits-error.rs20 struct TestType; in dummy() struct
21 impl !Send for TestType {} in dummy() implementation
29 struct TestType; in dummy1b() struct
30 impl !Send for TestType {} in dummy1b() implementation
37 struct TestType; in dummy1c() struct
38 impl !Send for TestType {} in dummy1c() implementation
45 struct TestType; in dummy2() struct
46 impl !Send for TestType {} in dummy2() implementation
53 struct TestType; in dummy3() struct
54 impl !Send for TestType {} in dummy3() implementation
[all …]
Dnegative-impls-basic.rs9 struct TestType; struct
15 impl !TestTrait for TestType {} implementation
/third_party/rust/rust/tests/ui/coherence/
Dcoherence-conflicting-negative-trait-impl.rs7 struct TestType<T>(::std::marker::PhantomData<T>); struct
9 unsafe impl<T: MyTrait + 'static> Send for TestType<T> {} implementation
11 impl<T: MyTrait> !Send for TestType<T> {} //~ ERROR found both positive and negative implementation implementation
13 unsafe impl<T: 'static> Send for TestType<T> {} //~ ERROR conflicting implementations implementation
15 impl !Send for TestType<i32> {} implementation
Dcoherence-negative-impls-safe-rpass.rs9 struct TestType; struct
11 impl !Send for TestType {} implementation
Dcoherence-negative-impls-safe.rs5 struct TestType; struct
7 unsafe impl !Send for TestType {} implementation
/third_party/rust/rust/tests/ui/issues/
Dissue-106755.rs9 struct TestType<T>(::std::marker::PhantomData<T>); struct
11 unsafe impl<T: MyTrait + 'static> Send for TestType<T> {} implementation
13 impl<T: MyTrait> !Send for TestType<T> {} //~ ERROR found both positive and negative implementation implementation
15 unsafe impl<T: 'static> Send for TestType<T> {} //~ ERROR conflicting implementations implementation
17 impl !Send for TestType<i32> {} implementation
/third_party/rust/rust/tests/ui/traits/
Dsyntax-trait-polarity.rs5 struct TestType; struct
7 impl !TestType {} implementation
12 unsafe impl !Send for TestType {} implementation
14 impl !TestTrait for TestType {} implementation
Dsyntax-polarity.rs7 struct TestType; struct
9 impl TestType {} impl
13 impl !Send for TestType {} implementation
/third_party/rust/rust/tests/ui/specialization/
Dspecialization-overlap-negative.rs6 struct TestType<T>(::std::marker::PhantomData<T>); struct
8 unsafe impl<T: Clone> Send for TestType<T> {} implementation
9 impl<T: MyTrait> !Send for TestType<T> {} //~ ERROR E0751 implementation
/third_party/rust/rust/tests/ui/proc-macro/
Dmacro-crate-multi-decorator.rs16 type TestType; typedef
27 type TestType = f64; typedef
/third_party/rust/rust/src/tools/rustfmt/tests/target/
Dissue-3595.rs4 pub type TestType = fn() -> (ReqMsg, fn(RespMsg) -> ()); typedef
/third_party/typescript/tests/baselines/reference/
DconstEnum3.js5 function f1(f: TestType) { }
/third_party/skia/m133/tests/
DTestType.h17 enum class TestType : uint8_t { kCPU, kCPUSerial, kGanesh, kGraphite }; enum
DCachedDecodingPixelRefTest.cpp31 enum TestType { enum in TestImageGenerator
/third_party/typescript/tests/cases/conformance/constEnums/
DconstEnum3.ts1 const enum TestType { foo, bar } enum
/third_party/typescript/tests/cases/compiler/
DdeclarationEmitNoNonRequiredParens.ts6 export type TestType = typeof Test; alias
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
DvktApiDeviceDrmPropertiesTests.cpp42 enum TestType enum
DvktApiDriverPropertiesTests.cpp41 enum TestType enum
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
DvktApiDeviceDrmPropertiesTests.cpp42 enum TestType enum
DvktApiDriverPropertiesTests.cpp41 enum TestType enum
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/rasterization/
DvktRasterizationProvokingVertexTests.cpp947 const struct TestType in createTests() struct
949 const char* name; in createTests()
950 const char* desc; in createTests()
951 bool transformFeedback; in createTests()
/third_party/rust/rust/compiler/rustc_builtin_macros/src/
Dtest.rs501 enum TestType { enum
510 fn test_type(cx: &ExtCtxt<'_>) -> TestType { in test_type()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
DvktDrawShaderInvocationTests.cpp40 enum TestType enum
/third_party/skia/tests/
DCachedDecodingPixelRefTest.cpp25 enum TestType { enum in TestImageGenerator
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/
DvktRasterizationProvokingVertexTests.cpp1005 const struct TestType in createTests() struct
1007 const char* name; in createTests()
1008 bool transformFeedback; in createTests()

123456