Searched refs:CommandLine (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Tooling/
H A DCompilationDatabase.h45 CompileCommand(Twine Directory, ArrayRef<std::string> CommandLine) argument
46 : Directory(Directory.str()), CommandLine(CommandLine) {}
52 std::vector<std::string> CommandLine; member in struct:clang::tooling::CompileCommand
172 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
H A DTooling.h128 /// \param CommandLine The command line arguments to clang. Note that clang
129 /// uses its binary name (CommandLine[0]) to locate its builtin headers.
135 ToolInvocation(ArrayRef<std::string> CommandLine, FrontendAction *ToolAction,
156 std::vector<std::string> CommandLine; member in class:clang::tooling::ToolInvocation
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Tooling/
H A DCompilationDatabase.cpp110 std::vector<std::string> CommandLine(DoubleDash + 1, Argv + Argc);
112 return new FixedCompilationDatabase(Directory, CommandLine);
116 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine) { argument
119 CommandLine.begin(), CommandLine.end());
126 Result[0].CommandLine.push_back(FilePath);
H A DTooling.cpp147 ArrayRef<std::string> CommandLine, FrontendAction *ToolAction,
149 : CommandLine(CommandLine.vec()), ToolAction(ToolAction), Files(Files) {
160 for (int I = 0, E = CommandLine.size(); I != E; ++I)
161 Argv.push_back(CommandLine[I].c_str());
295 std::vector<std::string> CommandLine = local
296 ArgsAdjuster->Adjust(CompileCommands[I].second.CommandLine);
297 assert(!CommandLine.empty());
298 CommandLine[0] = MainExecutable;
304 ToolInvocation Invocation(CommandLine, ActionFactor
146 ToolInvocation( ArrayRef<std::string> CommandLine, FrontendAction *ToolAction, FileManager *Files) argument
[all...]
H A DJSONCompilationDatabase.cpp33 CommandLineArgumentParser(StringRef CommandLine) argument
34 : Input(CommandLine), Position(Input.begin()-1) {}
41 CommandLine.push_back(Argument);
43 return CommandLine;
111 std::vector<std::string> CommandLine; member in class:clang::tooling::__anon3464::CommandLineArgumentParser
/freebsd-10.0-release/sys/contrib/dev/acpica/components/debugger/
H A Ddbhistry.c79 * PARAMETERS: CommandLine - Command to add
89 char *CommandLine)
96 CmdLen = (UINT16) ACPI_STRLEN (CommandLine);
116 CommandLine);
88 AcpiDbAddToHistory( char *CommandLine) argument
H A Ddbinput.c732 char *CommandLine; local
889 CommandLine = AcpiDbGetFromHistory (AcpiGbl_DbArgs[1]);
890 if (!CommandLine)
895 Status = AcpiDbCommandDispatch (CommandLine, WalkState, Op);
900 CommandLine = AcpiDbGetFromHistory (NULL);
901 if (!CommandLine)
906 Status = AcpiDbCommandDispatch (CommandLine, WalkState, Op);
/freebsd-10.0-release/lib/clang/libllvmsupport/
H A DMakefile15 CommandLine.cpp \
/freebsd-10.0-release/sys/contrib/dev/acpica/include/
H A Dacdebug.h386 char *CommandLine);
/freebsd-10.0-release/contrib/llvm/tools/bugpoint/
H A DToolRunner.cpp17 #include "llvm/Support/CommandLine.h"
371 // Tokenize the CommandLine to the command and the args to allow
380 static void lexCommand(std::string &Message, const std::string &CommandLine, argument
386 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
387 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
390 std::string token = CommandLine.substr(lastPos, pos - lastPos);
396 lastPos = CommandLine.find_first_not_of(delimiters, pos);
398 pos = CommandLine.find_first_of(delimiters, lastPos);

Completed in 135 milliseconds