Searched refs:Statics (Results 1 – 5 of 5) sorted by relevance
86 struct Statics { struct102 char Statics::a = 'a'; argument103 bool Statics::b = true;104 short Statics::c = 1234;107 int Statics::f = 4567;109 long Statics::h = 6789;124 int *h = &Statics::f;135 char &a = Statics::a;136 bool &b = Statics::b;140 int &f = Statics::f;[all …]
9 struct Statics { struct29 …int (*E)(void *) = &Statics::Foo; //expected-error{{cannot take address of function 'Foo' because … in Decls()30 …int (*F)(void *) = &Statics::OvlFoo; //expected-error{{address of overloaded function 'OvlFoo' doe… in Decls()44 …A = &Statics::Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has… in Assigns()45 …A = &Statics::OvlFoo; //expected-error{{assigning to 'int (*)(void *)' from incompatible type '<ov… in Assigns()
26 class Statics { static int priv; static NonPOD np; }; class218 { int arr[T(__is_pod(Statics))]; } in is_pod()554 static_assert(__is_aggregate(Statics), ""); in is_aggregate()2066 { int arr[T(__is_trivial(Statics))]; } in is_trivial()2113 { int arr[T(__is_trivially_copyable(Statics))]; } in trivial_checks()
181 class Statics { class209 S Statics::s;213 T Statics::t;214 U Statics::u;218 V Statics::v("v");222 W Statics::w;
108 Statics:return;