/third_party/grpc/include/grpcpp/impl/codegen/ |
D | service_type.h | 62 for (const auto& method : methods_) { in has_async_methods() 71 for (const auto& method : methods_) { in has_synchronous_methods() 81 for (const auto& method : methods_) { in has_callback_methods() 93 for (const auto& method : methods_) { in has_generic_methods() 136 server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq, in RequestAsyncUnary() 145 server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq, in RequestAsyncClientStreaming() 155 server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq, in RequestAsyncServerStreaming() 164 server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq, in RequestAsyncBidiStreaming() 169 methods_.emplace_back(method); in AddMethod() 177 methods_[idx].get() != nullptr && in MarkMethodAsync() [all …]
|
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Api.cs | 97 methods_ = other.methods_.Clone(); in Api() 130 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Method> methods_ = new … field in Google.Protobuf.WellKnownTypes.Api 136 get { return methods_; } 240 if(!methods_.Equals(other.methods_)) return false; in Equals() 253 hash ^= methods_.GetHashCode(); in GetHashCode() 279 methods_.WriteTo(output, _repeated_methods_codec); in WriteTo() 307 methods_.WriteTo(ref output, _repeated_methods_codec); in IBufferMessage.InternalWriteTo() 334 size += methods_.CalculateSize(_repeated_methods_codec); in CalculateSize() 360 methods_.Add(other.methods_); in MergeFrom() 394 methods_.AddEntriesFrom(input, _repeated_methods_codec); in MergeFrom() [all …]
|
/third_party/protobuf/src/google/protobuf/ |
D | api.pb.cc | 93 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::Api, methods_), 199 methods_(arena), in Api() 208 methods_(from.methods_), in Api() 274 methods_.Clear(); in Clear() 469 for (const auto& msg : this->methods_) { in ByteSizeLong() 546 methods_.MergeFrom(from.methods_); in MergeFrom() 584 methods_.InternalSwap(&other->methods_); in InternalSwap()
|
D | api.pb.h | 320 ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< PROTOBUF_NAMESPACE_ID::Method > methods_; 800 return methods_.size(); in _internal_methods_size() 806 methods_.Clear(); in clear_methods() 810 return methods_.Mutable(index); in mutable_methods() 815 return &methods_; in mutable_methods() 818 return methods_.Get(index); in _internal_methods() 825 return methods_.Add(); in _internal_add_methods() 834 return methods_; in methods()
|
D | descriptor.h | 1306 MethodDescriptor* methods_; variable 2264 return static_cast<int>(this - service_->methods_); in index()
|
D | descriptor.cc | 5855 CrossLinkMethod(&service->methods_[i], proto.method(i)); in CrossLinkService()
|
/third_party/mindspore/mindspore/core/abstract/ |
D | abstract_value.cc | 772 return std::make_shared<Class>(tag_, attributes_type, methods_); in BuildType() 792 if (methods_.size() != other.methods_.size()) { in operator ==() 795 for (const auto &iter : methods_) { in operator ==() 796 auto iter_other = other.methods_.find(iter.first); in operator ==() 797 if (iter_other == other.methods_.end()) { in operator ==() 825 auto method_pair = methods_.find(name); in GetMethod() 826 if (method_pair != methods_.end()) { in GetMethod() 840 return std::make_shared<AbstractClass>(tag_, attributes_clone, methods_); in Clone() 851 return std::make_shared<AbstractClass>(tag_, attributes_clone, methods_); in Broaden() 869 for (const auto &iter : methods_) { in ToString()
|
D | abstract_value.h | 456 : attributes_(attributes), tag_(tag), methods_(methods) {} in AbstractClass() 465 std::unordered_map<std::string, ValuePtr> methods() { return methods_; } in methods() 480 std::unordered_map<std::string, ValuePtr> methods_; variable
|
/third_party/mindspore/mindspore/core/ir/dtype/ |
D | container.h | 86 std::unordered_map<std::string, ValuePtr> methods() { return methods_; } in methods() 94 std::unordered_map<std::string, ValuePtr> methods_; variable
|
D | container.cc | 96 : Object(kObjectTypeClass, false), attributes_(attributes), tag_(tag), methods_(methods) {} in Class() 119 auto copy = std::make_shared<Class>(tag_, attributes_, methods_); in DeepCopy()
|
/third_party/grpc/src/cpp/server/ |
D | server_cc.cc | 1041 for (const auto& method : service->methods_) { in RegisterService()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fCopyImageTests.cpp | 1832 Iteration (int methodCount_, const IterationFunc* methods_) in Iteration() 1834 , methods (methods_) in Iteration()
|