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

/freebsd-9.3-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
186 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
H A DTooling.h182 /// \param CommandLine The command line arguments to clang. Note that clang
183 /// uses its binary name (CommandLine[0]) to locate its builtin headers.
189 ToolInvocation(ArrayRef<std::string> CommandLine, FrontendAction *FAction,
194 /// \param CommandLine The command line arguments to clang.
197 ToolInvocation(ArrayRef<std::string> CommandLine, ToolAction *Action,
223 std::vector<std::string> CommandLine; member in class:clang::tooling::ToolInvocation
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Tooling/
H A DTooling.cpp166 ToolInvocation::ToolInvocation(ArrayRef<std::string> CommandLine, argument
168 : CommandLine(CommandLine.vec()),
174 ToolInvocation::ToolInvocation(ArrayRef<std::string> CommandLine, argument
176 : CommandLine(CommandLine.vec()),
199 for (int I = 0, E = CommandLine.size(); I != E; ++I)
200 Argv.push_back(CommandLine[I].c_str());
347 std::vector<std::string> CommandLine = CompileCommands[I].second.CommandLine; local
[all...]
H A DCompilationDatabase.cpp287 std::vector<const char *> CommandLine(DoubleDash + 1, Argv + Argc);
291 if (!stripPositionalArgs(CommandLine, StrippedArgs))
297 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine) { argument
300 CommandLine.begin(), CommandLine.end());
307 Result[0].CommandLine.push_back(FilePath);
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::__anon3523::CommandLineArgumentParser
/freebsd-9.3-release/sys/contrib/dev/acpica/debugger/
H A Ddbhistry.c79 * PARAMETERS: CommandLine - Command to add
89 char *CommandLine)
95 CommandLine);
88 AcpiDbAddToHistory( char *CommandLine) argument
H A Ddbinput.c578 char *CommandLine; local
709 CommandLine = AcpiDbGetFromHistory (AcpiGbl_DbArgs[1]);
710 if (!CommandLine)
715 Status = AcpiDbCommandDispatch (CommandLine, WalkState, Op);
719 CommandLine = AcpiDbGetFromHistory (NULL);
720 if (!CommandLine)
725 Status = AcpiDbCommandDispatch (CommandLine, WalkState, Op);
/freebsd-9.3-release/lib/clang/libllvmsupport/
H A DMakefile15 CommandLine.cpp \
/freebsd-9.3-release/sys/contrib/dev/acpica/include/
H A Dacdebug.h332 char *CommandLine);
/freebsd-9.3-release/contrib/llvm/tools/bugpoint/
H A DToolRunner.cpp17 #include "llvm/Support/CommandLine.h"
399 // Tokenize the CommandLine to the command and the args to allow
408 static void lexCommand(std::string &Message, const std::string &CommandLine, argument
414 std::string::size_type lastPos = CommandLine.find_first_not_of(delimiters, 0);
415 std::string::size_type pos = CommandLine.find_first_of(delimiters, lastPos);
418 std::string token = CommandLine.substr(lastPos, pos - lastPos);
424 lastPos = CommandLine.find_first_not_of(delimiters, pos);
426 pos = CommandLine.find_first_of(delimiters, lastPos);
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Devent_rpcgen.py1635 class CommandLine: class in inherits:
1638 from a command-line with CommandLine(sys.argv). If you're
1713 CommandLine(sys.argv).run()

Completed in 103 milliseconds