Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_symtable.h13 typedef enum _block_type { FunctionBlock, ClassBlock, ModuleBlock, AnnotationBlock } enumerator
/third_party/python/Modules/
Dsymtablemodule.c90 if (PyModule_AddIntConstant(m, "TYPE_FUNCTION", FunctionBlock) < 0) in symtable_init_constants()
/third_party/python/Python/
Dsymtable.c100 st->st_cur->ste_type == FunctionBlock)) in ste_new()
815 if (ste->ste_type == FunctionBlock) { in analyze_block()
870 if (ste->ste_type == FunctionBlock && !analyze_cells(scopes, newfree)) in analyze_block()
1221 FunctionBlock, (void *)s, in symtable_visit_stmt()
1455 FunctionBlock, (void *)s, in symtable_visit_stmt()
1514 if (ste->ste_type == FunctionBlock) { in symtable_extend_namedexpr_scope()
1613 FunctionBlock, (void *)e, in symtable_visit_expr()
1724 st->st_cur->ste_type == FunctionBlock && in symtable_visit_expr()
2029 !symtable_enter_block(st, scope_name, FunctionBlock, (void *)e, in symtable_handle_comprehension()
Dcompile.c2989 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()
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/skia/third_party/externals/tint/src/resolver/
Dcompound_statement_test.cc31 TEST_F(ResolverCompoundStatementTest, FunctionBlock) { in TEST_F() argument