Lines Matching defs:group
2032 /// supposed to be a corpus or a corpus group and set the format
2039 /// set to an XML element representing a corpus or a corpus group.
2063 /// Parse the input XML document containing an ABI corpus group,
2064 /// represented by an 'abi-corpus-group' element node, associated to
2069 /// @return the corpus group resulting from the parsing
2080 // The document must start with the abi-corpus-group node.
2087 BAD_CAST("abi-corpus-group")))
2098 corpus_group_sptr group = rdr.corpus_group();
2100 handle_version_attribute(reader, *group);
2104 group->set_path(reinterpret_cast<char*>(path_str.get()));
2123 /// De-serialize an ABI corpus group from an input XML document which
2124 /// root node is 'abi-corpus-group'.
2133 /// @return the resulting corpus group de-serialized from the parsing.
2134 /// This is non-null iff the parsing resulted in a valid corpus group.
2143 /// De-serialize an ABI corpus group from an XML document file which
2144 /// root node is 'abi-corpus-group'.
2154 /// @return the resulting corpus group de-serialized from the parsing.
2156 /// group.
2162 corpus_group_sptr group = read_corpus_group_from_input(*rdr);
2163 return group;