HomeSort by relevance Sort by last modified time
    Searched refs:Aggr (Results 1 - 5 of 5) sorted by null

  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/
p1.cpp 6 struct Aggr {
16 Aggr ag = { b };
57 struct NonAggr5 : Aggr {
67 MaybeAggr5a<Aggr> ma5a1 = {}; // ok in C++17
71 // expected-error@-4 {{call to implicitly-deleted default constructor of 'MaybeAggr5a<Aggr>'}}
72 // expected-note@-7 {{default constructor of 'MaybeAggr5a<Aggr>' is implicitly deleted because base class 'Aggr' has a deleted default constructor}}
73 // expected-note@13 {{default constructor of 'Aggr' is implicitly deleted because field 'br' of reference type 'bool &' would not be initialized}}
81 struct NonAggr5b : virtual Aggr {}; // expected-note 3{{candidate}}
85 struct NonAggr5d : protected Aggr {}; // expected-note 3{{candidate}
    [all...]
  /external/clang/test/SemaCXX/
cxx0x-initializer-aggregates.cpp 104 struct Aggr {
110 Aggr ok1 { {}, {0} , {0,0} };
111 Aggr ok2 = { {}, {0} , {0,0} };
112 Aggr too_many { {0} , {0} , {0,0} }; // expected-error {{no matching constructor for initialization}}
113 Aggr too_few { {} , {0} , {0} }; // expected-error {{no matching constructor for initialization}}
114 Aggr invalid { {} , {&ok1} , {0,0} }; // expected-error {{no matching constructor for initialization}}
  /external/clang/test/CXX/drs/
dr15xx.cpp 193 struct Aggr { int i; int j; };
194 template<int N> int k(Aggr const(&)[N]); //expected-note{{not viable}}
202 int X1 = n({{1},{2},{3}},Aggr()); // OK, T is Aggr, N is 3
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp 818 Value *Aggr = IVI.getAggregateOperand();
825 LatticeVal EltVal = getStructValueState(Aggr, i);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
SCCP.cpp 850 Value *Aggr = IVI.getAggregateOperand();
857 LatticeVal EltVal = getStructValueState(Aggr, i);
    [all...]

Completed in 627 milliseconds