Lines Matching refs:group
1428 corpus_group* group = corpus->get_group();
1429 if (!group)
4507 // For an abi-corpus as part of an abi-corpus group, only omit the path, but
4595 /// Serialize an ABI corpus group to a single native xml document.
4596 /// The root note of the resulting XML document is 'abi-corpus-group'.
4600 /// @param group the corpus group to serialize.
4607 const corpus_group_sptr& group,
4611 if (!group)
4618 out << "<abi-corpus-group ";
4621 if (!group->get_path().empty() && ctxt.get_write_corpus_path())
4622 out << " path='" << xml::escape_xml_string(group->get_path()) << "'";
4624 if (!group->get_architecture_name().empty() && ctxt.get_write_architecture())
4625 out << " architecture='" << group->get_architecture_name()<< "'";
4627 write_tracking_non_reachable_types(group, out);
4629 if (group->is_empty())
4639 group->get_corpora().begin();
4640 c != group->get_corpora().end();
4645 out << "</abi-corpus-group>\n";