/third_party/grpc/src/csharp/Grpc.Core.Api/ |
D | Method.cs | 27 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/ |
D | callback.h | 144 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/ |
D | MockServiceHelper.cs | 62 MethodType.Unary, in MockServiceHelper() 69 MethodType.ClientStreaming, in MockServiceHelper() 76 MethodType.ServerStreaming, in MockServiceHelper() 83 MethodType.DuplexStreaming, in MockServiceHelper()
|
D | ServerBindFailedTest.cs | 33 MethodType.Unary,
|
/third_party/libphonenumber/cpp/src/phonenumbers/ |
D | callback.h | 55 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_/ |
D | test_meta_path.py | 4 from types import MethodType 74 setattr(importer, self.finder_name, MethodType(wrapped_call, importer)) 92 setattr(importer, self.finder_name, MethodType(wrapped_call, importer))
|
D | test_caching.py | 4 from types import MethodType 60 mock.load_module = MethodType(load_module, mock)
|
/third_party/python/Lib/test/ |
D | inspect_fodder.py | 89 from types import MethodType 90 return MethodType(self, obj)
|
D | test_decorators.py | 3 from types import MethodType 346 return MethodType(self, owner) 360 return MethodType(self, owner)
|
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/ |
D | BenchmarkServiceGrpc.cs | 66 grpc::MethodType.Unary, 73 grpc::MethodType.DuplexStreaming, 80 grpc::MethodType.ClientStreaming, 87 grpc::MethodType.ServerStreaming, 94 grpc::MethodType.DuplexStreaming,
|
D | TestGrpc.cs | 76 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 …]
|
D | WorkerServiceGrpc.cs | 71 grpc::MethodType.DuplexStreaming, 78 grpc::MethodType.DuplexStreaming, 85 grpc::MethodType.Unary, 92 grpc::MethodType.Unary,
|
D | GenericService.cs | 43 MethodType.DuplexStreaming,
|
D | MetricsGrpc.cs | 71 grpc::MethodType.ServerStreaming, 78 grpc::MethodType.Unary,
|
/third_party/grpc/src/csharp/Grpc.Examples/ |
D | MathGrpc.cs | 66 grpc::MethodType.Unary, 73 grpc::MethodType.DuplexStreaming, 80 grpc::MethodType.ServerStreaming, 87 grpc::MethodType.ClientStreaming,
|
/third_party/mindspore/mindspore/_extends/parse/ |
D | parser.py | 170 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/ |
D | ClientInterceptorTest.cs | 58 …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/ |
D | debug_ops.py | 16 from types import FunctionType, MethodType 361 if not isinstance(hook_fn, (FunctionType, MethodType)):
|
/third_party/python/Lib/importlib/metadata/ |
D | _functools.py | 77 bound_method = types.MethodType(method, self)
|
/third_party/python/Doc/c-api/ |
D | method.rst | 59 .. index:: single: MethodType (in module types) 62 is exposed to Python programs as ``types.MethodType``.
|
/third_party/grpc/src/compiler/ |
D | csharp_generator.cc | 38 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/ |
D | MonsterStorageGrpc.java | 82 .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/ |
D | contextlib.py | 7 from types import MethodType, GenericAlias 444 return MethodType(cm_exit, cm) 603 return MethodType(cm_exit, cm)
|
/third_party/grpc/src/csharp/Grpc.HealthCheck/ |
D | HealthGrpc.cs | 67 grpc::MethodType.Unary, 74 grpc::MethodType.ServerStreaming,
|
/third_party/grpc/src/csharp/Grpc.Microbenchmarks/ |
D | PingBenchmark.cs | 39 …eadonly Method<string, string> PingMethod = new Method<string, string>(MethodType.Unary, nameof(Pi…
|