Lines Matching refs:expr_ty
346 /* Compile this expression in to an expr_ty. Add parens around the
348 static expr_ty
352 expr_ty expr = NULL;
356 expr_ty result = NULL;
538 static expr_ty
559 PyObject **expr_text, expr_ty *expression, Token *first_token,
566 expr_ty simple_expression;
567 expr_ty format_spec = NULL; /* Optional format specifier. */
876 PyObject **expr_text, expr_ty *expression,
948 ExprList_Append(ExprList *l, expr_ty exp)
960 l->p = PyMem_Malloc(sizeof(expr_ty) * new_size);
970 expr_ty *tmp = PyMem_Realloc(l->p, sizeof(expr_ty) * new_size);
1057 static expr_ty
1126 expr_ty expression = NULL;
1169 expr_ty last_str = make_str_node_and_del(p, &state->last_str, first_token, last_token);
1197 expr_ty. The expr_ty can be a Constant, or a JoinedStr. */
1198 expr_ty
1223 expr_ty str = make_str_node_and_del(p, &state->last_str, first_token, last_token);
1246 at end, parse it into an expr_ty. Return NULL on error. Adjust
1248 static expr_ty