Home
last modified time | relevance | path

Searched refs:sorted_methods (Results 1 – 4 of 4) sorted by relevance

/external/flatbuffers/grpc/src/compiler/
Djava_generator.cc719 std::vector<std::unique_ptr<const grpc_generator::Method>> sorted_methods( in PrintMethodHandlerClass() local
722 sorted_methods[i] = service->method(i); in PrintMethodHandlerClass()
724 stable_sort(sorted_methods.begin(), sorted_methods.end(), in PrintMethodHandlerClass()
726 for (size_t i = 0; i < sorted_methods.size(); i++) { in PrintMethodHandlerClass()
727 auto& method = sorted_methods[i]; in PrintMethodHandlerClass()
/external/grpc-grpc-java/compiler/src/java_plugin/cpp/
Djava_generator.cpp882 std::vector<const MethodDescriptor*> sorted_methods(service->method_count()); in PrintMethodHandlerClass() local
884 sorted_methods[i] = service->method(i); in PrintMethodHandlerClass()
886 stable_sort(sorted_methods.begin(), sorted_methods.end(), in PrintMethodHandlerClass()
888 for (size_t i = 0; i < sorted_methods.size(); i++) { in PrintMethodHandlerClass()
889 const MethodDescriptor* method = sorted_methods[i]; in PrintMethodHandlerClass()
/external/python/cpython3/Objects/
Dtypeobject.c3691 PyObject *sorted_methods = NULL; in object_new() local
3708 sorted_methods = PyObject_CallFunctionObjArgs(sorted, in object_new()
3711 if (sorted_methods == NULL) in object_new()
3716 joined = PyUnicode_Join(comma, sorted_methods); in object_new()
3727 Py_XDECREF(sorted_methods); in object_new()
/external/python/cpython2/Objects/
Dtypeobject.c3029 PyObject *sorted_methods = NULL; in object_new() local
3044 sorted_methods = PyObject_CallFunctionObjArgs(sorted, in object_new()
3047 if (sorted_methods == NULL) in object_new()
3055 "O", sorted_methods); in object_new()
3069 Py_XDECREF(sorted_methods); in object_new()