• Home
  • Raw
  • Download

Lines Matching refs:Foo

4 int Foo(void *const p __attribute__((pass_object_size(0))));
10 static int Foo(void *const p __attribute__((pass_object_size(0))));
17 int Foo(void *const p __attribute__((pass_object_size(0))));
23 …int (*A)(void *) = &Foo; //expected-error{{cannot take address of function 'Foo' because parameter… in Decls()
24 …int (*B)(void *) = Foo; //expected-error{{cannot take address of function 'Foo' because parameter … in Decls()
29 …int (*E)(void *) = &Statics::Foo; //expected-error{{cannot take address of function 'Foo' because … in Decls()
32 …int (*G)(void *) = &Members::Foo; //expected-error{{cannot take address of function 'Foo' because … in Decls()
38 …A = &Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_obj… in Assigns()
39 …A = Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_obje… in Assigns()
44 …A = &Statics::Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has… in Assigns()
48 …M = &Members::Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has… in Assigns()
56 int Foo(void *const __attribute__((pass_object_size(0)))) { in Foo() function
62 int Foo(void *const __attribute__((pass_object_size(0)))) { in Foo() function
68 …int (*A)(void *) = &Foo<void*>; //expected-error{{address of overloaded function 'Foo' does not ma… in Decls()
69 …int (Bar<int>::*B)(void *) = &Bar<int>::Foo<double>; //expected-error{{address of overloaded funct… in Decls()
74 …A = &Foo<void*>; // expected-error{{assigning to 'int (*)(void *)' from incompatible type '<overlo… in Assigns()
75 …int (Bar<int>::*B)(void *) = &Bar<int>::Foo<double>; //expected-error{{address of overloaded funct… in Assigns()
80 struct Foo { struct
84 struct Bar : public Foo {
88 struct Baz : public Foo {
115 void Foo(void *p __attribute__((pass_object_size(getObjSizeType()))));