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()
806 if (ste->ste_type == FunctionBlock) { in analyze_block()
859 if (ste->ste_type == FunctionBlock && !analyze_cells(scopes, newfree)) in analyze_block()
1210 FunctionBlock, (void *)s, in symtable_visit_stmt()
1450 FunctionBlock, (void *)s, in symtable_visit_stmt()
1509 if (ste->ste_type == FunctionBlock) { in symtable_extend_namedexpr_scope()
1606 FunctionBlock, (void *)e, in symtable_visit_expr()
1717 st->st_cur->ste_type == FunctionBlock && in symtable_visit_expr()
2021 !symtable_enter_block(st, scope_name, FunctionBlock, (void *)e, in symtable_handle_comprehension()
Dcompile.c3232 if (c->u->u_ste->ste_type != FunctionBlock) in compiler_return()
4281 if (c->u->u_ste->ste_type == FunctionBlock) in compiler_nameop()
4285 if (c->u->u_ste->ste_type == FunctionBlock) in compiler_nameop()
5859 if (c->u->u_ste->ste_type != FunctionBlock) in compiler_visit_expr1()
5870 if (c->u->u_ste->ste_type != FunctionBlock) in compiler_visit_expr1()
5883 if (c->u->u_ste->ste_type != FunctionBlock){ in compiler_visit_expr1()
7871 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