Searched refs:function_def (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Parser/ |
H A D | action_helpers.c | 763 /* Construct a FunctionDef equivalent to function_def, but with decorators */ 765 _PyPegen_function_def_decorators(Parser *p, asdl_expr_seq *decorators, stmt_ty function_def) in _PyPegen_function_def_decorators() argument 767 assert(function_def != NULL); in _PyPegen_function_def_decorators() 768 if (function_def->kind == AsyncFunctionDef_kind) { in _PyPegen_function_def_decorators() 770 function_def->v.FunctionDef.name, function_def->v.FunctionDef.args, in _PyPegen_function_def_decorators() 771 function_def->v.FunctionDef.body, decorators, function_def->v.FunctionDef.returns, in _PyPegen_function_def_decorators() 772 function_def->v.FunctionDef.type_comment, function_def in _PyPegen_function_def_decorators() [all...] |
/third_party/mesa3d/src/microsoft/compiler/ |
H A 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 in emit_function_type() [all...] |
H A 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()
|
H A D | dxil_internal.h | 65 } function_def; member
|
/third_party/toybox/toys/pending/ |
H A D | awk.c | 2291 static void function_def(void) in function_def() function 2418 function_def(); in rule()
|
Completed in 15 milliseconds