Searched refs:T1 (Results 1 - 25 of 306) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lto/
H A D20101126-1_1.c1 typedef struct { int i; } T1; typedef in typeref:struct:__anon886
2 typedef T1 T2;
3 T1 a;
H A D20101126-1_0.C1 typedef struct { int i; } T1; typedef in typeref:struct:__anon885
2 typedef T1 T2;
3 extern T1 a;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/headers/utility/
H A Dsynopsis.cc32 template <class T1, class T2> struct pair;
33 template <class T1, class T2>
34 _GLIBCXX_CONSTEXPR bool operator==(const pair<T1,T2>&, const pair<T1,T2>&);
35 template <class T1, class T2>
36 _GLIBCXX_CONSTEXPR bool operator< (const pair<T1,T2>&, const pair<T1,T2>&);
37 template <class T1, class T2>
38 _GLIBCXX_CONSTEXPR bool operator!=(const pair<T1,T2>&, const pair<T1,T
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Doverload10.C3 template <typename T1, typename T2> int f(T1 *, const T2 *); // { dg-message "" }
4 template <typename T1, typename T2> int f(const T1 *, T2 *); // { dg-message "" }
H A Dstatic26.C4 template<class T1, class T2>
9 template<class T1, class T2>
10 const bool scalar_divides_assign<T1,T2>::computed = true;
H A Dmemtmpl3.C5 template<typename T1, typename T2>
17 template<typename T1>
19 : public tuple_impl<T1, null_type>::template append<T1>::type
21 using tuple_impl<T1, null_type>::template append<T1>::type::data;
H A Denum1.C3 template <int n> struct T1 { enum { N = 3 }; }; struct
4 template <int n> struct T2 { enum { N = 3, N1 = T1<N>::N }; };
H A Denum2.C3 template <int n> struct T1 { enum { N = 3 }; }; struct
4 template <int n> struct T2 { enum { N = n, N1 = T1<N>::N }; };
H A Dfunc1.C1 template <typename T1,typename T2>
2 inline void f(const T1&,const T2&) { } argument
4 template <typename T1,typename T2,void F(const T1&,const T2&)>
H A Dpartial10.C12 template <class T1, class T2> T2 fn(T1, T2);
13 template <class T1> int fn(T1) { }
H A Dpartial11.C16 template <class T1, class T2> T2 fn(T1, T2);
17 template <class T1> int fn(T1);
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dintent_out_3.f908 TYPE T1 type in module:M1
10 END TYPE T1
11 TYPE(T1), PARAMETER :: D1=T1((/1,2,3/))
H A Dprivate_type_11.f9011 TYPE T1 type in module:M1
13 END TYPE T1
18 TYPE(T1) FUNCTION F1()
21 TYPE(T1) FUNCTION F2()
H A Dprivate_type_12.f9011 TYPE T1 type in module:M1
13 END TYPE T1
18 TYPE(T1) FUNCTION F1()
21 TYPE(T1) FUNCTION F2() ! { dg-error "Fortran 2003: PUBLIC variable 'f2'" }
H A Ddata_components_1.f908 TYPE T1 type
10 END TYPE T1
12 TYPE(T1), PARAMETER :: D1=T1(2)
13 TYPE(T1) :: D2(2)
19 DATA (D2(i),i=1,D1%I) /D1%I*T1(4)/
H A Dsubref_array_pointer_4.f9012 TYPE(T), TARGET :: T1(0:3) variable in program:X
16 T1%I = [1, 2, 3, 4]
17 T1%X = SOURCE
18 P => T1%I
20 IF (ANY (T1%I .NE. [999, 2, 999, 4])) CALL ABORT
21 IF (ANY (T1%X .NE. SOURCE)) CALL ABORT
H A Dalloc_comp_assign_9.f9013 TYPE(T) :: T1,T2 variable in program:X
14 ALLOCATE ( T1%A(1) )
16 T1%A = 23
17 T2 = T1
18 T1%A = 42
H A Dautomatic_default_init_1.f908 TYPE T1 type in module:M1
10 END TYPE T1
14 TYPE(T1) :: D(1:I)
H A Dpresent_1.f908 TYPE T1 type in module:M1
10 END TYPE T1
13 TYPE(T1), OPTIONAL :: D1(4)
H A Dredefined_intrinsic_assignment.f9010 MODULE PROCEDURE T1
13 SUBROUTINE T1(I,J) ! { dg-error "redefine an INTRINSIC type assignment" } subroutine in module:M1
17 END SUBROUTINE T1
H A Dimpure_assignment_1.f905 TYPE T1 type in module:M1
7 END TYPE T1
13 TYPE(T1), INTENT(OUT):: I
14 TYPE(T1), INTENT(IN) :: J
22 TYPE(T1), INTENT(OUT):: I
23 TYPE(T1), INTENT(IN) :: J
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dinit-1.c5 } T1; typedef in typeref:struct:__anon1512
13 T1 a[] =
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dunify3.C3 template <class T1, class T2>
8 template<class T1>
9 struct ComputeBinaryType<T1, double> {
13 template<class T1>
14 struct ComputeBinaryType<T1&, double> {
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/headers/tuple/
H A Dsynopsis.cc29 template <class T1 = unspecified ,
36 template<class T1, class T2, ..., class TN>
37 tuple<V1, V2, ..., VN> make_tuple(const T1&, const T2& , ..., const TN&);
39 template<class T1, class T2, ..., class TN>
40 tuple<T1&, T2&, ..., TN&> tie(T1&, T2& , ..., TN&);
49 template <int I, class T1, class T2, ..., class TN>
50 RJ get(tuple<T1, T2, ..., TN>&);
51 template <int I, class T1, class T2, ..., class TN>
52 PJ get(const tuple<T1, T
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tree-ssa/
H A Dpr21407.C4 struct T1 {int a, b; virtual void f(){}}; struct
5 struct T : T1 { struct T1 w; int b; };
6 void foo (struct T1 *p) { struct T *q = dynamic_cast<T*>(p); if (q->b != 2) abort (); }

Completed in 213 milliseconds

1234567891011>>