Lines Matching refs:args
215 call_with_frame(const char *funcname, int lineno, PyObject* func, PyObject* args,
220 res = PyObject_Call(func, args, NULL);
261 PyObject *args;
267 args = PyTuple_New(1);
268 if (args == NULL)
272 Py_DECREF(args);
278 PyTuple_SET_ITEM(args, 0, temp);
282 self->handlers[CharacterData], args, self);
285 Py_DECREF(args);
346 PyObject *container, *rv, *args;
405 args = string_intern(self, name);
406 if (args == NULL) {
410 args = Py_BuildValue("(NN)", args, container);
411 if (args == NULL) {
417 self->handlers[StartElement], args, self);
419 Py_DECREF(args);
433 PyObject *args = NULL; \
442 args = Py_BuildValue PARAM_FORMAT ;\
443 if (!args) { flag_error(self); return RETURN;} \
446 self->handlers[NAME], args, self); \
448 Py_DECREF(args); \
548 PyObject *args = NULL;
570 args = Py_BuildValue("NN", nameobj, modelobj);
571 if (args == NULL) {
577 self->handlers[ElementDecl], args, self);
586 Py_XDECREF(args);