/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/ |
D | p1.cpp | 6 struct Aggr { struct 16 Aggr ag = { b }; argument 57 struct NonAggr5 : Aggr { 67 MaybeAggr5a<Aggr> ma5a1 = {}; // ok in C++17 81 struct NonAggr5b : virtual Aggr {}; // expected-note 3{{candidate}} 85 struct NonAggr5d : protected Aggr {}; // expected-note 3{{candidate}} 87 struct NonAggr5e : private Aggr {}; // expected-note 3{{candidate}} 89 class NonAggr5f : Aggr {}; // expected-note 3{{candidate}}
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | new-array-init.cpp | 95 struct Aggr { int a, b; }; in aggr_exact() argument 96 new Aggr[2] { 1, 2, 3 }; in aggr_exact() 117 struct Aggr { int a, b; }; in aggr_sufficient() argument 118 new Aggr[n] { 1, 2, 3 }; in aggr_sufficient() 129 struct Aggr { int x, y, z; }; in unknown_bound() argument 130 new Aggr[]{1, 2, 3, 4}; in unknown_bound()
|
/external/llvm-project/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/ |
D | p1.cpp | 6 struct Aggr { struct 16 Aggr ag = { b }; argument 57 struct NonAggr5 : Aggr { 67 MaybeAggr5a<Aggr> ma5a1 = {}; // ok in C++17 81 struct NonAggr5b : virtual Aggr {}; // expected-note 3{{candidate}} 85 struct NonAggr5d : protected Aggr {}; // expected-note 3{{candidate}} 87 struct NonAggr5e : private Aggr {}; // expected-note 3{{candidate}} 89 class NonAggr5f : Aggr {}; // expected-note 3{{candidate}}
|
/external/clang/test/SemaCXX/ |
D | cxx0x-initializer-aggregates.cpp | 104 struct Aggr { struct 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 initializatio… 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 initializati…
|
/external/llvm-project/clang/test/SemaCXX/ |
D | cxx0x-initializer-aggregates.cpp | 104 struct Aggr { struct 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 initializatio… 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 initializati…
|
/external/llvm-project/clang/test/CodeGenCoroutines/ |
D | coro-await.cpp | 183 struct Aggr { int X, Y, Z; ~Aggr(); }; struct 187 Aggr await_resume(); 191 extern "C" void UseAggr(Aggr&&); 211 Aggr Val = co_await AggrAwaiter{}; in TestAggr()
|
/external/clang/test/CXX/drs/ |
D | dr15xx.cpp | 193 struct Aggr { int i; int j; }; argument 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-project/clang/test/CXX/drs/ |
D | dr15xx.cpp | 439 struct Aggr { int i; int j; }; argument 440 template<int N> int k(Aggr const(&)[N]); //expected-note{{not viable}} 448 int X1 = n({{1},{2},{3}},Aggr()); // OK, T is Aggr, N is 3
|
/external/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 818 Value *Aggr = IVI.getAggregateOperand(); in visitInsertValueInst() local 825 LatticeVal EltVal = getStructValueState(Aggr, i); in visitInsertValueInst()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 919 Value *Aggr = IVI.getAggregateOperand(); in visitInsertValueInst() local 926 LatticeVal EltVal = getStructValueState(Aggr, i); in visitInsertValueInst()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | SCCP.cpp | 904 Value *Aggr = IVI.getAggregateOperand(); in visitInsertValueInst() local 911 ValueLatticeElement EltVal = getStructValueState(Aggr, i); in visitInsertValueInst()
|