Home
last modified time | relevance | path

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

/third_party/python/Python/
Dsymtable.c86 ste->ste_type = block; in ste_new()
100 st->st_cur->ste_type == FunctionBlock)) in ste_new()
158 {"type", T_INT, OFF(ste_type), READONLY},
790 if (ste->ste_type == ClassBlock) { in analyze_block()
813 if (ste->ste_type != ClassBlock) { in analyze_block()
815 if (ste->ste_type == FunctionBlock) { in analyze_block()
870 if (ste->ste_type == FunctionBlock && !analyze_cells(scopes, newfree)) in analyze_block()
872 else if (ste->ste_type == ClassBlock && !drop_class_free(ste, newfree)) in analyze_block()
876 ste->ste_type == ClassBlock)) in analyze_block()
1514 if (ste->ste_type == FunctionBlock) { in symtable_extend_namedexpr_scope()
[all …]
Dcompile.c74 && (c->u->u_ste->ste_type == ModuleBlock))
2989 if (c->u->u_ste->ste_type != FunctionBlock) in compiler_return()
3712 if (c->u->u_ste->ste_type == FunctionBlock) in compiler_nameop()
3716 if (c->u->u_ste->ste_type == FunctionBlock) in compiler_nameop()
3734 op = (c->u->u_ste->ste_type == ClassBlock) ? LOAD_CLASSDEREF : LOAD_DEREF; in compiler_nameop()
5213 if (c->u->u_ste->ste_type != FunctionBlock) in compiler_visit_expr1()
5224 if (c->u->u_ste->ste_type != FunctionBlock) in compiler_visit_expr1()
5237 if (c->u->u_ste->ste_type != FunctionBlock){ in compiler_visit_expr1()
6809 if (ste->ste_type == FunctionBlock) { in compute_code_flags()
/third_party/python/Include/internal/
Dpycore_symtable.h52 _Py_block_ty ste_type; /* module, class or function */ member