Lines Matching refs:result
208 interpreter result to a Python string object.) This can be done by
233 then execute the command and pass back the result. If the main
710 PyObject *result = Tkinter_Error(v);
724 return (TkappObject *)result;
804 /* XXX Could cache result if it is non-ASCII. */
823 int result;
838 result = 0;
840 result = strcmp(Tcl_GetString(((PyTclObject *)self)->value),
842 Py_RETURN_RICHCOMPARE(result, 0, op);
893 Tcl_Obj *result;
918 result = Tcl_NewBignumObj(&bigValue);
920 if (result == NULL) {
924 return result;
930 Tcl_Obj *result;
996 result = Tcl_NewListObj((int)size, argv);
998 return result;
1041 result = Tcl_NewUnicodeObj((const Tcl_UniChar *)PyBytes_AS_STRING(encoded),
1044 result = Tcl_NewStringObj(PyBytes_AS_STRING(encoded), (int)size);
1047 return result;
1058 result = AsObj(v);
1060 return result;
1139 PyObject *result = NULL;
1171 result = fromWideIntObj(tkapp, value);
1172 if (result != NULL || PyErr_Occurred())
1173 return result;
1194 result = PyTuple_New(size);
1195 if (!result)
1200 Py_DECREF(result);
1205 Py_DECREF(result);
1208 PyTuple_SET_ITEM(result, i, elem);
1210 return result;
1338 may overwrite the interpreter result while we are
1902 PyObject *result;
1921 /* Don't use Tcl_GetInt() because it returns ambiguous result for value
1924 Prefer bignum because Tcl_GetWideIntFromObj returns ambiguous result for
1927 result = fromBignumObj(self, value);
1929 if (result != NULL || PyErr_Occurred())
1930 return result;
2731 int result;
2736 result = Tcl_DoOneEvent(0);
2743 result = Tcl_DoOneEvent(TCL_DONT_WAIT);
2746 if (result == 0)
2755 if (result < 0)
3199 int result;
3210 result = Tcl_DoOneEvent(TCL_DONT_WAIT);
3214 if (result == 0)
3218 if (result < 0)