Home
last modified time | relevance | path

Searched refs:methods_ (Results 1 – 12 of 12) sorted by relevance

/external/grpc-grpc/include/grpcpp/impl/codegen/
Dservice_type.h64 for (auto it = methods_.begin(); it != methods_.end(); ++it) { in has_async_methods()
73 for (auto it = methods_.begin(); it != methods_.end(); ++it) { in has_synchronous_methods()
82 for (auto it = methods_.begin(); it != methods_.end(); ++it) { in has_generic_methods()
100 server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq, in RequestAsyncUnary()
108 server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq, in RequestAsyncClientStreaming()
117 server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq, in RequestAsyncServerStreaming()
125 server_->RequestAsyncCall(methods_[idx].get(), context, stream, call_cq, in RequestAsyncBidiStreaming()
130 methods_.emplace_back(method); in AddMethod()
138 methods_[idx].get() != nullptr && in MarkMethodAsync()
141 methods_[idx]->SetServerAsyncType( in MarkMethodAsync()
[all …]
/external/jdiff/src/jdiff/
DAPIComparator.java328 numLocalMethods(oldClass.methods_) + in compareClasses()
331 numLocalMethods(newClass.methods_) + in compareClasses()
453 oldClass.methods_.size() + ", #new " + in compareAllMethods()
454 newClass.methods_.size()); in compareAllMethods()
457 Collections.sort(oldClass.methods_); in compareAllMethods()
458 Collections.sort(newClass.methods_); in compareAllMethods()
461 Iterator iter = oldClass.methods_.iterator(); in compareAllMethods()
465 MethodAPI[] methodArr = new MethodAPI[newClass.methods_.size()]; in compareAllMethods()
466 methodArr = (MethodAPI[])newClass.methods_.toArray(methodArr); in compareAllMethods()
487 int startOld = oldClass.methods_.indexOf(oldMethod); in compareAllMethods()
[all …]
DXMLToAPI.java137 if (parent.methods_.size() != 0) { in addInheritedElements()
138 Iterator iter = parent.methods_.iterator(); in addInheritedElements()
143 Iterator iter2 = child.methods_.iterator(); in addInheritedElements()
155 child.methods_.add(m2); in addInheritedElements()
306 api_.currClass_.methods_.add(api_.currMethod_); in addMethod()
DClassAPI.java40 public final List<MethodAPI> methods_ = new ArrayList<>(); field in ClassAPI
DAPI.java137 iter = c.methods_.iterator(); in dumpClass()
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DApi.cs78 methods_ = other.methods_.Clone(); in Api()
108 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Method> methods_ = new … field in Google.Protobuf.WellKnownTypes.Api
113 get { return methods_; }
211 if(!methods_.Equals(other.methods_)) return false; in Equals()
223 hash ^= methods_.GetHashCode(); in GetHashCode()
241 methods_.WriteTo(output, _repeated_methods_codec); in WriteTo()
263 size += methods_.CalculateSize(_repeated_methods_codec); in CalculateSize()
285 methods_.Add(other.methods_); in MergeFrom()
314 methods_.AddEntriesFrom(input, _repeated_methods_codec); in MergeFrom()
/external/protobuf/src/google/protobuf/
Dapi.pb.h183 ::google::protobuf::RepeatedPtrField< ::google::protobuf::Method > methods_;
487 return methods_.size(); in methods_size()
490 methods_.Clear(); in clear_methods()
494 return methods_.Get(index); in methods()
498 return methods_.Mutable(index); in mutable_methods()
502 return methods_.Add(); in add_methods()
507 return &methods_; in mutable_methods()
512 return methods_; in methods()
Dapi.pb.cc47 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Api, methods_), in protobuf_AssignDesc_google_2fprotobuf_2fapi_2eproto()
274 methods_.Clear(); in Clear()
620 methods_.MergeFrom(from.methods_); in MergeFrom()
664 methods_.UnsafeArenaSwap(&other->methods_); in InternalSwap()
731 return methods_.size(); in methods_size()
734 methods_.Clear(); in clear_methods()
738 return methods_.Get(index); in methods()
742 return methods_.Mutable(index); in mutable_methods()
746 return methods_.Add(); in add_methods()
751 return &methods_; in mutable_methods()
[all …]
Ddescriptor.h1056 MethodDescriptor* methods_; variable
1851 return static_cast<int>(this - service_->methods_); in index()
Ddescriptor.cc5038 CrossLinkMethod(&service->methods_[i], proto.method(i)); in CrossLinkService()
/external/grpc-grpc/src/cpp/server/
Dserver_cc.cc501 for (auto it = service->methods_.begin(); it != service->methods_.end(); in RegisterService()
/external/deqp/modules/gles31/functional/
Des31fCopyImageTests.cpp1827 Iteration (int methodCount_, const IterationFunc* methods_) in Iteration()
1829 , methods (methods_) in Iteration()