Searched refs:IFP (Results 1 – 3 of 3) sorted by relevance
4 int (^IFP) (); variable10 int (^PFR) (int) = IFP; // OK in main()13 int (^IFP) () = PFR; // OK in main() local16 …const int (^CIC) () = IFP; // OK - initializing 'const int (^)()' with an expression of type 'int… in main()44 int (^IFP) (float); in blah() local47 IFP(1.0); in blah()48 IFP (1.0, 2.0); // expected-error {{too many arguments to block call}} in blah()
4 int (^IFP) (); variable13 if (PFR == IFP) // OK in test1()16 if (PFR == (int (^) (int))IFP) // OK in test1()28 return PFR != IFP; // OK in test1()
4 int (^IFP) (); variable10 …int (^PFR) (int) = IFP; // expected-error {{cannot initialize a variable of type 'int (^)(int)' wi… in main()13 int (^IFP) () = PFR; // OK in main() local16 …const int (^CIC) () = IFP; // OK - initializing 'const int (^)()' with an expression of type 'int… in main()44 int (^IFP) (float); in blah() local47 IFP(1.0); in blah()48 IFP (1.0, 2.0); // expected-error {{too many arguments to block call}} in blah()