Lines Matching defs:new_init
6484 tree new_init;
6498 new_init = first_initializer_p;
6500 new_init = build_constructor (init_list_type_node, NULL);
6506 return new_init;
6524 CONSTRUCTOR_IS_DESIGNATED_INIT (new_init) = true;
6538 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
6541 TREE_CONSTANT (new_init) = false;
6548 return new_init;
6624 tree new_init;
6629 new_init = build_constructor (init_list_type_node, NULL);
6660 return new_init;
6692 CONSTRUCTOR_IS_DESIGNATED_INIT (new_init) = true;
6795 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
6821 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init),
6827 return new_init;
7071 tree new_init;
7073 new_init = reshape_init_class (type, d, first_initializer_p, complain);
7075 new_init = reshape_init_array (type, d, first_initializer_p, complain);
7077 new_init = reshape_init_vector (type, d, complain);
7082 && TREE_CODE (new_init) == CONSTRUCTOR)
7083 CONSTRUCTOR_BRACES_ELIDED_P (new_init) = true;
7085 return new_init;
7108 tree new_init;
7155 new_init = reshape_init_r (type, &d, init, complain);
7156 if (new_init == error_mark_node)
7169 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
7170 CONSTRUCTOR_IS_DIRECT_INIT (new_init) = true;
7172 && BRACE_ENCLOSED_INITIALIZER_P (new_init))
7173 CONSTRUCTOR_IS_DESIGNATED_INIT (new_init) = true;
7175 return new_init;
7443 tree new_init = NULL_TREE;
7446 new_init = build_cplus_new (type, init_code, tf_none);
7449 new_init = build_functional_cast (input_location, type,
7451 if (new_init)
7453 init = new_init;