HomeSort by relevance Sort by last modified time
    Searched refs:CompileCommand (Results 1 - 10 of 10) sorted by null

  /external/clang/include/clang/Tooling/
CompilationDatabase.h 43 struct CompileCommand {
44 CompileCommand() {}
45 CompileCommand(Twine Directory, std::vector<std::string> CommandLine)
113 virtual std::vector<CompileCommand> getCompileCommands(
125 virtual std::vector<CompileCommand> getAllCompileCommands() const = 0;
161 /// when a CompileCommand is requested. The argv[0] of the returned command
193 std::vector<CompileCommand>
205 std::vector<CompileCommand> getAllCompileCommands() const override;
210 std::vector<CompileCommand> CompileCommands;
JSONCompilationDatabase.h 70 std::vector<CompileCommand>
80 std::vector<CompileCommand> getAllCompileCommands() const override;
101 std::vector<CompileCommand> &Commands) const;
  /external/clang/tools/libclang/
CXCompilationDatabase.cpp 41 std::vector<CompileCommand> CCmd;
43 AllocatedCXCompileCommands(std::vector<CompileCommand> Cmd)
52 std::vector<CompileCommand> CCmd(db->getCompileCommands(CompleteFileName));
63 std::vector<CompileCommand> CCmd(db->getAllCompileCommands());
110 CompileCommand *cmd = static_cast<CompileCommand *>(CCmd);
120 return static_cast<CompileCommand *>(CCmd)->CommandLine.size();
129 CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd);
143 return static_cast<CompileCommand *>(CCmd)->MappedSources.size()
    [all...]
  /external/clang/lib/Tooling/
CommonOptionsParser.cpp 68 std::vector<CompileCommand>
77 std::vector<CompileCommand> getAllCompileCommands() const override {
85 std::vector<CompileCommand>
86 adjustCommands(std::vector<CompileCommand> Commands) const {
87 for (CompileCommand &Command : Commands)
JSONCompilationDatabase.cpp 172 std::vector<CompileCommand>
181 return std::vector<CompileCommand>();
185 return std::vector<CompileCommand>();
186 std::vector<CompileCommand> Commands;
206 std::vector<CompileCommand>
208 std::vector<CompileCommand> Commands;
219 std::vector<CompileCommand> &Commands) const {
223 Commands.push_back(CompileCommand(
CompilationDatabase.cpp 306 CompileCommand(Directory, std::move(ToolCommandLine)));
309 std::vector<CompileCommand>
311 std::vector<CompileCommand> Result(CompileCommands);
321 std::vector<CompileCommand>
323 return std::vector<CompileCommand>();
Tooling.cpp 330 std::vector<CompileCommand> CompileCommandsForFile =
341 for (CompileCommand &CompileCommand : CompileCommandsForFile) {
349 if (chdir(CompileCommand.Directory.c_str()))
351 Twine(CompileCommand.Directory) + "\n!");
352 std::vector<std::string> CommandLine = CompileCommand.CommandLine;
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 54 static std::vector<CompileCommand> getAllCompileCommands(StringRef JSONDatabase,
60 return std::vector<CompileCommand>();
98 std::vector<CompileCommand> Commands = getAllCompileCommands(
115 static CompileCommand findCompileArgsInJsonDatabase(StringRef FileName,
121 return CompileCommand();
122 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName);
125 return CompileCommand();
207 CompileCommand NotFound = findCompileArgsInJsonDatabase(
218 CompileCommand FoundCommand = findCompileArgsInJsonDatabase(
232 CompileCommand NotFound = findCompileArgsInJsonDatabase
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_cdb.py 4 from clang.cindex import CompileCommand
  /external/clang/bindings/python/clang/
cindex.py     [all...]

Completed in 2675 milliseconds