Home
last modified time | relevance | path

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

/aosp_15_r20/tools/asuite/atest/test_finders/
H A Dtest_filter_utils.py219 sorted_methods = sorted(list(methods))
220 return ':'.join(['%s/*.%s' % (class_name, x) for x in sorted_methods])
223 sorted_methods = sorted(list(methods))
224 return ':'.join(['%s.%s' % (class_name, x) for x in sorted_methods])
/aosp_15_r20/external/flatbuffers/grpc/src/compiler/
H A Djava_generator.cc708 std::vector<std::unique_ptr<const grpc_generator::Method>> sorted_methods( in PrintMethodHandlerClass() local
711 sorted_methods[i] = service->method(i); in PrintMethodHandlerClass()
713 stable_sort(sorted_methods.begin(), sorted_methods.end(), in PrintMethodHandlerClass()
715 for (size_t i = 0; i < sorted_methods.size(); i++) { in PrintMethodHandlerClass()
716 auto &method = sorted_methods[i]; in PrintMethodHandlerClass()
/aosp_15_r20/external/grpc-grpc-java/compiler/src/java_plugin/cpp/
H A Djava_generator.cpp854 std::vector<const MethodDescriptor*> sorted_methods(service->method_count()); in PrintMethodHandlerClass() local
856 sorted_methods[i] = service->method(i); in PrintMethodHandlerClass()
858 stable_sort(sorted_methods.begin(), sorted_methods.end(), in PrintMethodHandlerClass()
860 for (size_t i = 0; i < sorted_methods.size(); i++) { in PrintMethodHandlerClass()
861 const MethodDescriptor* method = sorted_methods[i]; in PrintMethodHandlerClass()
/aosp_15_r20/external/python/cpython3/Objects/
Dtypeobject.c4533 PyObject *sorted_methods; in object_new() local
4542 sorted_methods = PySequence_List(abstract_methods); in object_new()
4544 if (sorted_methods == NULL) in object_new()
4546 if (PyList_Sort(sorted_methods)) { in object_new()
4547 Py_DECREF(sorted_methods); in object_new()
4551 joined = PyUnicode_Join(&_Py_STR(comma_sep), sorted_methods); in object_new()
4552 method_count = PyObject_Length(sorted_methods); in object_new()
4553 Py_DECREF(sorted_methods); in object_new()
/aosp_15_r20/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()