Lines Matching refs:CompileCommand

68 static std::vector<CompileCommand>
76 return std::vector<CompileCommand>(); in getAllCompileCommands()
125 std::vector<CompileCommand> Commands = getAllCompileCommands( in TEST()
174 static CompileCommand findCompileArgsInJsonDatabase(StringRef FileName, in findCompileArgsInJsonDatabase()
181 return CompileCommand(); in findCompileArgsInJsonDatabase()
184 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName); in findCompileArgsInJsonDatabase()
187 return CompileCommand(); in findCompileArgsInJsonDatabase()
198 CompileCommand FoundCommand = findCompileArgsInJsonDatabase( in TEST()
297 CompileCommand NotFound = findCompileArgsInJsonDatabase( in TEST()
308 CompileCommand FoundCommand = findCompileArgsInJsonDatabase( in TEST()
322 CompileCommand NotFound = findCompileArgsInJsonDatabase( in TEST()
337 CompileCommand FoundCommand = findCompileArgsInJsonDatabase( in TEST()
354 CompileCommand FoundCommand = findCompileArgsInJsonDatabase( in TEST()
377 CompileCommand FoundCommand = findCompileArgsInJsonDatabase( in TEST()
403 CompileCommand FoundCommand = in TEST()
415 CompileCommand FoundCommand = findCompileArgsInJsonDatabase( in unescapeJsonCommandLine()
519 std::vector<CompileCommand> Result = in TEST()
558 std::vector<CompileCommand> Result = CDB->getCompileCommands("/foo/bar.cc"); in TEST()
598 std::vector<CompileCommand> Result = in TEST()
615 std::vector<CompileCommand> Result = in TEST()
632 std::vector<CompileCommand> Result = in TEST()
651 std::vector<CompileCommand> Result = Database->getCompileCommands("source"); in TEST()
667 std::vector<CompileCommand> Result = in TEST()
678 using EntryMap = llvm::StringMap<SmallVector<CompileCommand, 1>>;
682 std::vector<CompileCommand> getCompileCommands(StringRef F) const override { in getCompileCommands()
847 CompileCommand CCRef("/foo/bar", "hello.c", {"a", "b"}, "hello.o"); in TEST()
848 CompileCommand CCTest = CCRef; in TEST()