Home
last modified time | relevance | path

Searched refs:expr_end (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Python/
Dast.c4297 fstring_compile_expr(const char *expr_start, const char *expr_end, in fstring_compile_expr() argument
4308 assert(expr_end >= expr_start); in fstring_compile_expr()
4310 assert(*expr_end == '}' || *expr_end == '!' || *expr_end == ':'); in fstring_compile_expr()
4316 for (s = expr_start; s != expr_end; s++) { in fstring_compile_expr()
4324 if (s == expr_end) { in fstring_compile_expr()
4329 len = expr_end - expr_start; in fstring_compile_expr()
4468 const char *expr_end; in fstring_find_expr() local
4581 expr_end = *str; in fstring_find_expr()
4601 simple_expression = fstring_compile_expr(expr_start, expr_end, c, n); in fstring_find_expr()