Searched refs:cont_type (Results 1 – 3 of 3) sorted by relevance
/reactos/sdk/tools/widl/ |
H A D | expr.c | 428 if (!cont_type || !is_integer_type(type)) in check_integer_type() 442 if (cont_type) in find_identifier() 444 switch (type_get_type(cont_type)) in find_identifier() 447 fields = type_function_get_args(cont_type); in find_identifier() 450 fields = type_struct_get_fields(cont_type); in find_identifier() 454 fields = type_union_get_cases(cont_type); in find_identifier() 554 check_scalar_type(expr_loc, cont_type, result.type); in resolve_expression() 561 check_integer_type(expr_loc, cont_type, result.type); in resolve_expression() 616 check_scalar_type(expr_loc, cont_type, result.type); in resolve_expression() 687 expr_type = resolve_expression(expr_loc, cont_type, expr); in expr_resolve_type() [all …]
|
H A D | expr.h | 37 extern const type_t *expr_resolve_type(const struct expr_loc *expr_loc, const type_t *cont_type, co… 41 const type_t *cont_type, const char *local_var_prefix);
|
H A D | typegen.c | 58 const type_t *cont_type; member 1603 if (!cont_type) /* top-level conformance */ in write_conf_or_var_desc() 1607 cont_type = current_func->type; in write_conf_or_var_desc() 1613 name = cont_type->name; in write_conf_or_var_desc() 1668 if (type_get_type(cont_type) == TYPE_FUNCTION) in write_conf_or_var_desc() 1670 var_list_t *args = type_get_function_args( cont_type ); in write_conf_or_var_desc() 1686 var_list_t *fields = type_struct_get_fields( cont_type ); in write_conf_or_var_desc() 1774 if (eval->cont_type == cont_type || in write_conf_or_var_desc() 1775 (type_get_type( eval->cont_type ) == type_get_type( cont_type ) && in write_conf_or_var_desc() 1790 eval->cont_type = cont_type; in write_conf_or_var_desc() [all …]
|