Lines Matching refs:method
6 - (int*)method; method
10 - (int*)method { method
12 [x method]; // expected-error{{receiver type 'x' is not an Objective-C class}}
22 - (int*)method; method
23 + (void)method; class
35 - (int*)method { method
36 [ivar method];
39 [I2_holder().get() method];
40 [I2_holder().get() + 17 method];
43 + (void)method { class
44 [ivar method]; // expected-error{{receiver type 'ivar' is not an Objective-C class}}
50 + (int*)method; class
68 return [typename identity<I3>::type method];
73 return [::I3 method];
76 int* ip1 = {[super method]};
77 int* ip2 = {[::I3 method]};
78 int* ip3 = {[typename identity<I3>::type method]};
83 int* ip4 = {[typename identity<I2_holder>::type().get() method]};
88 return [super method];
100 - method:(const String&)str1
105 [i5 method:"hello" other:s];
106 …[i5 method:s other:"world"]; // expected-error{{non-const lvalue reference to type 'String' cannot…