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;
100 std::vector<CompileCommand> &Commands) const;
Tooling.h 296 std::vector< std::pair<std::string, CompileCommand> > CompileCommands;
  /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/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/lib/Tooling/
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 309 CompileCommand(Directory, std::move(ToolCommandLine)));
312 std::vector<CompileCommand>
314 std::vector<CompileCommand> Result(CompileCommands);
324 std::vector<CompileCommand>
326 return std::vector<CompileCommand>();
Tooling.cpp 280 std::vector<CompileCommand> CompileCommandsForFile =
283 for (CompileCommand &CompileCommand : CompileCommandsForFile) {
285 std::make_pair(File, std::move(CompileCommand)));
  /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 648 milliseconds