Home | History | Annotate | Download | only in Basic

Lines Matching defs:Roots

434 ///   'roots': [
478 std::vector<Entry *> Roots; ///< The root(s) of the virtual file system.
501 /// \brief Looks up \p Path in \c Roots.
793 KeyStatusPair("roots", true),
799 // Parse configuration and 'roots'
810 if (Key == "roots") {
811 yaml::SequenceNode *Roots = dyn_cast<yaml::SequenceNode>(I->getValue());
812 if (!Roots) {
817 for (yaml::SequenceNode::iterator I = Roots->begin(), E = Roots->end();
820 FS->Roots.push_back(E);
866 VFSFromYAML::~VFSFromYAML() { llvm::DeleteContainerPointers(Roots); }
906 for (std::vector<Entry *>::iterator I = Roots.begin(), E = Roots.end();
1102 OS << " 'roots': [\n";