Home
last modified time | relevance | path

Searched refs:MethodType (Results 1 – 25 of 62) sorted by relevance

123

/third_party/grpc/src/csharp/Grpc.Core.Api/
DMethod.cs27 public enum MethodType enum
50 MethodType Type { get; }
76 readonly MethodType type;
91 …public Method(MethodType type, string serviceName, string name, Marshaller<TRequest> requestMarsha… in Method()
104 public MethodType Type
/third_party/protobuf/src/google/protobuf/stubs/
Dcallback.h144 typedef void (Class::*MethodType)(); typedef
146 MethodClosure0(Class* object, MethodType method, bool self_deleting) in MethodClosure0()
158 MethodType method_;
188 typedef void (Class::*MethodType)(Arg1 arg1); typedef
190 MethodClosure1(Class* object, MethodType method, bool self_deleting, in MethodClosure1()
204 MethodType method_;
236 typedef void (Class::*MethodType)(Arg1 arg1, Arg2 arg2); typedef
238 MethodClosure2(Class* object, MethodType method, bool self_deleting, in MethodClosure2()
252 MethodType method_;
355 typedef R (T::*MethodType)(); typedef
[all …]
/third_party/grpc/src/csharp/Grpc.Core.Tests/
DMockServiceHelper.cs62 MethodType.Unary, in MockServiceHelper()
69 MethodType.ClientStreaming, in MockServiceHelper()
76 MethodType.ServerStreaming, in MockServiceHelper()
83 MethodType.DuplexStreaming, in MockServiceHelper()
DServerBindFailedTest.cs33 MethodType.Unary,
/third_party/libphonenumber/cpp/src/phonenumbers/
Dcallback.h55 typedef R (T::*MethodType)(A1, A2, A3, A4) const; typedef
57 ConstMethodCallback4(const T* instance, MethodType method) in ConstMethodCallback4()
68 MethodType const method_;
/third_party/python/Lib/test/test_importlib/import_/
Dtest_meta_path.py4 from types import MethodType
74 setattr(importer, self.finder_name, MethodType(wrapped_call, importer))
92 setattr(importer, self.finder_name, MethodType(wrapped_call, importer))
Dtest_caching.py4 from types import MethodType
60 mock.load_module = MethodType(load_module, mock)
/third_party/python/Lib/test/
Dinspect_fodder.py89 from types import MethodType
90 return MethodType(self, obj)
Dtest_decorators.py3 from types import MethodType
346 return MethodType(self, owner)
360 return MethodType(self, owner)
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DBenchmarkServiceGrpc.cs66 grpc::MethodType.Unary,
73 grpc::MethodType.DuplexStreaming,
80 grpc::MethodType.ClientStreaming,
87 grpc::MethodType.ServerStreaming,
94 grpc::MethodType.DuplexStreaming,
DTestGrpc.cs76 grpc::MethodType.Unary,
83 grpc::MethodType.Unary,
90 grpc::MethodType.Unary,
97 grpc::MethodType.ServerStreaming,
104 grpc::MethodType.ClientStreaming,
111 grpc::MethodType.DuplexStreaming,
118 grpc::MethodType.DuplexStreaming,
125 grpc::MethodType.Unary,
631 grpc::MethodType.Unary,
794 grpc::MethodType.Unary,
[all …]
DWorkerServiceGrpc.cs71 grpc::MethodType.DuplexStreaming,
78 grpc::MethodType.DuplexStreaming,
85 grpc::MethodType.Unary,
92 grpc::MethodType.Unary,
DGenericService.cs43 MethodType.DuplexStreaming,
DMetricsGrpc.cs71 grpc::MethodType.ServerStreaming,
78 grpc::MethodType.Unary,
/third_party/grpc/src/csharp/Grpc.Examples/
DMathGrpc.cs66 grpc::MethodType.Unary,
73 grpc::MethodType.DuplexStreaming,
80 grpc::MethodType.ServerStreaming,
87 grpc::MethodType.ClientStreaming,
/third_party/mindspore/mindspore/_extends/parse/
Dparser.py170 isinstance(resolve_, (types.FunctionType, types.MethodType, types.ModuleType)):
225 if isinstance(obj, types.MethodType):
257 elif isinstance(obj, types.MethodType):
380 if isinstance(obj, types.MethodType):
530 def __init__(self, fn: (types.FunctionType, types.MethodType), parse_method=None) -> None: argument
553 if isinstance(self.fn, (types.FunctionType, types.MethodType)):
/third_party/grpc/src/csharp/Grpc.Core.Tests/Interceptors/
DClientInterceptorTest.cs58 …Equal("PASS", callInvoker.BlockingUnaryCall(new Method<string, string>(MethodType.Unary, MockServi… in AddRequestHeaderInClientInterceptor()
87 …Equal("PASS", callInvoker.BlockingUnaryCall(new Method<string, string>(MethodType.Unary, MockServi… in CheckInterceptorOrderInClientInterceptors()
125 …var call = callInvoker.AsyncClientStreamingCall(new Method<string, string>(MethodType.ClientStream… in CountNumberOfRequestsInClientInterceptors()
/third_party/mindspore/mindspore/ops/operations/
Ddebug_ops.py16 from types import FunctionType, MethodType
361 if not isinstance(hook_fn, (FunctionType, MethodType)):
/third_party/python/Lib/importlib/metadata/
D_functools.py77 bound_method = types.MethodType(method, self)
/third_party/python/Doc/c-api/
Dmethod.rst59 .. index:: single: MethodType (in module types)
62 is exposed to Python programs as ``types.MethodType``.
/third_party/grpc/src/compiler/
Dcsharp_generator.cc38 using grpc_generator::MethodType;
187 std::string GetCSharpMethodType(MethodType method_type) { in GetCSharpMethodType()
202 std::string GetCSharpServerMethodType(MethodType method_type) { in GetCSharpServerMethodType()
529 MethodType method_type = GetMethodType(method); in GenerateClientStub()
/third_party/flatbuffers/tests/MyGame/Example/
DMonsterStorageGrpc.java82 .setType(io.grpc.MethodDescriptor.MethodType.UNARY) in getStoreMethod()
115 .setType(io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING) in getRetrieveMethod()
148 .setType(io.grpc.MethodDescriptor.MethodType.CLIENT_STREAMING) in getGetMaxHitPointMethod()
181 .setType(io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING) in getGetMinMaxHitPointsMethod()
/third_party/python/Lib/
Dcontextlib.py7 from types import MethodType, GenericAlias
444 return MethodType(cm_exit, cm)
603 return MethodType(cm_exit, cm)
/third_party/grpc/src/csharp/Grpc.HealthCheck/
DHealthGrpc.cs67 grpc::MethodType.Unary,
74 grpc::MethodType.ServerStreaming,
/third_party/grpc/src/csharp/Grpc.Microbenchmarks/
DPingBenchmark.cs39 …eadonly Method<string, string> PingMethod = new Method<string, string>(MethodType.Unary, nameof(Pi…

123