/external/grpc-grpc/src/compiler/ |
D | protobuf_plugin.h | 40 : method_(method) {} in ProtoBufMethod() 42 grpc::string name() const { return method_->name(); } in name() 45 return grpc_cpp_generator::ClassName(method_->input_type(), true); in input_type_name() 48 return grpc_cpp_generator::ClassName(method_->output_type(), true); in output_type_name() 52 return method_->input_type()->file()->name(); in get_input_type_name() 55 return method_->output_type()->file()->name(); in get_output_type_name() 63 method_->input_type(), str, generator_file_name, generate_in_pb2_grpc, in get_module_and_message_path_input() 72 method_->output_type(), str, generator_file_name, generate_in_pb2_grpc, in get_module_and_message_path_output() 77 return !method_->client_streaming() && !method_->server_streaming(); in NoStreaming() 80 bool ClientStreaming() const { return method_->client_streaming(); } in ClientStreaming() [all …]
|
/external/rust/crates/grpcio-sys/grpc/src/compiler/ |
D | protobuf_plugin.h | 40 : method_(method) {} in ProtoBufMethod() 42 std::string name() const { return method_->name(); } in name() 45 return grpc_cpp_generator::ClassName(method_->input_type(), true); in input_type_name() 48 return grpc_cpp_generator::ClassName(method_->output_type(), true); in output_type_name() 52 return method_->input_type()->file()->name(); in get_input_type_name() 55 return method_->output_type()->file()->name(); in get_output_type_name() 64 method_->input_type(), str, generator_file_name, generate_in_pb2_grpc, in get_module_and_message_path_input() 73 method_->output_type(), str, generator_file_name, generate_in_pb2_grpc, in get_module_and_message_path_output() 78 return !method_->client_streaming() && !method_->server_streaming(); in NoStreaming() 81 bool ClientStreaming() const { return method_->client_streaming(); } in ClientStreaming() [all …]
|
/external/llvm-project/clang/test/OpenMP/ |
D | declare_variant_implementation_vendor_codegen.cpp | 57 int method_() { return 11; } in method_() function 58 #pragma omp declare variant(SpecialFuncs::method_) \ 61 #pragma omp declare variant(SpecialFuncs::method_) \ 73 int method_(); 74 #pragma omp declare variant(SpecSpecialFuncs::method_) \ 77 #pragma omp declare variant(SpecSpecialFuncs::method_) \ 82 int SpecSpecialFuncs::method_() { return 15; } in method_() function in SpecSpecialFuncs
|
D | nvptx_declare_variant_implementation_vendor_codegen.cpp | 71 int method_() { return 11; } in method_() function 72 #pragma omp declare variant(SpecialFuncs::method_) \ 75 #pragma omp declare variant(SpecialFuncs::method_) \ 87 int method_(); 88 #pragma omp declare variant(SpecSpecialFuncs::method_) \ 91 #pragma omp declare variant(SpecSpecialFuncs::method_) \ 98 int SpecSpecialFuncs::method_() { return 15; } in method_() function in SpecSpecialFuncs
|
D | declare_variant_device_kind_codegen.cpp | 152 int method_() { return 6; } in method_() function 153 #pragma omp declare variant(SpecialFuncs::method_) \ 156 #pragma omp declare variant(SpecialFuncs::method_) \ 168 int method_(); 169 #pragma omp declare variant(SpecSpecialFuncs::method_) \ 172 #pragma omp declare variant(SpecSpecialFuncs::method_) \ 177 int SpecSpecialFuncs::method_() { return 7; } in method_() function in SpecSpecialFuncs
|
D | nvptx_declare_variant_device_kind_codegen.cpp | 94 int method_() { return 11; } in method_() function 95 #pragma omp declare variant(SpecialFuncs::method_) \ 98 #pragma omp declare variant(SpecialFuncs::method_) \ 110 int method_(); 111 #pragma omp declare variant(SpecSpecialFuncs::method_) \ 114 #pragma omp declare variant(SpecSpecialFuncs::method_) \ 121 int SpecSpecialFuncs::method_() { return 15; } in method_() function in SpecSpecialFuncs
|
D | declare_variant_mixed_codegen.cpp | 70 int method_() { return 12; } in method_() function 71 #pragma omp declare variant(SpecialFuncs::method_) \ 74 #pragma omp declare variant(SpecialFuncs::method_) \ 86 int method_(); 87 #pragma omp declare variant(SpecSpecialFuncs::method_) \ 90 #pragma omp declare variant(SpecSpecialFuncs::method_) \ 95 int SpecSpecialFuncs::method_() { return 16; } in method_() function in SpecSpecialFuncs
|
/external/pigweed/pw_rpc/public/pw_rpc/internal/ |
D | call.h | 44 method_(nullptr) {} in ServerCall() 53 method_(&method) {} in ServerCall() 77 PW_DCHECK_NOTNULL(method_); in method() 78 return *method_; in method() 85 const internal::Method* method_; variable
|
/external/webrtc/examples/peerconnection/server/ |
D | data_socket.h | 63 : SocketBase(socket), method_(INVALID), content_length_(0) {} in DataSocket() 69 bool headers_received() const { return method_ != INVALID; } in headers_received() 71 RequestMethod method() const { return method_; } in method() 83 return headers_received() && (method_ != POST || data_received()); in request_received() 87 return method_ != POST || data_.length() >= content_length_; in data_received() 132 RequestMethod method_;
|
D | data_socket.cc | 100 if (method_ != POST) { in OnDataAvailable() 159 method_ = INVALID; in Clear() 169 assert(method_ == INVALID); in ParseHeaders() 177 assert(method_ != INVALID); in ParseHeaders() 180 if (method_ == POST) { in ParseHeaders() 207 method_ = supported_methods[i].id; in ParseMethodAndPath()
|
/external/libtextclassifier/abseil-cpp/absl/random/ |
D | beta_distribution.h | 64 method_ = DEGENERATE_SMALL; in param_type() 79 method_ = DEGENERATE_SMALL; in param_type() 89 method_ = JOEHNK; in param_type() 93 method_ = DEGENERATE_SMALL; in param_type() 99 method_ = DEGENERATE_LARGE; in param_type() 109 method_ = CHENG_BA; in param_type() 114 method_ = CHENG_BB; in param_type() 191 Method method_; variable 251 if (p.method_ == param_type::DEGENERATE_SMALL && p.alpha_ == p.beta_) { in DegenerateCase() 351 const bool use_algorithm_ba = (p.method_ == param_type::CHENG_BA); in AlgorithmCheng() [all …]
|
/external/webrtc/third_party/abseil-cpp/absl/random/ |
D | beta_distribution.h | 64 method_ = DEGENERATE_SMALL; in param_type() 79 method_ = DEGENERATE_SMALL; in param_type() 89 method_ = JOEHNK; in param_type() 93 method_ = DEGENERATE_SMALL; in param_type() 99 method_ = DEGENERATE_LARGE; in param_type() 109 method_ = CHENG_BA; in param_type() 114 method_ = CHENG_BB; in param_type() 191 Method method_; variable 251 if (p.method_ == param_type::DEGENERATE_SMALL && p.alpha_ == p.beta_) { in DegenerateCase() 351 const bool use_algorithm_ba = (p.method_ == param_type::CHENG_BA); in AlgorithmCheng() [all …]
|
/external/angle/third_party/abseil-cpp/absl/random/ |
D | beta_distribution.h | 64 method_ = DEGENERATE_SMALL; in param_type() 79 method_ = DEGENERATE_SMALL; in param_type() 89 method_ = JOEHNK; in param_type() 93 method_ = DEGENERATE_SMALL; in param_type() 99 method_ = DEGENERATE_LARGE; in param_type() 109 method_ = CHENG_BA; in param_type() 114 method_ = CHENG_BB; in param_type() 191 Method method_; variable 251 if (p.method_ == param_type::DEGENERATE_SMALL && p.alpha_ == p.beta_) { in DegenerateCase() 351 const bool use_algorithm_ba = (p.method_ == param_type::CHENG_BA); in AlgorithmCheng() [all …]
|
/external/abseil-cpp/absl/random/ |
D | beta_distribution.h | 64 method_ = DEGENERATE_SMALL; in param_type() 79 method_ = DEGENERATE_SMALL; in param_type() 89 method_ = JOEHNK; in param_type() 93 method_ = DEGENERATE_SMALL; in param_type() 99 method_ = DEGENERATE_LARGE; in param_type() 109 method_ = CHENG_BA; in param_type() 114 method_ = CHENG_BB; in param_type() 191 Method method_; variable 251 if (p.method_ == param_type::DEGENERATE_SMALL && p.alpha_ == p.beta_) { in DegenerateCase() 351 const bool use_algorithm_ba = (p.method_ == param_type::CHENG_BA); in AlgorithmCheng() [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/ |
D | beta_distribution.h | 64 method_ = DEGENERATE_SMALL; in param_type() 79 method_ = DEGENERATE_SMALL; in param_type() 89 method_ = JOEHNK; in param_type() 93 method_ = DEGENERATE_SMALL; in param_type() 99 method_ = DEGENERATE_LARGE; in param_type() 109 method_ = CHENG_BA; in param_type() 114 method_ = CHENG_BB; in param_type() 191 Method method_; variable 251 if (p.method_ == param_type::DEGENERATE_SMALL && p.alpha_ == p.beta_) { in DegenerateCase() 351 const bool use_algorithm_ba = (p.method_ == param_type::CHENG_BA); in AlgorithmCheng() [all …]
|
/external/openscreen/third_party/abseil/src/absl/random/ |
D | beta_distribution.h | 64 method_ = DEGENERATE_SMALL; in param_type() 79 method_ = DEGENERATE_SMALL; in param_type() 89 method_ = JOEHNK; in param_type() 93 method_ = DEGENERATE_SMALL; in param_type() 99 method_ = DEGENERATE_LARGE; in param_type() 109 method_ = CHENG_BA; in param_type() 114 method_ = CHENG_BB; in param_type() 191 Method method_; variable 251 if (p.method_ == param_type::DEGENERATE_SMALL && p.alpha_ == p.beta_) { in DegenerateCase() 351 const bool use_algorithm_ba = (p.method_ == param_type::CHENG_BA); in AlgorithmCheng() [all …]
|
/external/protobuf/src/google/protobuf/stubs/ |
D | callback.h | 147 : object_(object), method_(method), self_deleting_(self_deleting) {} in MethodClosure0() 152 (object_->*method_)(); in Run() 158 MethodType method_; variable 192 : object_(object), method_(method), self_deleting_(self_deleting), in MethodClosure1() 198 (object_->*method_)(arg1_); in Run() 204 MethodType method_; variable 240 : object_(object), method_(method), self_deleting_(self_deleting), in MethodClosure2() 246 (object_->*method_)(arg1_, arg2_); in Run() 252 MethodType method_; variable 358 method_(method), in MethodResultCallback_0_0() [all …]
|
/external/rust/crates/grpcio-sys/grpc/include/grpcpp/impl/codegen/ |
D | async_generic_service.h | 41 const std::string& method() const { return method_; } in method() 47 std::string method_; variable 93 const std::string& method() const { return method_; } in method() 99 std::string method_; variable
|
/external/rust/crates/grpcio-sys/grpc/spm-cpp-include/grpcpp/impl/codegen/ |
D | async_generic_service.h | 41 const std::string& method() const { return method_; } in method() 47 std::string method_; variable 93 const std::string& method() const { return method_; } in method() 99 std::string method_; variable
|
/external/webp/src/dec/ |
D | alpha_dec.c | 69 dec->method_ = (data[0] >> 0) & 0x03; in ALPHInit() 73 if (dec->method_ < ALPHA_NO_COMPRESSION || in ALPHInit() 74 dec->method_ > ALPHA_LOSSLESS_COMPRESSION || in ALPHInit() 95 if (dec->method_ == ALPHA_NO_COMPRESSION) { in ALPHInit() 99 assert(dec->method_ == ALPHA_LOSSLESS_COMPRESSION); in ALPHInit() 114 if (alph_dec->method_ == ALPHA_NO_COMPRESSION) { in ALPHDecode()
|
/external/rust/crates/grpcio-sys/grpc/src/cpp/server/ |
D | server_cc.cc | 247 static_cast<GenericServerContext*>(context_)->method_ = in FinalizeResult() 258 static_cast<GenericServerContext*>(context_)->method_.c_str(), in FinalizeResult() 340 : method_(method), in SyncRequest() 427 method_(mrd->method_), in CallData() 430 ctx_.set_server_rpc_info(method_->name(), method_->method_type(), in CallData() 463 auto* handler = resources_ ? method_->handler() in Run() 487 auto* handler = resources_ ? method_->handler() in ContinueRunAfterInterception() 513 grpc::internal::RpcServiceMethod* const method_; member in grpc::Server::SyncRequest::CallData 522 grpc::internal::RpcServiceMethod* const method_; member in grpc::Server::SyncRequest 549 method_(method), in CallbackRequest() [all …]
|
/external/tensorflow/tensorflow/core/platform/ |
D | mutex.h | 133 bool (Condition::*method_)(); // predicate of form arg_->method_() 267 method_(nullptr), in Condition() 273 bool (T::*m)() = reinterpret_cast<bool (T::*)()>(cond->method_); in CallMethod() 281 method_(reinterpret_cast<bool (Condition::*)()>(method)), in Condition() 288 method_(reinterpret_cast<bool (Condition::*)()>(method)), in Condition() 299 method_(nullptr), in Condition()
|
/external/flatbuffers/src/ |
D | idl_gen_grpc.cpp | 42 FlatBufMethod(const RPCCall *method) : method_(method) { in FlatBufMethod() 44 auto val = method_->attributes.Lookup("streaming"); in FlatBufMethod() 57 return method_->doc_comment; in GetAllComments() 60 std::string name() const { return method_->name; } in name() 66 std::string get_input_type_name() const { return (*method_->request).name; } in get_input_type_name() 68 std::string get_output_type_name() const { return (*method_->response).name; } in get_output_type_name() 85 std::string input_type_name() const { return GRPCType(*method_->request); } in input_type_name() 87 std::string output_type_name() const { return GRPCType(*method_->response); } in output_type_name() 98 const RPCCall *method_; member in flatbuffers::FlatBufMethod
|
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/ |
D | grpc_state.h | 104 method_(method), in RPCState() 131 VLOG(2) << "Starting call: " << method_; in StartCall() 133 call_ = stub_->PrepareUnaryCall(context_.get(), method_, request_buf_, cq_); in StartCall() 143 VLOG(2) << "Completed call: " << method_; in OnCompleted() 165 VLOG(1) << method_ << " returned with non-ok status: " << s in OnCompleted() 172 VLOG(1) << "Retrying call for " << method_ << "Retry: " << num_retries_ in OnCompleted() 223 ::grpc::string method_; 656 : stub_(stub), cq_(cq), method_(method) {} in StreamingRPCDispatcher() 705 stub_->PrepareCall(context_.get(), method_, cq_); in CreateStreamingState() 717 const ::grpc::string method_; variable
|
/external/webrtc/rtc_base/ |
D | bind.h | 160 : method_(method), object_(object), args_(args...) {} 168 return (object_->*method_)(std::get<S>(args_)...); 171 MethodT method_; 182 : method_(method), object_(object.get()), args_(args...) {} 190 return (object_->*method_)(std::get<S>(args_)...); 193 MethodT method_;
|