Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dsymtable.c57 ste->ste_type = block; in ste_new()
69 st->st_cur->ste_type == FunctionBlock)) in ste_new()
118 {"type", T_INT, OFF(ste_type), READONLY},
486 if (ste->ste_type != FunctionBlock || !ste->ste_unoptimized in check_unoptimized()
659 if (ste->ste_type == ClassBlock) { in analyze_block()
674 if (ste->ste_type != ClassBlock) { in analyze_block()
675 if (ste->ste_type == FunctionBlock) { in analyze_block()
710 if (ste->ste_type == FunctionBlock && !analyze_cells(scope, newfree)) in analyze_block()
713 ste->ste_type == ClassBlock)) in analyze_block()
1423 if (st->st_cur->ste_type != ModuleBlock) { in symtable_visit_alias()
Dcompile.c2087 if (c->u->u_ste->ste_type != FunctionBlock) in compiler_visit_stmt()
2339 if (c->u->u_ste->ste_type == FunctionBlock) in compiler_nameop()
2343 if (c->u->u_ste->ste_type == FunctionBlock && in compiler_nameop()
3009 if (c->u->u_ste->ste_type != FunctionBlock) in compiler_visit_expr()
3770 if (ste->ste_type != ModuleBlock) in compute_code_flags()
3772 if (ste->ste_type == FunctionBlock) { in compute_code_flags()
/external/python/cpython2/Include/
Dsymtable.h32 _Py_block_ty ste_type; /* module, class, or function */ member