Searched refs:function_def (Results 1 – 5 of 5) sorted by relevance
| /third_party/python/Parser/ |
| D | pegen.c | 2242 _PyPegen_function_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty function_def) in _PyPegen_function_def_decorators() argument 2244 assert(function_def != NULL); in _PyPegen_function_def_decorators() 2245 if (function_def->kind == AsyncFunctionDef_kind) { in _PyPegen_function_def_decorators() 2247 function_def->v.FunctionDef.name, function_def->v.FunctionDef.args, in _PyPegen_function_def_decorators() 2248 function_def->v.FunctionDef.body, decorators, function_def->v.FunctionDef.returns, in _PyPegen_function_def_decorators() 2249 function_def->v.FunctionDef.type_comment, function_def->lineno, in _PyPegen_function_def_decorators() 2250 function_def->col_offset, function_def->end_lineno, function_def->end_col_offset, in _PyPegen_function_def_decorators() 2255 function_def->v.FunctionDef.name, function_def->v.FunctionDef.args, in _PyPegen_function_def_decorators() 2256 function_def->v.FunctionDef.body, decorators, in _PyPegen_function_def_decorators() 2257 function_def->v.FunctionDef.returns, in _PyPegen_function_def_decorators() [all …]
|
| /third_party/mesa3d/src/microsoft/compiler/ |
| D | dxil_module.c | 397 if (!types_equal(lhs->function_def.ret_type, in types_equal() 398 rhs->function_def.ret_type)) in types_equal() 400 retval = type_list_equal(&lhs->function_def.args, &rhs->function_def.args); in types_equal() 898 type->function_def.args.types = ralloc_array(type, in dxil_module_add_function_type() 901 if (!type->function_def.args.types) in dxil_module_add_function_type() 904 memcpy(type->function_def.args.types, arg_types, in dxil_module_add_function_type() 906 type->function_def.args.num_types = num_arg_types; in dxil_module_add_function_type() 907 type->function_def.ret_type = ret_type; in dxil_module_add_function_type() 1444 assert(type->function_def.args.num_types < ARRAY_SIZE(temp) - 3); in emit_function_type() 1445 assert(type->function_def.ret_type->id >= 0); in emit_function_type() [all …]
|
| D | dxil_dump.c | 225 dump_type_name(d, type->function_def.ret_type); in dump_type_name() 227 for (size_t i = 0; i < type->function_def.args.num_types; ++i) { in dump_type_name() 230 dump_type_name(d, type->function_def.args.types[i]); in dump_type_name() 468 assert(call->num_args == call->func->type->function_def.args.num_types); in dump_instr_call() 469 struct dxil_type **func_arg_types = call->func->type->function_def.args.types; in dump_instr_call()
|
| D | dxil_internal.h | 65 } function_def; member
|
| /third_party/python/Grammar/ |
| D | python.gram | 82 | &('def' | '@' | ASYNC) function_def 398 function_def[stmt_ty]:
|