Lines Matching refs:Invocation
22 void foo(NSInvocation *Invocation) {
38 [Invocation getArgument:&Arg2 atIndex:2];
39 [Invocation getArgument:&IntVar atIndex:2];
41 [Invocation getArgument:&Arg3 atIndex:3];
44 [Invocation getArgument:&Arg4 atIndex:4];
47 [Invocation getArgument:&Arg5 atIndex:5];
50 [Invocation getArgument:&BlockArg1 atIndex:6];
53 [Invocation getArgument:&BlockArg2 atIndex:6];
55 [Invocation getReturnValue:&ReturnValue];
58 [Invocation getArgument:(void *)0 atIndex:6];
60 [Invocation getArgument:&Bar.Field1 atIndex:2];
61 [Invocation getArgument:&Bar.Field2 atIndex:2];
63 [Invocation getArgument:&Bar.IntField atIndex:2];
82 - (void)processInvocation:(NSInvocation *)Invocation {
83 [Invocation getArgument:&Argument1 atIndex:2];
85 [Invocation getArgument:&self->Argument1 atIndex:2];
87 [Invocation getArgument:&Argument2 atIndex:2];
88 [Invocation getArgument:&self->Argument2 atIndex:2];
89 [Invocation getArgument:&self->IntIvar atIndex:2];
91 [Invocation getReturnValue:&(self->Bar.Field1)];
92 [Invocation getReturnValue:&(self->Bar.Field2)];
94 [Invocation getReturnValue:&(self->Bar.IntField)];
99 void baz(NSInvocation *Invocation, TestClass *Obj) {
100 [Invocation getArgument:&Obj->Argument1 atIndex:2];
102 [Invocation getArgument:&Obj->Argument2 atIndex:2];