Home
last modified time | relevance | path

Searched defs:Test (Results 1 – 25 of 599) sorted by relevance

12345678910>>...24

/third_party/rust/rust/tests/ui/resolve/
Dno-implicit-prelude-nested.rs10 struct Test; struct
11 impl Add for Test {} //~ ERROR cannot find trait `Add` in this scope implementation
12 impl Clone for Test {} //~ ERROR expected trait, found derive macro `Clone` implementation
13 impl Iterator for Test {} //~ ERROR cannot find trait `Iterator` in this scope implementation
14 impl ToString for Test {} //~ ERROR cannot find trait `ToString` in this scope implementation
15 impl Writer for Test {} //~ ERROR cannot find trait `Writer` in this scope implementation
22 struct Test; struct
23 impl Add for Test {} //~ ERROR cannot find trait `Add` in this scope implementation
24 impl Clone for Test {} //~ ERROR expected trait, found derive macro `Clone` implementation
25 impl Iterator for Test {} //~ ERROR cannot find trait `Iterator` in this scope implementation
[all …]
Dno-implicit-prelude.rs9 struct Test; struct
10 impl Add for Test {} //~ ERROR cannot find trait `Add` in this scope implementation
11 impl Clone for Test {} //~ ERROR expected trait, found derive macro `Clone` implementation
12 impl Iterator for Test {} //~ ERROR cannot find trait `Iterator` in this scope implementation
13 impl ToString for Test {} //~ ERROR cannot find trait `ToString` in this scope implementation
14 impl Writer for Test {} //~ ERROR cannot find trait `Writer` in this scope implementation
/third_party/vk-gl-cts/external/amber/src/docs/
Dvk_script.md137 ## Test section in Sections
143 ### Draw Rect
153 ### Draw Arrays
161 ### Compute
167 ### Shader Entry Point
174 ### Probe all
182 ### Probe
194 ### Probe SSBO
213 ### Uniform
224 ### Unifom UBO
[all …]
/third_party/zlib/contrib/ada/
Dtest.adb25 procedure Test is subprogram
34 File_Size : Count := 100_000;
35 Continuous : constant Boolean := False;
37 Header : constant ZLib.Header_Type := ZLib.Default;
44 Strategy : constant ZLib.Strategy_Type := ZLib.Default_Strategy;
45 Init_Random : constant := 10;
49 In_File_Name : constant String := "testzlib.in";
52 Z_File_Name : constant String := "testzlib.zlb";
55 Out_File_Name : constant String := "testzlib.out";
58 File_In : File_Type;
[all …]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dchar.h7 struct Test { struct
8 char ch;
9 unsigned char u;
10 signed char d;
11 const char cch;
12 const unsigned char cu;
13 const signed char cd;
15 Char Cch;
16 UChar Cu;
17 SChar Cd;
[all …]
Dissue-2695.h5 struct Test { struct
6 unsigned long x;
7 char a;
8 char b;
9 char c;
/third_party/flatbuffers/tests/MyGame/Example/
DTest.cs12 public struct Test : IFlatbufferObject struct
24 …public static Offset<MyGame.Example.Test> CreateTest(FlatBufferBuilder builder, short A, sbyte B) { in CreateTest()
40 public static Offset<MyGame.Example.Test> Pack(FlatBufferBuilder builder, TestT _o) { in Pack()
DTest.go34 type Test struct { struct
35 _tab flatbuffers.Struct
38 func (rcv *Test) Init(buf []byte, i flatbuffers.UOffsetT) {
43 func (rcv *Test) Table() flatbuffers.Table {
47 func (rcv *Test) A() int16 {
50 func (rcv *Test) MutateA(n int16) bool {
54 func (rcv *Test) B() int8 {
57 func (rcv *Test) MutateB(n int8) bool {
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dchar.rs7 pub struct Test { struct
23 ["Size of Test"][::std::mem::size_of::<Test>() - 12usize]; argument
Dtest_multiple_header_calls_in_builder.rs14 pub struct Test { struct
30 ["Size of Test"][::std::mem::size_of::<Test>() - 12usize]; argument
Dtest_mixed_header_and_header_contents.rs20 pub struct Test { struct
36 ["Size of Test"][::std::mem::size_of::<Test>() - 12usize]; argument
Dissue-2695.rs4 pub struct Test { struct
13 ["Size of Test"][::std::mem::size_of::<Test>() - 12usize]; argument
/third_party/skia/tests/
DSkColorSpaceXformStepsTest.cpp23 struct Test { in DEF_TEST() struct
24 sk_sp<SkColorSpace> src, dst; in DEF_TEST()
25 SkAlphaType srcAT, dstAT; in DEF_TEST()
27 bool unpremul; in DEF_TEST()
28 bool linearize; in DEF_TEST()
29 bool gamut_transform; in DEF_TEST()
30 bool encode; in DEF_TEST()
31 bool premul; in DEF_TEST()
/third_party/skia/m133/tests/
DSkColorSpaceXformStepsTest.cpp27 struct Test { in DEF_TEST() struct
28 sk_sp<SkColorSpace> src, dst; in DEF_TEST()
29 SkAlphaType srcAT, dstAT; in DEF_TEST()
31 bool unpremul; in DEF_TEST()
32 bool linearize; in DEF_TEST()
33 bool gamut_transform; in DEF_TEST()
34 bool encode; in DEF_TEST()
35 bool premul; in DEF_TEST()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dhash_policy_traits_test.cc63 struct Test : ::testing::Test { struct
64 Test() { in Test() argument
87 std::allocator<int> alloc;
88 int a = 53;
90 MockFunction<void(void*, Slot*, Slot)> construct;
91 MockFunction<void(void*, Slot*)> destroy;
93 MockFunction<Slot&(Slot*)> element;
94 MockFunction<int(int)> apply;
95 MockFunction<Slot&(Slot*)> value;
97 MockFunction<void(void*, Slot*, Slot*)> transfer;
[all …]
/third_party/rust/rust/src/tools/cargotest/
Dmain.rs6 struct Test { struct
18 const TEST_REPOS: &[Test] = &[ argument
116 fn test_repo(cargo: &Path, out_dir: &Path, test: &Test) { in test_repo()
128 fn clone_repo(test: &Test, out_dir: &Path) -> PathBuf { in clone_repo()
/third_party/rust/rust/tests/ui/object-lifetime/
Dobject-lifetime-default-ambiguous.rs7 trait Test { interface
23 fn a<'a,'b>(t: Ref2<'a,'b, dyn Test>) { in a()
27 fn b(t: Ref2<dyn Test>) { in b()
31 fn c(t: Ref2<&dyn Test>) { in c()
35 fn d(t: Ref2<Ref1<dyn Test>>) { in d()
39 fn e(t: Ref2<Ref0<dyn Test>>) { in e()
43 fn f(t: &Ref2<dyn Test>) { in f()
/third_party/rust/rust/src/tools/rust-analyzer/crates/ide-completion/src/completions/item_list/
Dtrait_impl.rs410 trait Test { fn test(); fn test2(); } in no_completion_inside_fn() trait
429 trait Test { fn test(); fn test2(); } in no_completion_inside_fn() trait
443 trait Test { fn test(); fn test2(); } in no_completion_inside_fn() trait
458 trait Test { fn test(); fn test2(); } in no_completion_inside_fn() trait
472 trait Test { fn test(_: i32); fn test2(); } in no_completion_inside_fn() trait
491 trait Test { fn test(_: fn()); fn test2(); } in no_completion_inside_fn() trait
509 trait Test { const TEST: fn(); const TEST2: u32; type Test; fn test(); } in no_completion_inside_const() trait
521 trait Test { const TEST: u32; const TEST2: u32; type Test; fn test(); } in no_completion_inside_const() trait
538 trait Test { const TEST: u32; const TEST2: u32; type Test; fn test(); } in no_completion_inside_const() trait
555 trait Test { const TEST: u32; const TEST2: u32; type Test; fn test(); } in no_completion_inside_const() trait
[all …]
/third_party/rust/rust/tests/ui/suggestions/
Dsuggest-pin-macro.rs5 struct Test { struct
8 impl Test { impl
16 fn dummy(_: &mut Test) {} in dummy()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/tools/bench/
Dbench.go29 type Test struct { struct
30 Name string
31 NumTasks uint
32 NumThreads uint
33 Duration time.Duration
34 Iterations uint
39 func (t *Test) parseName() {
/third_party/rust/rust/tests/ui/rfcs/rfc-2632-const-trait-impl/
Dfunction-pointer-does-not-require-const.rs5 pub trait Test {} trait
7 impl Test for () {} implementation
9 pub const fn test<T: ~const Test>() {} in test()
/third_party/rust/rust/tests/ui/suggestions/auxiliary/
Dissue-81839.rs3 pub struct Test {} struct
5 impl Test { impl
6 pub async fn answer_str(&self, _s: &str) -> Test { in answer_str()
/third_party/flatbuffers/tests/monster_test_serialize/my_game/example/
Dtest_generated.rs17 pub struct Test(pub [u8; 4]); struct
18 impl Default for Test { implementation
23 impl core::fmt::Debug for Test { implementation
32 impl flatbuffers::SimpleToVerifyInSlice for Test {} implementation
33 impl<'a> flatbuffers::Follow<'a> for Test { implementation
40 impl<'a> flatbuffers::Follow<'a> for &'a Test { implementation
47 impl<'b> flatbuffers::Push for Test { implementation
51 let src = ::core::slice::from_raw_parts(self as *const Test as *const u8, Self::size()); in push() constant
56 impl<'a> flatbuffers::Verifiable for Test { implementation
66 impl Serialize for Test { implementation
[all …]
/third_party/flatbuffers/tests/monster_test/my_game/example/
Dtest_generated.rs15 pub struct Test(pub [u8; 4]); struct
16 impl Default for Test { implementation
21 impl core::fmt::Debug for Test { implementation
30 impl flatbuffers::SimpleToVerifyInSlice for Test {} implementation
31 impl<'a> flatbuffers::Follow<'a> for Test { implementation
38 impl<'a> flatbuffers::Follow<'a> for &'a Test { implementation
45 impl<'b> flatbuffers::Push for Test { implementation
49 let src = ::core::slice::from_raw_parts(self as *const Test as *const u8, Self::size()); in push() constant
54 impl<'a> flatbuffers::Verifiable for Test { implementation
64 impl<'a> Test { implementation
[all …]
/third_party/rust/rust/tests/rustdoc/intra-doc/
Dcrate-relative.rs1 pub struct Test<'a> { struct
5 impl<'a> Test<'a> { impl

12345678910>>...24