Lines Matching defs:result
503 PyObject *result = NULL;
538 result = PyObject_Format(fieldobj, format_spec_object);
540 if (result == NULL)
543 if (_PyUnicodeWriter_WriteStr(writer, result) == -1)
549 Py_XDECREF(result);
796 compute the result and write it to output.
815 int result = 0;
852 result = 1;
858 return result;
873 int result;
881 while ((result = MarkupIterator_next(&iter, &literal, &field_present,
902 return result;
1008 int result = MarkupIterator_next(&it->it_markup, &literal, &field_present,
1014 assert(0 <= result && result <= 2);
1015 if (result == 0 || result == 1)
1164 int result;
1169 result = FieldNameIterator_next(&it->it_field, &is_attr,
1171 if (result == 0 || result == 1)
1175 PyObject* result = NULL;
1192 result = PyTuple_Pack(2, is_attr_obj, obj);
1197 return result;
1252 PyObject *result = NULL;
1287 result = PyTuple_Pack(2, first_obj, it);
1292 return result;