Lines Matching +defs:m +defs:B
33 struct B : virtual A, Aa {}; struct
350 struct B { A &&a1; A &&a2; }; struct
378 struct B { A &&a; }; struct
595 constexpr int m = this->g(); // ok, could be constexpr in f() local
607 struct B { int n; int m; } constexpr b = { 0, b.n }; argument
610 int m, n; member
711 struct B { struct
712 constexpr B(int n) : a(n) {} in B() argument
713 int a;
927 struct B : A { struct
928 constexpr B(int n, int m) : A(n), m(m) {} in B() argument
929 int m; member
930 constexpr int g() const { return n + m + 1; } in g()
954 int m, n; member
983 template<> struct T<30> : T<29> { int m; }; member
1133 struct B { B(); A& x; }; struct
1134 …pected-error {{constant expression}} expected-note {{non-literal type 'PR11595::B' cannot be used …
1171 …int m : t.n; // expected-error {{constant expression}} expected-note {{read of non-constexpr varia… member
1269 int &m = const_cast<int&>(k); variable
1335 constexpr MM m = { 0 }; in f() local
1341 struct B { mutable A a; }; // expected-note {{here}} struct
1397 constexpr int m = fold((int)(char*)123); // ok variable
1563 int m; member
1590 int m; variable
1798 …constexpr int m = m; // expected-error {{constant expression}} expected-note {{read of object outs… in f() local
1828 struct B { struct
1829 int n : 3;
1830 constexpr B(int k) : n(k) {} in B() argument
1873 struct B { // expected-note 2{{candidate}} struct
1874 constexpr B( // expected-error {{must initialize all members}} expected-note {{candidate}} in B() argument
1877 int k; // expected-note {{not initialized}}
2036 struct B : A { int n; using A::A; }; // expected-note {{here}} struct
2039 …struct C : A { using A::A; struct { union { int n, m = 0; }; union { int a = 0; }; int k = 0; }; s… member