Home
last modified time | relevance | path

Searched refs:init_list (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/bsd/pcc/dist/pcc/cc/ccom/
H A Dcgram.y779 | xnfdeclarator '=' begbr init_list optcomma '}' {
790 | ibrace init_list optcomma '}' { $$ = NULL; }
794 init_list: designation initializer { dainit($1, $2); }
795 | init_list ',' designation initializer { dainit($3, $4); }
1203 | '(' cast_type ')' clbrace init_list optcomma '}' {
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cxxcom/
H A Dcgram.y812 | xnfdeclarator '=' begbr init_list optcomma '}' {
825 | ibrace init_list optcomma '}' { $$ = NULL; }
829 init_list: designation initializer { dainit($1, $2); }
830 | init_list ',' designation initializer { dainit($3, $4); }
1230 | '(' cast_type ')' clbrace init_list optcomma '}' {
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dinit.c2415 tree init_list; in build_raw_new_expr() local
2423 init_list = NULL_TREE; in build_raw_new_expr()
2425 init_list = void_node; in build_raw_new_expr()
2427 init_list = build_tree_list_vec (init); in build_raw_new_expr()
2431 init_list); in build_raw_new_expr()
H A Dcall.c3936 tree init_list = (*args)[nart]; in add_list_candidates() local
3939 if (CONSTRUCTOR_NELTS (init_list) == 0 in add_list_candidates()
3956 vec_alloc (new_args, nart + CONSTRUCTOR_NELTS (init_list)); in add_list_candidates()
3959 for (unsigned i = 0; i < CONSTRUCTOR_NELTS (init_list); ++i) in add_list_candidates()
3960 new_args->quick_push (CONSTRUCTOR_ELT (init_list, i)->value); in add_list_candidates()
10274 tree init_list = (*user_args)[skip]; in build_new_method_call_1() local
10284 if (CONSTRUCTOR_NELTS (init_list) == 0 in build_new_method_call_1()
10296 init = reshape_init (basetype, init_list, complain); in build_new_method_call_1()
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dinit.cc2654 tree init_list; in build_raw_new_expr() local
2662 init_list = NULL_TREE; in build_raw_new_expr()
2664 init_list = void_node; in build_raw_new_expr()
2666 init_list = build_tree_list_vec (init); in build_raw_new_expr()
2670 init_list); in build_raw_new_expr()
H A Dcall.cc4084 tree init_list = (*args)[nart]; in add_list_candidates() local
4087 if (CONSTRUCTOR_NELTS (init_list) == 0 in add_list_candidates()
4101 else if (CONSTRUCTOR_IS_DESIGNATED_INIT (init_list) in add_list_candidates()
4112 vec_alloc (new_args, nart + CONSTRUCTOR_NELTS (init_list)); in add_list_candidates()
4115 for (unsigned i = 0; i < CONSTRUCTOR_NELTS (init_list); ++i) in add_list_candidates()
4116 new_args->quick_push (CONSTRUCTOR_ELT (init_list, i)->value); in add_list_candidates()
11009 tree init_list = (*user_args)[skip]; in build_new_method_call() local
11019 if (CONSTRUCTOR_NELTS (init_list) == 0 in build_new_method_call()
11031 init = reshape_init (basetype, init_list, complain); in build_new_method_call()
H A DChangeLog-20091682 * call.c (compare_ics): Give list-initialization of std::init_list
H A DChangeLog-20182689 init_list.
/netbsd-src/external/gpl3/gdb/dist/sim/common/
H A DChangeLog-20217551 * sim-base.h (sim_state_base): New members init_list, uninstall_list,