Searched refs:A1 (Results 1 - 25 of 251) sorted by relevance

1234567891011

/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dconstexpr-object1.C9 struct A1 { int i; }; // { dg-message "no user-provided default constructor" } struct
12 constexpr A1 a1 = A1();
18 constexpr A1 a2; // { dg-error "uninitialized const" }
20 const constexpr A1 a3 = A1();
22 volatile constexpr A1 a4 = A1(); // { dg-bogus "both .volatile. and .constexpr. cannot" }
H A Dvariadic85.C4 template<typename...> struct A1;
5 template<template<int, int...> class T> struct A1<T<0, 1> > {}; struct
7 A1<B1<0, 1> > a1;
9 A1<B2<0, 1> > a2; // { dg-error "incomplete type" }
H A Dconstexpr-diag4.C15 struct A1 struct
18 ~A1();
23 A1 a1;
H A Dinitlist56.C11 struct A1 { int a[2]; A1(); }; struct
12 A1::A1():a({1, 2}) { } // { dg-error "" } function in class:A1
H A Dvariadic128.C5 struct A1 { struct
15 g2<A1>();
H A Dauto3.C18 A<int> A1; variable
20 A<auto> A2 = A1; // { dg-error "" }
H A Dnsdmi10.C4 struct A1 { struct
9 A1(const B1& opts = B1()) {} // { dg-error "constructor" } function in struct:A1
H A Dforw_enum11.C12 enum T::E2 : int { A1 = A, A2 = 23 };
14 static_assert(int(T::A1) == 1, "error");
19 static_assert(int(T::A1) == 1, "error");
21 static_assert(int(A1) == 1, "error");
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/parse/
H A Dtemplate15.C6 struct A1 { A1(); }; struct
13 A1();
14 A1 a1 = A1();
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr39999.c3 MMAPGCD (int *A1, int *A2) argument
9 t = A1;
10 A1 = A2;
15 foo (A1-1);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Dstrlen1.C1 template <typename A1>
2 void monk2 (A1) {}
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dlookup20.C4 struct A { struct A1 { }; }; struct in struct:A
10 struct C: public B::Q::A1 { };
/haiku-buildtools/binutils/gas/testsuite/gas/bfin/
H A Dexpected_move_errors.s3 R0.L = A1;
5 R0 = A1;
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/bfin/
H A Dexpected_move_errors.s3 R0.L = A1;
5 R0 = A1;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lookup/
H A Dconv-2.C8 struct A1 struct
13 struct A2 : A1
H A Dconv-1.C8 struct A1 struct
10 operator int () const; // { dg-message "A1::operator" "" }
18 struct B : A1, A2
H A Dconv-3.C8 template <typename T> struct A1 struct
13 struct A2 : A1<int>
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dexplicit1.C2 struct A1 { struct
3 explicit A1(int) { } function in struct:A1
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/gomp/appendix-a/
H A Da.1.1.f902 SUBROUTINE A1(N, A, B) subroutine
10 END SUBROUTINE A1
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dmin_max_optional_1.f9014 INTEGER FUNCTION M1(A1,A2,A3,A4)
15 INTEGER :: A1,A2 local in function:M1
17 M1=MAX(A1,A2,A3,A4)
H A Dreshape_pad_1.f908 integer(kind=1) :: A1(N,N) variable in program:main
16 A1(1:N,1:N)=reshape(A1(1:0,1),(/N,N/),b1)
17 write(unit=line,fmt='(100i1)') A1
/haiku-buildtools/binutils/ld/testsuite/ld-mn10300/
H A Di135409-1.s9 mov L001,A1
12 mov L001,A1
19 mov L001,A1
21 mov L001,A1
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dm4.C3 struct A1 { struct B { B(); } b; }; struct
/haiku-buildtools/gcc/libstdc++-v3/testsuite/26_numerics/inner_product/
H A D1.cc23 int A1[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; variable
25 const int NA = sizeof(A1) / sizeof(int);
36 int res = std::inner_product(A1, A1 + NA, A2, 31);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/inherit/
H A Daccess8.C7 class A1 class in class:A
17 A::A1; // { dg-warning "deprecated" } member in class:B::A
24 B::A1 a1;

Completed in 142 milliseconds

1234567891011