• Home
  • Raw
  • Download

Lines Matching refs:artifact_use_relation_tree

115 struct artifact_use_relation_tree  struct
117 artifact_use_relation_tree *root_node = nullptr; argument
120 artifact_use_relation_tree *parent = nullptr; argument
127 vector<unique_ptr<artifact_use_relation_tree>> artifact_users; argument
136 artifact_use_relation_tree(type_or_decl_base* t) in artifact_use_relation_tree() argument
151 add_artifact_user(artifact_use_relation_tree *user) in add_artifact_user() argument
154 artifact_users.push_back(unique_ptr<artifact_use_relation_tree>(user)); in add_artifact_user()
162 artifact_use_relation_tree(artifact_use_relation_tree &&o) in artifact_use_relation_tree() function
173 artifact_use_relation_tree& operator=(artifact_use_relation_tree&& o) in operator =() argument
212 artifact_use_relation_tree *root_node = get_root_node(); in artifact_in_tree() argument
227 artifact_use_relation_tree *root_node = get_root_node(); in record_artifact() argument
235 artifact_use_relation_tree*
248 artifact_use_relation_tree(const artifact_use_relation_tree&) = delete; argument
249 artifact_use_relation_tree& operator=(const artifact_use_relation_tree&) = delete;
265 artifact_use_relation_tree& tree) in fill_artifact_use_tree()
281 artifact_use_relation_tree *user_tree = in fill_artifact_use_tree()
282 new artifact_use_relation_tree(user); in fill_artifact_use_tree()
304 static unique_ptr<artifact_use_relation_tree>
308 unique_ptr<artifact_use_relation_tree> result; in build_type_use_tree()
319 unique_ptr<artifact_use_relation_tree> use_tree in build_type_use_tree()
320 (new artifact_use_relation_tree(type.get())); in build_type_use_tree()
379 emit_artifact_use_trace(const artifact_use_relation_tree& artifact_use_tree, in emit_artifact_use_trace()
439 emit_artifact_use_trace(const artifact_use_relation_tree& artifact_use_tree, in emit_artifact_use_trace()
461 unique_ptr<artifact_use_relation_tree> use_tree = in show_how_type_is_used()