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

  /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 CompileCommand *cmd = static_cast<CompileCommand *>(CCmd);
130 return static_cast<CompileCommand *>(CCmd)->CommandLine.size();
139 CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd)
    [all...]
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 43 struct CompileCommand {
44 CompileCommand() {}
45 CompileCommand(Twine Directory, Twine Filename,
119 virtual std::vector<CompileCommand> getCompileCommands(
131 virtual std::vector<CompileCommand> getAllCompileCommands() const = 0;
167 /// when a CompileCommand is requested. The argv[0] of the returned command
199 std::vector<CompileCommand>
211 std::vector<CompileCommand> getAllCompileCommands() const override;
216 std::vector<CompileCommand> CompileCommands;
JSONCompilationDatabase.h 78 std::vector<CompileCommand>
88 std::vector<CompileCommand> getAllCompileCommands() const override;
114 std::vector<CompileCommand> &Commands) const;
  /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;
228 std::vector<CompileCommand> &Commands) const {
Tooling.cpp 376 std::vector<CompileCommand> CompileCommandsForFile =
387 for (CompileCommand &CompileCommand : CompileCommandsForFile) {
396 CompileCommand.Directory))
398 Twine(CompileCommand.Directory) + "\n!");
403 if (SeenWorkingDirectories.insert(CompileCommand.Directory).second)
410 std::vector<std::string> CommandLine = CompileCommand.CommandLine;
412 CommandLine = ArgsAdjuster(CommandLine, CompileCommand.Filename);
CompilationDatabase.cpp 306 std::vector<CompileCommand>
308 std::vector<CompileCommand> Result(CompileCommands);
319 std::vector<CompileCommand>
321 return std::vector<CompileCommand>();
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 60 static std::vector<CompileCommand> getAllCompileCommands(StringRef JSONDatabase,
66 return std::vector<CompileCommand>();
104 std::vector<CompileCommand> Commands = getAllCompileCommands(
142 static CompileCommand findCompileArgsInJsonDatabase(StringRef FileName,
148 return CompileCommand();
149 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName);
152 return CompileCommand();
163 CompileCommand FoundCommand = findCompileArgsInJsonDatabase(
253 CompileCommand NotFound = findCompileArgsInJsonDatabase(
264 CompileCommand FoundCommand = 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 145 milliseconds