Lines Matching defs:res
432 PyObject *res;
492 res = PyObject_CallMethodNoArgs(binary, &_Py_ID(close));
494 if (res)
495 Py_DECREF(res);
511 res = PyObject_CallMethodNoArgs(fob, &_Py_ID(close));
512 if (res) {
513 Py_DECREF(res);
665 int res = -1;
700 res = extract_anchors_from_stmt(segment_str, statement, left_anchor, right_anchor,
703 res = 0;
707 if (res > 0) {
720 return res;
778 int res = PyFile_WriteObject(line, f, Py_PRINT_RAW);
780 if (res < 0) {
855 int res = extract_anchors_from_line(filename, source_line, start_offset, end_offset,
858 if (res < 0 && ignore_source_errors() < 0) {