HomeSort by relevance Sort by last modified time
    Searched defs:CommandLine (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /device/linaro/bootloader/edk2/OvmfPkg/Library/PlatformBdsLib/
QemuKernel.c 37 CHAR8 *CommandLine;
45 CommandLine = NULL;
112 CommandLine = LoadLinuxAllocateCommandLinePages (
115 QemuFwCfgReadBytes (CommandLineSize, CommandLine);
117 CommandLine = NULL;
120 Status = LoadLinuxSetCommandLine (SetupBuf, CommandLine);
161 if (CommandLine != NULL) {
162 FreePages (CommandLine, EFI_SIZE_TO_PAGES (CommandLineSize));
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 46 std::vector<std::string> CommandLine)
49 CommandLine(std::move(CommandLine)) {}
58 std::vector<std::string> CommandLine;
192 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
Tooling.h 215 /// \param CommandLine The command line arguments to clang. Note that clang
216 /// uses its binary name (CommandLine[0]) to locate its builtin headers.
224 ToolInvocation(std::vector<std::string> CommandLine, FrontendAction *FAction,
231 /// \param CommandLine The command line arguments to clang.
236 ToolInvocation(std::vector<std::string> CommandLine, ToolAction *Action,
267 std::vector<std::string> CommandLine;
429 /// \brief Changes CommandLine to contain implicit flags that would have been
434 /// be inserted after the first argument in \c CommandLine.
437 /// are already present in `CommandLine` (even if they have different settings
442 /// \param CommandLine the command line used to invoke the compiler driver o
    [all...]
  /external/libchrome/base/
command_line.h 12 // There is a singleton read-only CommandLine that represents the command line
32 class BASE_EXPORT CommandLine {
48 explicit CommandLine(NoProgram no_program);
51 explicit CommandLine(const FilePath& program);
54 CommandLine(int argc, const CharType* const* argv);
55 explicit CommandLine(const StringVector& argv);
58 CommandLine(const CommandLine& other);
59 CommandLine& operator=(const CommandLine& other)
    [all...]
command_line.cc 25 CommandLine* CommandLine::current_process_commandline_ = NULL;
29 const CommandLine::CharType kSwitchTerminator[] = FILE_PATH_LITERAL("--");
30 const CommandLine::CharType kSwitchValueSeparator[] = FILE_PATH_LITERAL("=");
38 const CommandLine::CharType* const kSwitchPrefixes[] = {L"--", L"-", L"/"};
41 const CommandLine::CharType* const kSwitchPrefixes[] = {"--", "-"};
45 size_t GetSwitchPrefixLength(const CommandLine::StringType& string) {
47 CommandLine::StringType prefix(kSwitchPrefixes[i]);
56 bool IsSwitch(const CommandLine::StringType& string,
57 CommandLine::StringType* switch_string
    [all...]
  /external/libmojo/base/android/javatests/src/org/chromium/base/
CommandLineTest.java 32 CommandLine.reset();
36 CommandLine cl = CommandLine.getInstance();
51 CommandLine cl = CommandLine.getInstance();
77 String[] actual = CommandLine.tokenizeQuotedAruments(toParse.toCharArray());
87 CommandLine.init(INIT_SWITCHES);
95 CommandLine.init(CommandLine.tokenizeQuotedAruments(INIT_SWITCHES_BUFFER));
  /external/deqp/executor/tools/
xeBatchResultToJUnit.cpp 41 struct CommandLine
43 CommandLine (void)
56 static void parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
158 CommandLine cmdLine;
xeMergeTestLogs.cpp 49 struct CommandLine
51 CommandLine (void)
148 static void mergeTestLogs (const CommandLine& cmdLine)
168 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
200 CommandLine cmdLine;
xeExtractShaderPrograms.cpp 43 struct CommandLine
45 CommandLine (void)
68 static void writeShaderProgram (const CommandLine& cmdLine, const std::string& casePath, const xe::ri::ShaderProgram& shaderProgram, int programNdx)
99 static void extractShaderPrograms (const CommandLine& cmdLine, const std::string& casePath, const xe::TestCaseResult& result)
134 ShaderProgramExtractHandler (const CommandLine& cmdLine)
170 const CommandLine& m_cmdLine;
174 static void extractShaderProgramsFromLogFile (const CommandLine& cmdLine)
204 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
233 CommandLine cmdLine;
xeBatchResultToXml.cpp 76 struct CommandLine
78 CommandLine (void)
88 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
91 de::cmdline::CommandLine opts;
384 CommandLine cmdLine;
xeExtractValues.cpp 42 struct CommandLine
44 CommandLine (void)
221 static void printTaggedValues (const CommandLine& cmdLine, std::ostream& dst)
260 static bool parseCommandLine (CommandLine& cmdLine, int argc, const char* const* argv)
289 CommandLine cmdLine;
  /external/libmojo/base/android/java/src/org/chromium/base/
SysUtils.java 103 assert CommandLine.isInitialized();
104 if (CommandLine.getInstance().hasSwitch(BaseSwitches.ENABLE_LOW_END_DEVICE_MODE)) {
107 if (CommandLine.getInstance().hasSwitch(BaseSwitches.DISABLE_LOW_END_DEVICE_MODE)) {
  /external/deqp/framework/delibs/decpp/
deCommandLine.hpp 241 class CommandLine;
254 bool parse (int numArgs, const char* const* args, CommandLine* dst, std::ostream& err) const;
394 class CommandLine
397 CommandLine (void) {}
398 ~CommandLine (void) {}
422 using detail::CommandLine;
  /device/linaro/bootloader/edk2/ArmPkg/Library/SemihostLib/
SemihostPrivate.h 55 CHAR8 *CommandLine;
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 115 ASSERT_EQ(1u, Commands[0].CommandLine.size());
116 EXPECT_EQ(Command1, Commands[0].CommandLine[0]) << ErrorMessage;
119 ASSERT_EQ(1u, Commands[1].CommandLine.size());
120 EXPECT_EQ(Command2, Commands[1].CommandLine[0]) << ErrorMessage;
134 ASSERT_EQ(1u, Commands[0].CommandLine.size());
135 EXPECT_EQ(Command2, Commands[0].CommandLine[0]) << ErrorMessage;
138 ASSERT_EQ(1u, Commands[1].CommandLine.size());
139 EXPECT_EQ(Command1, Commands[1].CommandLine[0]) << ErrorMessage;
171 EXPECT_EQ(1u, FoundCommand.CommandLine.size()) << ErrorMessage;
172 EXPECT_EQ(Arguments, FoundCommand.CommandLine[0]) << ErrorMessage
    [all...]
  /external/deqp/framework/common/
tcuCommandLine.hpp 95 * CommandLine handles argument parsing and provides convinience functions
98 class CommandLine
101 CommandLine (void);
102 CommandLine (int argc, const char* const* argv);
103 explicit CommandLine (const std::string& cmdLine);
104 ~CommandLine (void);
195 const de::cmdline::CommandLine& getCommandLine (void) const;
198 CommandLine (const CommandLine&); // not allowed!
199 CommandLine& operator= (const CommandLine&); // not allowed
    [all...]
tcuCommandLine.cpp 638 * \note CommandLine is not fully initialized until parse() has been called.
640 CommandLine::CommandLine (void)
653 CommandLine::CommandLine (int argc, const char* const* argv)
667 CommandLine::CommandLine (const std::string& cmdLine)
675 CommandLine::~CommandLine (void)
680 void CommandLine::clear (void
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 11 import org.chromium.base.CommandLine;
336 // Switch the CommandLine over from Java to native if it hasn't already been done.
338 // switch the Java CommandLine will delegate all calls the native CommandLine).
344 nativeInitCommandLine(CommandLine.getJavaSwitchesOrNull());
345 CommandLine.enableNativeProxy();
  /art/dexoptanalyzer/
dexoptanalyzer.cc 51 static std::string CommandLine() {
78 UsageError("Command: %s", CommandLine().c_str());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
CommandLine.py 0 """ CommandLine - Get and parse command line options
615 CommandLine = Application
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 33 CommandLineArgumentParser(StringRef CommandLine)
34 : Input(CommandLine), Position(Input.begin()-1) {}
41 CommandLine.push_back(Argument);
43 return CommandLine;
111 std::vector<std::string> CommandLine;
Tooling.cpp 173 void addTargetAndModeForProgramName(std::vector<std::string> &CommandLine,
175 if (!CommandLine.empty() && !InvokedAs.empty()) {
178 // Skip CommandLine[0].
179 for (auto Token = ++CommandLine.begin(); Token != CommandLine.end();
190 CommandLine.insert(++CommandLine.begin(), TargetMode.second);
193 CommandLine.insert(++CommandLine.begin(), {"-target", TargetMode.first});
212 std::vector<std::string> CommandLine, ToolAction *Action
    [all...]
  /external/deqp/execserver/tools/
xsClient.cpp 137 class CommandLine
151 Client (const CommandLine& cmdLine);
157 const CommandLine& m_cmdLine;
161 Client::Client (const CommandLine& cmdLine)
304 CommandLine cmdLine;
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 39 #include "llvm/Support/CommandLine.h"
318 std::string CommandLine(ProgramToRun);
323 errs() << ToolName << ": Failed to find program: '" << CommandLine
332 CommandLine.push_back(' ');
333 CommandLine.append(Arg);
338 << ToolName << ": Command Line: " << CommandLine << '\n';
352 LPSTR(CommandLine.c_str()),
  /external/lzma/Java/SevenZip/
LzmaAlone.java 5 static public class CommandLine
174 CommandLine params = new CommandLine();
181 if (params.Command == CommandLine.kBenchmak)
190 else if (params.Command == CommandLine.kEncode || params.Command == CommandLine.kDecode)
201 if (params.Command == CommandLine.kEncode)

Completed in 1105 milliseconds

1 2 3 4 5