Lines Matching defs:recurse_lvl
449 PyObject **literal, int recurse_lvl, Token *t)
491 if (recurse_lvl == 0) {
539 fstring_parse(Parser *p, const char **str, const char *end, int raw, int recurse_lvl,
558 fstring_find_expr(Parser *p, const char **str, const char *end, int raw, int recurse_lvl,
587 if (recurse_lvl >= 2) {
804 format_spec = fstring_parse(p, str, end, raw, recurse_lvl+1,
875 int recurse_lvl, PyObject **literal,
884 result = fstring_find_literal(p, str, end, raw, literal, recurse_lvl, t);
907 if (fstring_find_expr(p, str, end, raw, recurse_lvl, expr_text,
1116 const char *end, int raw, int recurse_lvl,
1132 int result = fstring_find_literal_and_expr(p, str, end, raw, recurse_lvl,
1180 /* If recurse_lvl is zero, then we must be at the end of the
1183 if (recurse_lvl == 0 && *str < end-1) {
1187 if (recurse_lvl != 0 && **str != '}') {
1250 int recurse_lvl, Token *first_token, Token* t, Token *last_token)
1255 if (_PyPegen_FstringParser_ConcatFstring(p, &state, str, end, raw, recurse_lvl,