HomeSort by relevance Sort by last modified time
    Searched full:commandline (Results 126 - 150 of 873) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/first_run/
upgrade_util_linux.cc 25 bool RelaunchChromeBrowser(const CommandLine& command_line) {
upgrade_util_win.cc 64 bool RelaunchChromeBrowser(const CommandLine& command_line) {
113 bool DoUpgradeTasks(const CommandLine& command_line) {
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_runner.cc 39 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
99 const CommandLine& command_line = *CommandLine::ForCurrentProcess();
  /external/chromium/chrome/browser/
plugin_exceptions_table_model_unittest.cc 59 command_line_(CommandLine::ForCurrentProcess(),
60 *CommandLine::ForCurrentProcess()) {}
63 CommandLine::ForCurrentProcess()->AppendSwitch(
152 AutoReset<CommandLine> command_line_;
utility_process_host.cc 137 CommandLine* cmd_line = new CommandLine(exe_path);
146 const CommandLine& browser_command_line = *CommandLine::ForCurrentProcess();
browser_shutdown.cc 209 CommandLine old_cl(*CommandLine::ForCurrentProcess());
210 scoped_ptr<CommandLine> new_cl(new CommandLine(old_cl.GetProgram()));
211 std::map<std::string, CommandLine::StringType> switches =
217 for (std::map<std::string, CommandLine::StringType>::const_iterator i =
219 CommandLine::StringType switch_value = i->second;
unload_uitest.cc 175 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
189 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
218 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
249 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
263 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
360 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
376 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
386 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
404 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess))
process_singleton_linux_uitest.cc 65 CommandLine CommandLineForUrl(const std::string& url) {
70 CommandLine* cmd_line = CommandLine::ForCurrentProcess();
74 CommandLine new_cmd_line(*cmd_line);
80 // |url| will be added to CommandLine for current process, so that it can be
90 // |url| will be added to CommandLine for current process, so that it can be
  /external/chromium/chrome/browser/profiles/
profile_manager_unittest.cc 94 CommandLine *cl = CommandLine::ForCurrentProcess();
108 CommandLine *cl = CommandLine::ForCurrentProcess();
  /external/chromium/chrome/browser/ui/cocoa/
keystone_infobar.mm 147 CommandLine* commandLine = CommandLine::ForCurrentProcess();
150 commandLine->HasSwitch(switches::kNoDefaultBrowserCheck)) {
table_model_array_controller_unittest.mm 24 : command_line_(CommandLine::ForCurrentProcess(),
25 *CommandLine::ForCurrentProcess()) {}
30 CommandLine::ForCurrentProcess()->AppendSwitch(
100 AutoReset<CommandLine> command_line_;
  /external/chromium/chrome/common/
switch_utils.cc 26 std::map<std::string, CommandLine::StringType>* switch_list) {
  /external/llvm/utils/unittest/UnitTestMain/
TestMain.cpp 11 #include "llvm/Support/CommandLine.h"
  /external/markdown/docs/
release-2.0.1.txt 14 rename the commandline script to ``markdown`` (no ".py"). A matching batch
  /frameworks/compile/mclinker/lib/Support/
Android.mk 4 CommandLine.cpp \
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 37 * (Xpath to watch for); (what to execute if condition is met); (commandline args to the executable)...
141 String commandline = feedWatchActions[i+2].trim(); local
165 commandline =
166 (debug>0?"-debug " + debug + SP:NS) + ("null".equals(commandline)?NS:commandline) + //$NON-NLS-1$ //$NON-NLS-2$
184 System.out.println(Messages.getString("RSSFeedWatcherTask.RunExecTask") + CL + SP + action + SP + commandline); //$NON-NLS-1$ local
185 ExecTask exec = util.runExecTask((new File(action)).getAbsolutePath(), commandline, null);
  /external/clang/lib/Tooling/
Tooling.cpp 147 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 =
296 ArgsAdjuster->Adjust(CompileCommands[I].second.CommandLine);
297 assert(!CommandLine.empty());
298 CommandLine[0] = MainExecutable;
304 ToolInvocation Invocation(CommandLine, ActionFactory->create(), &Files)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/main/macos/
SDL_main.c 367 char *commandLine;
569 commandLine = (char*) malloc (appNameText[0] + prefs.command_line[0] + 2);
570 if ( commandLine == NULL ) {
581 SDL_memcpy(commandLine, appNameText + 1, appNameText[0]);
582 commandLine[appNameText[0]] = ' ';
583 SDL_memcpy(commandLine + appNameText[0] + 1, prefs.command_line + 1, prefs.command_line[0]);
584 commandLine[ appNameText[0] + 1 + prefs.command_line[0] ] = '\0';
587 nargs = ParseCommandLine (commandLine, NULL);
592 ParseCommandLine (commandLine, args);
597 free (commandLine);
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 218 StringBuilder commandLine;
220 commandLine = new StringBuilder(args.get(0));
222 commandLine.append(" ");
223 commandLine.append(args.get(i));
225 System.out.println("Exec: " + commandLine.toString());
  /external/chromium/chrome/browser/content_settings/
host_content_settings_map_unittest.cc 64 CommandLine* cmd = CommandLine::ForCurrentProcess();
65 AutoReset<CommandLine> auto_reset(cmd, *cmd);
492 CommandLine* cmd = CommandLine::ForCurrentProcess();
493 AutoReset<CommandLine> auto_reset(cmd, *cmd);
576 CommandLine* cmd = CommandLine::ForCurrentProcess();
577 AutoReset<CommandLine> auto_reset(cmd, *cmd);
626 CommandLine* cmd = CommandLine::ForCurrentProcess()
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/59/1/.cp/
jdtCompilerAdapter.jar 
  /external/llvm/docs/
CommandLine.rst 2 CommandLine 2.0 Library Manual
8 This document describes the CommandLine argument processing library. It will
9 show you how to use it, and what it can do. The CommandLine library uses a
17 CommandLine library to have the following features:
19 #. Speed: The CommandLine library is very quick and uses little resources. The
26 #. Type Safe: As a user of CommandLine, you don't have to worry about
31 #. No subclasses required: To use CommandLine, you instantiate variables that
42 #. Cleaner: CommandLine supports enum and other types directly, meaning that
47 #. Powerful: The CommandLine library supports many different types of arguments,
50 possible because CommandLine is..
    [all...]
  /external/chromium/base/
process_util_unittest.cc 346 CommandLine cmd_line(python_runtime);
354 CommandLine other_cmd_line(python_runtime);
582 EXPECT_TRUE(base::GetAppOutput(CommandLine(FilePath("true")), &output));
585 EXPECT_FALSE(base::GetAppOutput(CommandLine(FilePath("false")), &output));
591 EXPECT_TRUE(base::GetAppOutput(CommandLine(argv), &output));
608 EXPECT_TRUE(base::GetAppOutputRestricted(CommandLine(argv), &output, 100));
613 EXPECT_FALSE(base::GetAppOutputRestricted(CommandLine(argv),
620 EXPECT_TRUE(base::GetAppOutputRestricted(CommandLine(argv), &output, 10));
625 EXPECT_TRUE(base::GetAppOutputRestricted(CommandLine(argv), &output, 5));
630 EXPECT_TRUE(base::GetAppOutputRestricted(CommandLine(argv), &output, 15))
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
mock_authenticator.h 159 const CommandLine& base_command_line,
160 CommandLine* command_line) {
  /external/chromium/chrome/browser/diagnostics/
diagnostics_model.h 11 class CommandLine;
75 DiagnosticsModel* MakeDiagnosticsModel(const CommandLine& cmdline);

Completed in 752 milliseconds

1 2 3 4 56 7 8 91011>>