OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Aggr
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.aggr/
p1-0x.cpp
5
struct
Aggr
{
12
bool &br; // expected-note {{default constructor of '
Aggr
' is implicitly deleted because field 'br' of reference type 'bool &' would not be initialized}}
15
Aggr
ag = { b };
56
struct NonAggr5 :
Aggr
{ // expected-note 3 {{candidate constructor}}
60
struct MaybeAggr5a : BaseList... {}; // expected-note {{default constructor of 'MaybeAggr5a<
Aggr
>' is implicitly deleted because base class '
Aggr
' has a deleted default constructor}}
62
MaybeAggr5a<
Aggr
> ma5a1 = {}; // expected-error {{call to implicitly-deleted default constructor of 'MaybeAggr5a<
Aggr
>'}}
/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/llvm/lib/Transforms/Scalar/
SCCP.cpp
786
Value *
Aggr
= IVI.getAggregateOperand();
793
LatticeVal EltVal = getStructValueState(
Aggr
, i);
[
all
...]
Completed in 2279 milliseconds