HomeSort by: relevance | last modified time | path
    Searched refs:CommandLine (Results 1 - 23 of 23) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Tooling/
GuessTargetAndModeCompilationDatabase.cpp 41 if (Cmd.CommandLine.empty())
43 addTargetAndModeForProgramName(Cmd.CommandLine, Cmd.CommandLine.front());
Tooling.cpp 246 void addTargetAndModeForProgramName(std::vector<std::string> &CommandLine,
248 if (CommandLine.empty() || InvokedAs.empty())
266 // Skip CommandLine[0].
267 for (auto Token = ++CommandLine.begin(); Token != CommandLine.end();
275 CommandLine.insert(++CommandLine.begin(), TargetMode.DriverMode);
278 CommandLine.insert(++CommandLine.begin(),
303 std::vector<std::string> CommandLine, ToolAction *Action
    [all...]
ExpandResponseFilesCompilationDatabase.cpp 12 #include "llvm/Support/CommandLine.h"
54 Argv.reserve(Cmd.CommandLine.size());
55 for (auto &Arg : Cmd.CommandLine) {
65 // Don't assign directly, Argv aliases CommandLine.
67 Cmd.CommandLine = std::move(ExpandedArgv);
InterpolatingCompilationDatabase.cpp 127 // Flags that should not apply to all files are stripped from CommandLine.
138 ClangCLMode(checkIsCLMode(Cmd.CommandLine)) {
139 std::vector<std::string> OldArgs = std::move(Cmd.CommandLine);
140 Cmd.CommandLine.clear();
157 Cmd.CommandLine.emplace_back(OldArgs.front());
197 Cmd.CommandLine.insert(Cmd.CommandLine.end(),
229 Result.CommandLine.push_back(std::string(Flag));
231 Result.CommandLine.push_back("-x");
232 Result.CommandLine.push_back(types::getTypeName(TargetType))
    [all...]
CompilationDatabase.cpp 333 std::vector<const char *> CommandLine(DoubleDash + 1, Argv + Argc);
337 if (!stripPositionalArgs(CommandLine, StrippedArgs, ErrorMsg))
372 const Twine &Directory, ArrayRef<std::string> CommandLine) {
375 CommandLine.begin(), CommandLine.end());
384 Result[0].CommandLine.push_back(std::string(FilePath));
CommonOptionsParser.cpp 28 #include "llvm/Support/CommandLine.h"
79 Command.CommandLine = Adjuster(Command.CommandLine, Command.Filename);
JSONCompilationDatabase.cpp 26 #include "llvm/Support/CommandLine.h"
54 CommandLineArgumentParser(StringRef CommandLine)
55 : Input(CommandLine), Position(Input.begin()-1) {}
62 CommandLine.push_back(Argument);
64 return CommandLine;
132 std::vector<std::string> CommandLine;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
CompilationDatabase.h 47 std::vector<std::string> CommandLine, const Twine &Output)
49 CommandLine(std::move(CommandLine)), Output(Output.str()) {}
58 std::vector<std::string> CommandLine;
70 LHS.CommandLine == RHS.CommandLine && LHS.Output == RHS.Output &&
200 ArrayRef<std::string> CommandLine);
230 /// to commandline when they can be deduced from argv[0] of commandline returned
236 /// files on commandline returned by underlying database
    [all...]
Tooling.h 236 /// \param CommandLine The command line arguments to clang. Note that clang
237 /// uses its binary name (CommandLine[0]) to locate its builtin headers.
245 ToolInvocation(std::vector<std::string> CommandLine,
252 /// \param CommandLine The command line arguments to clang.
257 ToolInvocation(std::vector<std::string> CommandLine, ToolAction *Action,
279 std::vector<std::string> CommandLine;
472 /// Changes CommandLine to contain implicit flags that would have been
477 /// be inserted after the first argument in \c CommandLine.
480 /// are already present in `CommandLine` (even if they have different settings
485 /// \param CommandLine the command line used to invoke the compiler driver o
    [all...]
  /src/sys/external/bsd/acpica/dist/debugger/
dbhistry.c 76 * PARAMETERS: CommandLine - Command to add
86 char *CommandLine)
93 CmdLen = (UINT16) strlen (CommandLine);
119 CommandLine);
dbinput.c 797 char *CommandLine;
955 CommandLine = AcpiDbGetFromHistory (AcpiGbl_DbArgs[1]);
956 if (!CommandLine)
961 Status = AcpiDbCommandDispatch (CommandLine, WalkState, Op);
966 CommandLine = AcpiDbGetFromHistory (NULL);
967 if (!CommandLine)
972 Status = AcpiDbCommandDispatch (CommandLine, WalkState, Op);
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXCompilationDatabase.cpp 128 return static_cast<CompileCommand *>(CCmd)->CommandLine.size();
139 if (Arg >= Cmd->CommandLine.size())
142 return cxstring::createRef(Cmd->CommandLine[Arg].c_str());
  /src/external/apache2/llvm/dist/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 38 #include "llvm/Support/CommandLine.h"
317 std::string CommandLine(ProgramToRun);
322 errs() << ToolName << ": Failed to find program: '" << CommandLine
331 CommandLine.push_back(' ');
332 CommandLine.append(Arg);
337 << ToolName << ": Command Line: " << CommandLine << '\n';
351 const_cast<LPSTR>(CommandLine.c_str()),
  /src/external/apache2/llvm/dist/llvm/tools/bugpoint/
ToolRunner.cpp 15 #include "llvm/Support/CommandLine.h"
332 // Tokenize the CommandLine to the command and the args to allow
354 const std::string &CommandLine, std::string &CmdPath,
363 for (std::size_t Pos = 0u; Pos <= CommandLine.size(); ++Pos) {
364 if ('\\' == CommandLine[Pos]) {
365 if (Pos + 1 < CommandLine.size())
366 Token.push_back(CommandLine[++Pos]);
370 if (' ' == CommandLine[Pos] || CommandLine.size() == Pos) {
385 Token.push_back(CommandLine[Pos])
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acdebug.h 411 char *CommandLine);
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDriver.cpp 220 std::string CommandLine = Cmd.toString();
221 Printf("%s\n", CommandLine.c_str());
396 std::string CommandLine = Cmd.toString();
397 Printf("CRASH_MIN: executing: %s\n", CommandLine.c_str());
416 CommandLine = Cmd.toString();
417 Printf("CRASH_MIN: executing: %s\n", CommandLine.c_str());
  /src/external/apache2/llvm/lib/libLLVMSupport/
Makefile 34 CommandLine.cpp \
  /src/sys/external/bsd/gnu-efi/dist/inc/
efishell.h 109 IN CHAR16 *CommandLine OPTIONAL,
  /src/external/bsd/libevent/dist/
event_rpcgen.py 1829 class CommandLine(object):
1832 from a command-line with CommandLine(sys.argv). If you're
1910 CommandLine(argv=argv).run()
  /src/external/bsd/ntp/dist/sntp/libevent/
event_rpcgen.py 1829 class CommandLine(object):
1832 from a command-line with CommandLine(sys.argv). If you're
1910 CommandLine(argv=argv).run()
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeRecord.h 682 CommandLine, ///< Full canonical command line (maybe -cc1)
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 110 #include "llvm/Support/CommandLine.h"
1855 // Emit bytes for llvm.commandline metadata.
2349 MCSection *CommandLine = getObjFileLowering().getSectionForCommandLines();
2350 if (!CommandLine)
2353 const NamedMDNode *NMD = M.getNamedMetadata("llvm.commandline");
2358 OutStreamer->SwitchSection(CommandLine);
2363 "llvm.commandline metadata entry can have only one operand");
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenModule.cpp 61 #include "llvm/Support/CommandLine.h"
6135 TheModule.getOrInsertNamedMetadata("llvm.commandline");
6136 std::string CommandLine = getCodeGenOpts().RecordCommandLine;
6139 llvm::Metadata *CommandLineNode[] = {llvm::MDString::get(Ctx, CommandLine)};

Completed in 73 milliseconds