Lines Matching refs:result
148 PyObject *result = _PyBytes_DecodeEscape(s, len, NULL, &first_invalid_escape);
149 if (result == NULL) {
155 Py_DECREF(result);
159 return result;
164 _PyPegen_parsestr parses it, and sets *result to decoded Python string object.
168 _PyPegen_parsestr(Parser *p, int *bytesmode, int *rawmode, PyObject **result,
181 *result = NULL;
270 *result = PyBytes_FromStringAndSize(s, len);
273 *result = decode_bytes_with_escapes(p, s, len, t);
278 *result = PyUnicode_DecodeUTF8Stateful(s, len, NULL, NULL);
281 *result = decode_unicode_with_escapes(p, s, len, t);
284 return *result == NULL ? -1 : 0;
356 expr_ty result = NULL;
430 result = expr;
436 return result;
457 int result = 0;
497 result = 1;
534 return result;
879 int result;
884 result = fstring_find_literal(p, str, end, raw, literal, recurse_lvl, t);
885 if (result < 0) {
889 assert(result == 0 || result == 1);
891 if (result == 1) {
1130 the f-string, expression will be NULL (unless result == 1,
1132 int result = fstring_find_literal_and_expr(p, str, end, raw, recurse_lvl,
1135 if (result < 0) {
1156 if (result == 1) {