Home | History | Annotate | Download | only in Tooling

Lines Matching defs:Directory

19 //  To create a CompilationDatabase from a build directory one can call
42 /// \brief Specifies the working directory and command of a compilation.
45 CompileCommand(Twine Directory, Twine Filename,
47 : Directory(Directory.str()),
51 /// \brief The working directory the command was executed from.
52 std::string Directory;
81 /// \brief Loads a compilation database from a build directory.
88 /// compilation database for the build directory.
91 /// are named 'compile_commands.json' in the given directory. Extend this
105 /// Looks for a compilation database in directory 'SourceDir' and all
148 /// \brief Loads a compilation database from a build directory.
152 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) = 0;
185 /// \param Directory The base directory used in the FixedCompilationDatabase.
188 Twine Directory = ".");
190 /// \brief Constructs a compilation data base from a specified directory
192 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
196 /// Will always return a vector with one entry that contains the directory