Home
last modified time | relevance | path

Searched defs:s1 (Results 1 – 25 of 1848) sorted by relevance

12345678910>>...74

/external/llvm-project/flang/test/Semantics/
Dresolve69.f902 subroutine s1() subroutine
13 integer, parameter :: constVal = 1
14 integer :: nonConstVal = 1
16 character(nonConstVal) :: colonString1
17 character(len=20, kind=constVal + 1) :: constKindString
18 character(len=:, kind=constVal + 1), pointer :: constKindString1
20 character(len=:, kind=constVal + 1) :: constKindString2
22 character(len=20, kind=nonConstVal) :: nonConstKindString
24 character(len=:) :: deferredString
26 character(:) :: colonString2
[all …]
Ddata06.f903 subroutine s1 subroutine
4 type :: t1
7 type(t1) :: t1x
10 integer :: ja = 888
13 integer :: a1(10)
16 integer :: a2(10)
19 integer :: a3(2)
22 integer :: a4(3)
25 interface
30 real, pointer :: rp
[all …]
Dresolve94.f907 subroutine s1() subroutine
9 type(team_type) :: team1, team2
10 real :: rCoarray[10,20,*]
11 real :: rVar1, rVar2
12 integer :: iVar1, iVar2
13 integer, dimension(4) :: intArray
14 integer :: intScalarCoarray[*]
15 integer :: intCoarray[3, 4, *]
16 integer :: smallIntCoarray[4, *]
Ddosemantics05.f9013 subroutine s1() subroutine
15 integer :: i, ivar, jvar, kvar
16 real :: x local
18 type point
22 type, extends(point) :: color_point
26 type(point), target :: c local
27 class(point), pointer :: p_or_c
Dresolve97.f9010 subroutine s1 subroutine
12 integer(kind=kind(m1j1)) :: t_s1m1j1 argument
13 integer(kind=kind(m1s1j1)) :: t_s1j1 ! implicitly typed in s1 argument
14 integer :: m1j1, m1s1j1, m1s1j2, m1s1j4 argument
21 integer(kind=kind(m1s1j3)) :: t_m1s1j3 ! m1s1j3 implicitly typed in s1 argument
28 !ERROR: Forward reference to 'm1s1j3' is not allowed in the same specification part argument
50 subroutine s1 subroutine
52 integer(kind=kind(m2j1)) :: t_s1m2j1 argument
54 integer(kind=kind(m2s1j1)) :: t_s1j1 argument
55 integer :: m2j1, m2s1j1, m2s1j2, m2s1j4 argument
[all …]
Dresolve21.f902 subroutine s1 subroutine
5 integer :: s1 component
19 !ERROR: 's1' is an invalid base for a component reference argument
Dsymbol12.f905 subroutine s1 subroutine
11 !REF: /s1/d argument
27 integer e, f local
Dresolve64.f907 subroutine s1(x, y, z) subroutine
8 logical :: x local
9 real :: y, z local
37 subroutine s1(x, y, z) subroutine
38 logical :: x local
39 complex :: y, z local
Ddeallocate06.f909 subroutine s1() subroutine
11 complex, pointer :: c(:)
12 complex, allocatable :: d(:)
13 complex :: e(10)
17 subroutine s2()
Doffsets01.f904 subroutine s1 subroutine
5 integer(1) :: a_i1 !CHECK: a_i1 size=1 offset=0:
6 integer(8) :: b_i8 !CHECK: b_i8 size=8 offset=8:
7 real(2) :: c_r2 !CHECK: c_r2 size=2 offset=16:
8 real(2) :: d_r2 !CHECK: d_r2 size=2 offset=18:
9 real(8) :: e_r8 !CHECK: e_r8 size=8 offset=24:
10 real(4) :: f_r4 !CHECK: f_r4 size=4 offset=32:
11 complex(8) :: g_c8 !CHECK: g_c8 size=16 offset=40:
12 complex(4) :: h_c4 !CHECK: h_c4 size=8 offset=56:
13 logical :: i_l4 !CHECK: i_l4 size=4 offset=64:
/external/clang/test/SemaObjC/
Dformat-arg-attribute.m12 struct s1 { int i; } __attribute__((format_arg(1))); // expected-warning {{'format_arg' attribute … struct
13 …t_arg(1))); // expected-warning {{'format_arg' attribute only applies to non-K&R-style functions}}
14 …at_arg(1))); // expected-warning {{'format_arg' attribute only applies to non-K&R-style functions}}
16 extern NSString *ff3 (const NSString *) __attribute__((format_arg(3-2)));
17 …tring *) __attribute__((format_arg(foo))); // expected-error {{use of undeclared identifier 'foo'}}
20 …*fi0 (int) __attribute__((format_arg(1))); // expected-error {{format argument not a string type}}
21 extern NSString *fi1 (NSString *) __attribute__((format_arg(1)));
23 extern NSString *fi2 (NSString *) __attribute__((format_arg(1)));
25 …SString *) __attribute__((format_arg(1))); // expected-error {{function does not return NSString}}
26 extern NSString *fi4 (const NSString *) __attribute__((format_arg(1)));
[all …]
/external/llvm-project/clang/test/SemaObjC/
Dformat-arg-attribute.m12 struct s1 { int i; } __attribute__((format_arg(1))); // expected-warning {{'format_arg' attribute … argument
13 …; } __attribute__((format_arg(1))); // expected-warning {{'format_arg' attribute only applies to}}
14 …V0 } __attribute__((format_arg(1))); // expected-warning {{'format_arg' attribute only applies to}}
16 extern NSString *ff3 (const NSString *) __attribute__((format_arg(3-2)));
17 …tring *) __attribute__((format_arg(foo))); // expected-error {{use of undeclared identifier 'foo'}}
20 …*fi0 (int) __attribute__((format_arg(1))); // expected-error {{format argument not a string type}}
21 extern NSString *fi1 (NSString *) __attribute__((format_arg(1)));
23 extern NSString *fi2 (NSString *) __attribute__((format_arg(1)));
25 …SString *) __attribute__((format_arg(1))); // expected-error {{function does not return NSString}}
26 extern NSString *fi4 (const NSString *) __attribute__((format_arg(1)));
[all …]
/external/libcxx/test/std/utilities/time/time.duration/time.duration.comparisons/
Dop_less.pass.cpp42 std::chrono::seconds s1(3); in main() local
50 std::chrono::seconds s1(3); in main() local
58 std::chrono::milliseconds s1(3); in main() local
66 std::chrono::milliseconds s1(3); in main() local
74 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
82 std::chrono::duration<int, std::ratio<2, 3> > s1(10); in main() local
90 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
99 constexpr std::chrono::seconds s1(3); in main() local
107 constexpr std::chrono::seconds s1(3); in main() local
115 constexpr std::chrono::milliseconds s1(3); in main() local
[all …]
Dop_equal.pass.cpp32 std::chrono::seconds s1(3); in main() local
38 std::chrono::seconds s1(3); in main() local
44 std::chrono::milliseconds s1(3); in main() local
50 std::chrono::milliseconds s1(3); in main() local
56 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
62 std::chrono::duration<int, std::ratio<2, 3> > s1(10); in main() local
68 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
75 constexpr std::chrono::seconds s1(3); in main() local
81 constexpr std::chrono::seconds s1(3); in main() local
87 constexpr std::chrono::milliseconds s1(3); in main() local
[all …]
/external/llvm-project/libcxx/test/std/utilities/time/time.duration/time.duration.comparisons/
Dop_less.pass.cpp41 std::chrono::seconds s1(3); in main() local
49 std::chrono::seconds s1(3); in main() local
57 std::chrono::milliseconds s1(3); in main() local
65 std::chrono::milliseconds s1(3); in main() local
73 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
81 std::chrono::duration<int, std::ratio<2, 3> > s1(10); in main() local
89 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
98 constexpr std::chrono::seconds s1(3); in main() local
106 constexpr std::chrono::seconds s1(3); in main() local
114 constexpr std::chrono::milliseconds s1(3); in main() local
[all …]
Dop_equal.pass.cpp31 std::chrono::seconds s1(3); in main() local
37 std::chrono::seconds s1(3); in main() local
43 std::chrono::milliseconds s1(3); in main() local
49 std::chrono::milliseconds s1(3); in main() local
55 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
61 std::chrono::duration<int, std::ratio<2, 3> > s1(10); in main() local
67 std::chrono::duration<int, std::ratio<2, 3> > s1(9); in main() local
74 constexpr std::chrono::seconds s1(3); in main() local
80 constexpr std::chrono::seconds s1(3); in main() local
86 constexpr std::chrono::milliseconds s1(3); in main() local
[all …]
/external/libcxx/test/std/utilities/time/time.duration/time.duration.nonmember/
Dop_-.pass.cpp27 std::chrono::seconds s1(3); in main() local
33 std::chrono::seconds s1(3); in main() local
39 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
45 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
52 constexpr std::chrono::seconds s1(3); in main() local
58 constexpr std::chrono::seconds s1(3); in main() local
64 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
70 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
Dop_+.pass.cpp26 std::chrono::seconds s1(3); in main() local
32 std::chrono::seconds s1(3); in main() local
38 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
44 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
51 constexpr std::chrono::seconds s1(3); in main() local
57 constexpr std::chrono::seconds s1(3); in main() local
63 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
69 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
/external/llvm-project/libcxx/test/std/utilities/time/time.duration/time.duration.nonmember/
Dop_-.pass.cpp26 std::chrono::seconds s1(3); in main() local
32 std::chrono::seconds s1(3); in main() local
38 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
44 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
51 constexpr std::chrono::seconds s1(3); in main() local
57 constexpr std::chrono::seconds s1(3); in main() local
63 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
69 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
Dop_+.pass.cpp25 std::chrono::seconds s1(3); in main() local
31 std::chrono::seconds s1(3); in main() local
37 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
43 std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
50 constexpr std::chrono::seconds s1(3); in main() local
56 constexpr std::chrono::seconds s1(3); in main() local
62 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
68 constexpr std::chrono::duration<int, std::ratio<2, 3> > s1(3); in main() local
/external/libcxx/test/std/strings/basic.string/string.cons/
Dstring_view_size_size_deduction.pass.cpp50 std::basic_string s1{sv, 0, 4}; in main() local
61 std::basic_string s1{sv, 0, 4, std::allocator<char>{}}; in main() local
71 std::basic_string s1{sv, 0, 4, test_allocator<wchar_t>{}}; in main() local
82 std::basic_string s1{sv, 0, 4, min_allocator<char8_t>{}}; in main() local
93 std::basic_string s1{sv, 0, 4, min_allocator<char16_t>{}}; in main() local
103 std::basic_string s1{sv, 0, 4, explicit_allocator<char32_t>{}}; in main() local
Dstring_view_deduction.pass.cpp46 std::basic_string s1(sv); in main() local
57 std::basic_string s1{sv, std::allocator<char>{}}; in main() local
67 std::basic_string s1{sv, test_allocator<wchar_t>{}}; in main() local
78 std::basic_string s1{sv, min_allocator<char8_t>{}}; in main() local
89 std::basic_string s1{sv, min_allocator<char16_t>{}}; in main() local
99 std::basic_string s1{sv, explicit_allocator<char32_t>{}}; in main() local
/external/llvm-project/libcxx/test/std/strings/basic.string/string.cons/
Dstring_view_size_size_deduction.pass.cpp49 std::basic_string s1{sv, 0, 4}; in main() local
60 std::basic_string s1{sv, 0, 4, std::allocator<char>{}}; in main() local
70 std::basic_string s1{sv, 0, 4, test_allocator<wchar_t>{}}; in main() local
81 std::basic_string s1{sv, 0, 4, min_allocator<char8_t>{}}; in main() local
92 std::basic_string s1{sv, 0, 4, min_allocator<char16_t>{}}; in main() local
102 std::basic_string s1{sv, 0, 4, explicit_allocator<char32_t>{}}; in main() local
Dstring_view_deduction.pass.cpp45 std::basic_string s1(sv); in main() local
56 std::basic_string s1{sv, std::allocator<char>{}}; in main() local
66 std::basic_string s1{sv, test_allocator<wchar_t>{}}; in main() local
77 std::basic_string s1{sv, min_allocator<char8_t>{}}; in main() local
88 std::basic_string s1{sv, min_allocator<char16_t>{}}; in main() local
98 std::basic_string s1{sv, explicit_allocator<char32_t>{}}; in main() local
/external/libcxx/test/std/containers/views/span.cons/
Dstdarray.pass.cpp45 std::span< int> s1{ arr}; // a span< int> pointing at int. in checkCV() local
50 std::span< int,3> s1{ arr}; // a span< int> pointing at int. in checkCV() local
56 std::span<const int> s1{ arr}; // a span<const int> pointing at int. in checkCV() local
64 std::span<const int,3> s1{ arr}; // a span<const int> pointing at int. in checkCV() local
78 std::span<const T> s1{val}; in testConstexprSpan() local
92 std::span<T> s1{val}; in testRuntimeSpan() local

12345678910>>...74