Searched refs:kwds (Results 1 – 3 of 3) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/pyext/ |
D | repeated_composite_container.cc | 363 PyObject* kwds) { in SortPythonMessages() argument 367 if (PyObject_Call(m.get(), args, kwds) == NULL) in SortPythonMessages() 377 PyObject* kwds) { in Sort() argument 380 if (kwds != NULL) { in Sort() 381 PyObject* sort_func = PyDict_GetItemString(kwds, "sort_function"); in Sort() 385 PyDict_SetItemString(kwds, "cmp", sort_func); in Sort() 386 PyDict_DelItemString(kwds, "sort_function"); in Sort() 393 if (SortPythonMessages(self, args, kwds) < 0) { in Sort()
|
D | repeated_scalar_container.cc | 602 PyObject* kwds) { in Sort() argument 605 if (kwds != NULL) { in Sort() 606 PyObject* sort_func = PyDict_GetItemString(kwds, "sort_function"); in Sort() 610 if (PyDict_SetItemString(kwds, "cmp", sort_func) == -1) in Sort() 612 if (PyDict_DelItemString(kwds, "sort_function") == -1) in Sort() 629 ScopedPyObjectPtr res(PyObject_Call(m.get(), args, kwds)); in Sort()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/ |
D | containers.py | 148 def update(*args, **kwds): argument 166 for key, value in kwds.items():
|