HomeSort by relevance Sort by last modified time
    Searched refs:CallMethod (Results 1 - 9 of 9) sorted by null

  /external/clang/test/CodeGenCXX/
mangle-ms-templates-memptrs.cpp 87 void CallMethod(T &o) {
99 CallMethod<S, &S::f>(s);
100 CallMethod<M, &M::f>(m);
101 CallMethod<V, &V::f>(v);
102 CallMethod<U, &U::f>(u);
105 CallMethod<S, &S::g>(s);
106 CallMethod<M, &M::g>(m);
107 CallMethod<V, &V::g>(v);
108 CallMethod<U, &U::g>(u);
112 CallMethod<O, &O::g>(o)
    [all...]
  /external/nanopb-c/generator/google/protobuf/
service.py 65 def CallMethod(self, method_descriptor, rpc_controller,
86 before CallMethod() returns or it may be at some point in the future.
96 CallMethod() requires that the request is of a particular subclass of
104 service.CallMethod(method, request, callback)
111 This method isn't really needed, as the RpcChannel's CallMethod constructs
217 def CallMethod(self, method_descriptor, rpc_controller,
222 procedure looks the same as Service.CallMethod(), but the requirements
service_reflection.py 140 # CallMethod needs to operate with an instance of the Service class. This
142 # instance to the method that does the real CallMethod work.
148 cls.CallMethod = _WrapCallMethod
169 'CallMethod() given method descriptor for wrong service type.')
282 return stub.rpc_channel.CallMethod(
  /external/protobuf/python/google/protobuf/
service.py 65 def CallMethod(self, method_descriptor, rpc_controller,
86 before CallMethod() returns or it may be at some point in the future.
96 CallMethod() requires that the request is of a particular subclass of
104 service.CallMethod(method, request, callback)
111 This method isn't really needed, as the RpcChannel's CallMethod constructs
217 def CallMethod(self, method_descriptor, rpc_controller,
222 procedure looks the same as Service.CallMethod(), but the requirements
service_reflection.py 140 # CallMethod needs to operate with an instance of the Service class. This
142 # instance to the method that does the real CallMethod work.
148 cls.CallMethod = _WrapCallMethod
169 'CallMethod() given method descriptor for wrong service type.')
282 return stub.rpc_channel.CallMethod(
  /external/protobuf/src/google/protobuf/
service.h 160 // before CallMethod() returns or it may be at some point in the future.
166 virtual void CallMethod(const MethodDescriptor* method,
172 // CallMethod() requires that the request and response passed in are of a
176 // objects which you can then pass to CallMethod().
184 // service->CallMethod(method, *request, response, callback);
274 // procedure looks the same as Service::CallMethod(), but the requirements
278 virtual void CallMethod(const MethodDescriptor* method,
  /external/protobuf/python/google/protobuf/internal/
service_reflection_test.py 47 def CallMethod(self, method, controller, request, response, callback):
78 srvc.CallMethod(service_descriptor.methods[1], rpc_controller,
97 srvc.CallMethod(service_descriptor.methods[1], rpc_controller,
104 def CallMethod(self, method, controller, request,
  /art/test/004-JniTest/
jni_test.cc 437 void CallMethod(jobject o, jclass c, jmethodID m, bool nonstatic, const char* test_case) {
476 CallMethod(nullptr, nullptr, super_static_, false, "null object, null class, super static");
479 CallMethod(nullptr, super_, super_static_, false, "null object, super class, super static");
482 CallMethod(nullptr, sub_, super_static_, false, "null object, sub class, super static");
486 CallMethod(nullptr, nullptr, sub_static_, false, "null object, null class, sub static");
489 CallMethod(nullptr, sub_, sub_static_, false, "null object, super class, sub static");
492 CallMethod(nullptr, super_, sub_static_, false, "null object, super class, sub static");
533 CallMethod(o, c, m, true, test_case);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_unittest.cc     [all...]

Completed in 593 milliseconds