/external/llvm-project/flang/test/Semantics/ |
D | resolve30.f90 | 32 subroutine s4 subroutine 33 real :: i, j local 35 real :: a(16) = [(i, i=1, 16)] 36 real :: b(16)
|
D | coarrays01.f90 | 65 subroutine s4 subroutine 67 complex :: z local 68 integer :: i, j(10) 69 type(team_type) :: t, t2(2)
|
D | resolve35.f90 | 32 subroutine s4 subroutine 33 real :: a(10), b(10) 34 complex :: x local 35 integer :: i(2)
|
D | resolve07.f90 | 29 subroutine s4 subroutine 30 integer, dimension(10) :: x(2,2), y local
|
D | resolve93.f90 | 31 subroutine s4() subroutine 38 end subroutine s4 argument
|
D | label14.f90 | 34 subroutine s4 subroutine 38 10 end block 39 20 end block
|
D | offsets01.f90 | 31 subroutine s4 subroutine 32 integer, allocatable :: z0 !CHECK: z0, ALLOCATABLE size=24 offset= 33 integer, allocatable :: z1(:) !CHECK: z1, ALLOCATABLE size=48 offset= 34 integer, allocatable :: z2(:,:) !CHECK: z2, ALLOCATABLE size=72 offset= 35 integer, allocatable :: z3(:,:,:) !CHECK: z3, ALLOCATABLE size=96 offset=
|
D | symbol11.f90 | 87 subroutine s4 subroutine 90 !DEF: /s4/t1/a ObjectEntity REAL(4) argument 95 !REF: /s4/t1 argument 102 !DEF: /s4/Block1/y AssocEntity TYPE(t1) argument
|
/external/libcxx/test/std/containers/views/span.cons/ |
D | span.fail.cpp | 46 …std::span<const int> s4{ vsp}; // expected-error {{no matching constructor for initializa… in checkCV() local 59 …std::span<const int, 0> s4{ vsp0}; // expected-error {{no matching constructor for initia… in checkCV() local 72 …std::span<const int> s4{ vsp0}; // expected-error {{no matching constructor for initializ… in checkCV() local 85 …std::span<const int, 0> s4{ vsp}; // expected-error {{no matching constructor for initial… in checkCV() local 101 …std::span<float, 0> s4{sp0}; // expected-error {{no matching constructor for initialization of … in main() local
|
D | ptr_ptr.pass.cpp | 37 …std::span<const volatile int> s4{cvarr, cvarr + 3}; // a span<const volatile int> pointing at cons… in checkCV() local 46 …std::span<const volatile int,3> s4{cvarr, cvarr + 3}; // a span<const volatile int> pointing at … in checkCV() local 56 …std::span<const volatile int> s4{ arr, arr + 3}; // a span<const volatile int> pointing at … in checkCV() local 67 … std::span<const volatile int,3> s4{ arr, arr + 3}; // a span<const volatile int> pointing at int. in checkCV() local
|
D | array.pass.cpp | 42 …std::span<const volatile int> s4{cvarr}; // a span<const volatile int> pointing at const volati… in checkCV() local 51 …std::span<const volatile int,3> s4{cvarr}; // a span<const volatile int> pointing at const volati… in checkCV() local 61 std::span<const volatile int> s4{ arr}; // a span<const volatile int> pointing at int. in checkCV() local 72 std::span<const volatile int,3> s4{ arr}; // a span<const volatile int> pointing at int. in checkCV() local
|
D | ptr_len.pass.cpp | 37 …std::span<const volatile int> s4{cvarr, 3}; // a span<const volatile int> pointing at const volati… in checkCV() local 46 …std::span<const volatile int,3> s4{cvarr, 3}; // a span<const volatile int> pointing at const vo… in checkCV() local 56 std::span<const volatile int> s4{ arr, 3}; // a span<const volatile int> pointing at int. in checkCV() local 67 std::span<const volatile int,3> s4{ arr, 3}; // a span<const volatile int> pointing at int. in checkCV() local
|
D | span.pass.cpp | 45 … std::span<const volatile int> s4{ vsp}; // a span<const volatile int> pointing at volatile int. in checkCV() local 54 …std::span<const volatile int, 0> s4{ vsp0}; // a span<const volatile int> pointing at volatile int. in checkCV() local 63 …std::span<const volatile int> s4{ vsp0}; // a span<const volatile int> pointing at volatile int. in checkCV() local 72 …std::span<const volatile int, 0> s4{ vsp}; // a span<const volatile int> pointing at volatile int. in checkCV() local
|
/external/llvm-project/libcxx/test/std/containers/views/span.cons/ |
D | span.fail.cpp | 50 …std::span<const int> s4{ vsp}; // expected-error {{no matching constructor for initializa… in checkCV() local 63 …std::span<const int, 0> s4{ vsp0}; // expected-error {{no matching constructor for initia… in checkCV() local 76 …std::span<const int> s4{ vsp0}; // expected-error {{no matching constructor for initializ… in checkCV() local 89 …std::span<const int, 0> s4{ vsp}; // expected-error {{no matching constructor for initial… in checkCV() local 105 …std::span<float, 0> s4{sp0}; // expected-error {{no matching constructor for initialization of … in main() local
|
D | ptr_ptr.pass.cpp | 36 …std::span<const volatile int> s4{cvarr, cvarr + 3}; // a span<const volatile int> pointing at cons… in checkCV() local 45 …std::span<const volatile int,3> s4{cvarr, cvarr + 3}; // a span<const volatile int> pointing at … in checkCV() local 55 …std::span<const volatile int> s4{ arr, arr + 3}; // a span<const volatile int> pointing at … in checkCV() local 66 … std::span<const volatile int,3> s4{ arr, arr + 3}; // a span<const volatile int> pointing at int. in checkCV() local
|
D | ptr_len.pass.cpp | 36 …std::span<const volatile int> s4{cvarr, 3}; // a span<const volatile int> pointing at const volati… in checkCV() local 45 …std::span<const volatile int,3> s4{cvarr, 3}; // a span<const volatile int> pointing at const vo… in checkCV() local 55 std::span<const volatile int> s4{ arr, 3}; // a span<const volatile int> pointing at int. in checkCV() local 66 std::span<const volatile int,3> s4{ arr, 3}; // a span<const volatile int> pointing at int. in checkCV() local
|
D | array.pass.cpp | 41 …std::span<const volatile int> s4{cvarr}; // a span<const volatile int> pointing at const volati… in checkCV() local 50 …std::span<const volatile int,3> s4{cvarr}; // a span<const volatile int> pointing at const volati… in checkCV() local 60 std::span<const volatile int> s4{ arr}; // a span<const volatile int> pointing at int. in checkCV() local 71 std::span<const volatile int,3> s4{ arr}; // a span<const volatile int> pointing at int. in checkCV() local
|
D | span.pass.cpp | 44 … std::span<const volatile int> s4{ vsp}; // a span<const volatile int> pointing at volatile int. in checkCV() local 53 …std::span<const volatile int, 0> s4{ vsp0}; // a span<const volatile int> pointing at volatile int. in checkCV() local 62 …std::span<const volatile int> s4{ vsp0}; // a span<const volatile int> pointing at volatile int. in checkCV() local
|
/external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
D | btf_dump_test_case_ordering.c | 18 struct s4 *s4; member 26 struct s4 { struct 27 struct s1 s1; 51 struct s4 s4; member
|
/external/llvm-project/clang/test/Sema/ |
D | pragma-pack-5.c | 40 struct s4 { struct 45 extern int check[sizeof(struct s4) == 4 ? 1 : -1]; argument
|
D | pragma-pack-and-options-align.c | 43 struct s4 { struct 49 extern int a[sizeof(struct s4) == 8 ? 1 : -1]; argument
|
/external/clang/test/Sema/ |
D | pragma-pack-5.c | 40 struct s4 { struct 45 extern int check[sizeof(struct s4) == 4 ? 1 : -1]; argument
|
D | pragma-pack-and-options-align.c | 43 struct s4 { struct 49 extern int a[sizeof(struct s4) == 8 ? 1 : -1]; argument
|
/external/llvm-project/lld/test/ELF/ |
D | gc-sections-string.s | 72 .globl s4 symbol 73 s4: label
|
/external/clang/test/SemaCXX/ |
D | elaborated-type-specifier.cpp | 25 void X::test_elab2(S4 *s4) { } // expected-note{{passing argument to parameter 's4' here}} in test_elab2() 29 struct S4 *s4 = 0; in test_X_elab() local 38 S4 *s4; // expected-error{{unknown type name 'S4'; did you mean 'NS::S4'?}} in test_S5_scope() local
|