• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/gcc/cp/

Lines Matching defs:init

805   tree init = NULL_TREE;
869 init = tree_cons (NULL_TREE, vtable_ptr, init);
871 init = tree_cons (NULL_TREE, decay_conversion (name_decl), init);
873 init = build_constructor_from_list (NULL_TREE, nreverse (init));
874 TREE_CONSTANT (init) = 1;
875 TREE_INVARIANT (init) = 1;
876 TREE_STATIC (init) = 1;
877 init = tree_cons (NULL_TREE, init, NULL_TREE);
879 return init;
889 tree init = tinfo_base_init (ti, target);
891 init = build_constructor_from_list (NULL_TREE, init);
892 TREE_CONSTANT (init) = 1;
893 TREE_INVARIANT (init) = 1;
894 TREE_STATIC (init) = 1;
895 return init;
905 tree init = tinfo_base_init (ti, target);
912 init = tree_cons (NULL_TREE, build_int_cst (NULL_TREE, flags), init);
913 init = tree_cons (NULL_TREE,
915 init);
917 init = build_constructor_from_list (NULL_TREE, nreverse (init));
918 TREE_CONSTANT (init) = 1;
919 TREE_INVARIANT (init) = 1;
920 TREE_STATIC (init) = 1;
921 return init;
932 tree init = tinfo_base_init (ti, target);
942 init = tree_cons (NULL_TREE, build_int_cst (NULL_TREE, flags), init);
943 init = tree_cons (NULL_TREE,
945 init);
946 init = tree_cons (NULL_TREE,
948 init);
950 init = build_constructor_from_list (NULL_TREE, nreverse (init));
951 TREE_CONSTANT (init) = 1;
952 TREE_INVARIANT (init) = 1;
953 TREE_STATIC (init) = 1;
954 return init;
964 tree init = tinfo_base_init (ti, target);
966 TREE_CHAIN (init) = trail;
967 init = build_constructor_from_list (NULL_TREE, init);
968 TREE_CONSTANT (init) = 1;
969 TREE_INVARIANT (init) = 1;
970 TREE_STATIC (init) = 1;
971 return init;
1488 tree init;
1491 init = get_pseudo_ti_init (type, get_pseudo_ti_index (type));
1492 DECL_INITIAL (decl) = init;
1494 finish_decl (decl, init, NULL_TREE);