Home
last modified time | relevance | path

Searched refs:my_method (Results 1 – 9 of 9) sorted by relevance

/external/clang/test/Index/Inputs/
Dt1.m6 [base my_method:x];
7 [Base my_method:x];
15 -(void) my_method: (int)param {
18 +(void) my_method: (int)param {
Dobjc.h5 -(void) my_method: (int)param;
6 +(void) my_method: (int)param;
10 -(void) my_method: (int)param;
Dt2.m6 [sub my_method:x];
7 [Sub my_method:x];
11 -(void) my_method: (int)param {
/external/clang/test/SemaObjC/
Dmethod-bad-param.m10 -(void) my_method:(foo) my_param; // expected-error {{interface type 'foo' cannot be passed by valu…
15 -(void) my_method:(foo) my_param // expected-error {{interface type 'foo' cannot be passed by valu…
51 - (void) my_method: (int)arg; // expected-note {{method 'my_method:' declared here}}
55 @implementation qux // expected-warning {{method definition for 'my_method:' not found}}
56 - (void) my_method: (int) { // expected-error {{expected identifier}}
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
Dtransport_test.py212 def my_method(self, request): function
241 rpc = self.connection.send_rpc(my_method.remote, self.request)
258 rpc = self.connection.send_rpc(my_method.remote, self.request)
270 bad_transport.send_rpc(my_method.remote, self.request)
287 self.connection.send_rpc(my_method.remote, self.request)
302 rpc = self.connection.send_rpc(my_method.remote, self.request)
315 rpc = self.connection.send_rpc(my_method.remote, self.request)
330 rpc = self.connection.send_rpc(my_method.remote, self.request)
345 rpc = self.connection.send_rpc(my_method.remote, self.request)
359 rpc = self.connection.send_rpc(my_method.remote, self.request)
[all …]
/external/clang/test/SemaObjCXX/
Dmicrosoft-abi-byval.mm9 - (void) my_method: (Foo)arg;
13 - (void) my_method: (Foo)arg { // no error; MS ABI will call Foo's dtor, but we skip the access che…
/external/protobuf/python/google/protobuf/internal/
Ddescriptor_test.py89 self.my_method = descriptor.MethodDescriptor(
102 self.my_method
122 self.assertEqual(self.my_service, self.my_method.containing_service)
133 self.assertEqual(self.my_method.GetOptions(),
/external/chromium-trace/catapult/third_party/webapp2/tests/
Dhandler_test.py579 def my_method(self): member in TestHandler.test_custom_method.MyHandler
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/webapp/
Dservice_handlers_test.py1252 def my_method(self, request): member in GetCalled