HomeSort by relevance Sort by last modified time
    Searched refs:kwappl (Results 1 - 3 of 3) sorted by null

  /external/python/cpython2/Modules/
_functoolsmodule.c 160 PyObject *argappl, *kwappl; local
180 kwappl = kw;
181 Py_XINCREF(kwappl);
183 kwappl = PyDict_Copy(pto->kw);
184 if (kwappl == NULL) {
189 if (PyDict_Merge(kwappl, kw, 1) != 0) {
191 Py_DECREF(kwappl);
197 ret = PyObject_Call(pto->fn, argappl, kwappl);
199 Py_XDECREF(kwappl);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_functoolsmodule.c 165 PyObject *argappl = NULL, *kwappl = NULL; local
184 kwappl = kw;
187 kwappl = PyDict_Copy(pto->kw);
188 if (kwappl == NULL) {
193 if (PyDict_Merge(kwappl, kw, 1) != 0) {
195 Py_DECREF(kwappl);
201 ret = PyObject_Call(pto->fn, argappl, kwappl);
203 Py_XDECREF(kwappl);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_functoolsmodule.c 169 PyObject *argappl = NULL, *kwappl = NULL; local
188 kwappl = kw;
191 kwappl = PyDict_Copy(pto->kw);
192 if (kwappl == NULL) {
197 if (PyDict_Merge(kwappl, kw, 1) != 0) {
199 Py_DECREF(kwappl);
205 ret = PyObject_Call(pto->fn, argappl, kwappl);
207 Py_XDECREF(kwappl);

Completed in 330 milliseconds