Lines Matching defs:result
136 void* _PyPegen_expect_forced_result(Parser *p, void* result, const char* expected);
188 CHECK_CALL(Parser *p, void *result)
190 if (result == NULL) {
194 return result;
200 CHECK_CALL_NULL_ALLOWED(Parser *p, void *result)
202 if (result == NULL && PyErr_Occurred()) {
205 return result;
208 #define CHECK(type, result) ((type) CHECK_CALL(p, result))
209 #define CHECK_NULL_ALLOWED(type, result) ((type) CHECK_CALL_NULL_ALLOWED(p, result))