Home | History | Annotate | Download | only in Basic

Lines Matching refs:Roots

422 ///   'roots': [
466 std::vector<Entry *> Roots; ///< The root(s) of the virtual file system.
489 /// \brief Looks up \p Path in \c Roots.
778 KeyStatusPair("roots", true),
784 // Parse configuration and 'roots'
795 if (Key == "roots") {
796 yaml::SequenceNode *Roots = dyn_cast<yaml::SequenceNode>(I->getValue());
797 if (!Roots) {
802 for (yaml::SequenceNode::iterator I = Roots->begin(), E = Roots->end();
805 FS->Roots.push_back(E);
851 VFSFromYAML::~VFSFromYAML() { llvm::DeleteContainerPointers(Roots); }
891 for (std::vector<Entry *>::iterator I = Roots.begin(), E = Roots.end();
1086 OS << " 'roots': [\n";