Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:foo

3 struct foo {
5 foo();
6 foo(int);
7 foo(int, int);
8 foo(bool);
9 foo(char);
10 foo(const float*);
11 foo(const float&);
12 foo(void*);
16 foo::foo (int i) : i(i) {
19 foo::foo () : foo(-1) {
22 foo::foo (int, int) : foo() {
25 foo::foo (bool) : foo(true) { // expected-error{{creates a delegation cycle}}
29 foo::foo (const float* f) : foo(*f) { // expected-note{{it delegates to}}
32 foo::foo (const float &f) : foo(&f) { //expected-error{{creates a delegation cycle}} \
36 foo::foo (char) :
38 foo(3) { // expected-error{{must appear alone}}
42 foo::foo (void*) : foo(4.0f) {