Lines Matching refs:method
3 - (int*)method; method
7 - (int*)method { method
9 [x method]; // expected-error{{receiver type 'x' is not an Objective-C class}}
19 - (int*)method; method
20 + (void)method; class
32 - (int*)method { method
33 [ivar method];
36 [I2_holder().get() method];
37 [I2_holder().get() + 17 method];
40 + (void)method { class
41 [ivar method]; // expected-error{{receiver type 'ivar' is not an Objective-C class}}
47 + (int*)method; class
65 … return [typename identity<I3>::type method]; // expected-warning{{occurs outside of a template}}
67 return [::I3 method];
70 int* ip1 = {[super method]};
71 int* ip2 = {[::I3 method]};
72 …int* ip3 = {[typename identity<I3>::type method]}; // expected-warning{{occurs outside of a templa…
73 …int* ip4 = {[typename identity<I2_holder>::type().get() method]}; // expected-warning{{occurs outs…
75 return [super method];
87 - method:(const String&)str1
92 [i5 method:"hello" other:s];
93 …[i5 method:s other:"world"]; // expected-error{{non-const lvalue reference to type 'String' cannot…