OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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, ArrayRef<std::string> CommandLine)
103
virtual std::vector<
CompileCommand
> getCompileCommands(
111
virtual std::vector<
CompileCommand
> getAllCompileCommands() const = 0;
147
/// when a
CompileCommand
is requested. The argv[0] of the returned command
179
virtual std::vector<
CompileCommand
> getCompileCommands(
191
virtual std::vector<
CompileCommand
> getAllCompileCommands() const;
196
std::vector<
CompileCommand
> CompileCommands;
JSONCompilationDatabase.h
70
virtual std::vector<
CompileCommand
> getCompileCommands(
80
virtual std::vector<
CompileCommand
> getAllCompileCommands() const;
100
std::vector<
CompileCommand
> &Commands) const;
Tooling.h
230
std::vector< std::pair<std::string,
CompileCommand
> > CompileCommands;
/external/clang/tools/libclang/
CXCompilationDatabase.cpp
40
std::vector<
CompileCommand
> CCmd;
42
AllocatedCXCompileCommands(const std::vector<
CompileCommand
>& Cmd)
52
const std::vector<
CompileCommand
>
64
const std::vector<
CompileCommand
> CCmd(db->getAllCompileCommands());
111
CompileCommand
*cmd = static_cast<
CompileCommand
*>(CCmd);
121
return static_cast<
CompileCommand
*>(CCmd)->CommandLine.size();
130
CompileCommand
*Cmd = static_cast<
CompileCommand
*>(CCmd);
/external/clang/lib/Tooling/
CompilationDatabase.cpp
120
CompileCommands.push_back(
CompileCommand
(Directory, ToolCommandLine));
123
std::vector<
CompileCommand
>
125
std::vector<
CompileCommand
> Result(CompileCommands);
135
std::vector<
CompileCommand
>
137
return std::vector<
CompileCommand
>();
JSONCompilationDatabase.cpp
173
std::vector<
CompileCommand
>
182
return std::vector<
CompileCommand
>();
186
return std::vector<
CompileCommand
>();
187
std::vector<
CompileCommand
> Commands;
207
std::vector<
CompileCommand
>
209
std::vector<
CompileCommand
> Commands;
220
std::vector<
CompileCommand
> &Commands) const {
224
Commands.push_back(
CompileCommand
(
Tooling.cpp
247
std::vector<
CompileCommand
> CompileCommandsForFile =
/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 151 milliseconds