Lines Matching refs:path
598 /// @param path the path to the file containing the ABI corpus.
599 corpus::corpus(const ir::environment& env, const string& path)
601 priv_.reset(new priv(path, env));
616 /// Note that two translation units with the same path (as returned by
628 // Update the path -> translation_unit map.
645 /// Find the translation unit that has a given path.
647 /// @param path the path of the translation unit to look for.
652 corpus::find_translation_unit(const string &path) const
655 priv_->path_tu_map.find(path);
871 /// Get the file path associated to the corpus file.
874 /// the abi file expected at this path; likewise, a call to
876 /// the corpus object into the on-disk file at this path.
878 /// @return the file path associated to the current corpus.
881 {return priv_->path;}
883 /// Set the file path associated to the corpus file.
886 /// the abi file expected at this path; likewise, a call to
888 /// the corpus object into the on-disk file at this path.
890 /// @param path the new file path to assciate to the current corpus.
892 corpus::set_path(const string& path)
893 {priv_->path = path;}
1671 /// @param path the path to the file represented by the corpus group.
1672 corpus_group::corpus_group(const environment& env, const string& path = "")
1673 : corpus(env, path), priv_(new priv)