/external/chromium/chrome/common/ |
logging_chrome.h | 14 class CommandLine; 36 void InitChromeLogging(const CommandLine& command_line, 41 FilePath GetSessionLogFile(const CommandLine& command_line); 44 void RedirectChromeLogging(const CommandLine& command_line);
|
common_glue.cc | 36 const CommandLine& parsed_command_line = *CommandLine::ForCurrentProcess();
|
/external/webkit/Source/WebKit2/WebProcess/win/ |
WebProcessMainWin.cpp | 29 #include "CommandLine.h" 60 int WebProcessMain(const CommandLine& commandLine) 72 const String& identifierString = commandLine["clientIdentifier"];
|
/external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/ |
ANTLR3.java | 53 import org.apache.tools.ant.types.Commandline; 67 private CommandlineJava commandline = new CommandlineJava(); field in class:ANTLR3 124 commandline.setVm(JavaEnvUtils.getJreExecutable("java")); 125 commandline.setClassname("org.antlr.Tool"); 334 return commandline.createClasspath(getProject()).createPath(); 342 public Commandline.Argument createJvmarg() { 343 return commandline.createVmArgument(); 441 commandline.createArgument().setValue(target.toString()); 443 log(commandline.describeCommand(), Project.MSG_VERBOSE); 446 err = run(commandline.getCommandline(), new LogOutputStream(this, Project.MSG_INFO), new LogOutputStream(this, Project.M (…) [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_bookmark_manager_apitest.cc | 18 CommandLine::ForCurrentProcess()->AppendSwitch( 25 CommandLine::ForCurrentProcess()->AppendSwitch(
|
extension_processes_apitest.cc | 14 CommandLine::ForCurrentProcess()->AppendSwitch( 21 CommandLine::ForCurrentProcess()->AppendSwitch(
|
/external/chromium/chrome/browser/prefs/ |
command_line_pref_store.h | 21 explicit CommandLinePrefStore(const CommandLine* command_line); 52 const CommandLine* command_line_;
|
/external/chromium-trace/trace-viewer/third_party/python_gflags/ |
README | 1 This repository contains a python implementation of the Google commandline 22 create an instant man page, with all the commandline flags and their docs, for
|
README.chromium | 11 This project is the python equivalent of google-gflags, a Google commandline 17 The gflags package contains a library that implements commandline flags
|
/external/markdown/bin/ |
markdown | 34 from markdown import commandline namespace 42 commandline.run()
|
/external/oprofile/daemon/ |
opd_extended.h | 59 * @param value: commandline input option string 66 * @param value: commandline input option string
|
/external/webkit/Source/WebKit2/PluginProcess/ |
PluginProcessMain.h | 33 class CommandLine; 35 int PluginProcessMain(const CommandLine&);
|
/external/webkit/Source/WebKit2/WebProcess/ |
WebProcessMain.h | 33 class CommandLine; 35 int WebProcessMain(const CommandLine&);
|
/external/chromium/chrome/browser/ |
shell_integration.cc | 27 CommandLine ShellIntegration::CommandLineArgsForLauncher( 30 const CommandLine& cmd_line = *CommandLine::ForCurrentProcess(); 31 CommandLine new_cmd_line(CommandLine::NO_PROGRAM);
|
background_contents_service_factory.cc | 35 CommandLine::ForCurrentProcess());
|
background_mode_manager_factory.cc | 33 return new BackgroundModeManager(profile, CommandLine::ForCurrentProcess());
|
/external/protobuf/vsprojects/ |
tests.vcproj | 31 CommandLine="" 108 CommandLine="" 415 CommandLine="Debug\protoc -I../src --cpp_out=. ../src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto
" 425 CommandLine="Release\protoc -I../src --cpp_out=. ../src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto
" 439 CommandLine="Debug\protoc -I../src --cpp_out=. ../src/google/protobuf/unittest.proto
" 449 CommandLine="Release\protoc -I../src --cpp_out=. ../src/google/protobuf/unittest.proto
" 463 CommandLine="Debug\protoc -I../src --cpp_out=. ../src/google/protobuf/unittest_custom_options.proto
" 473 CommandLine="Release\protoc -I../src --cpp_out=. ../src/google/protobuf/unittest_custom_options.proto
" 487 CommandLine="Debug\protoc -I../src --cpp_out=. ../src/google/protobuf/unittest_embed_optimize_for.proto
" 497 CommandLine="Release\protoc -I../src --cpp_out=. ../src/google/protobuf/unittest_embed_optimize_for.proto
 (…) [all...] |
/external/webkit/Source/WebKit2/PluginProcess/mac/ |
PluginProcessMainMac.mm | 31 #import "CommandLine.h" 51 int PluginProcessMain(const CommandLine& commandLine) 57 String serviceName = commandLine["servicename"]; 69 String localization = commandLine["localization"];
|
/external/webkit/Source/WebKit2/WebProcess/mac/ |
WebProcessMainMac.mm | 29 #import "CommandLine.h" 59 int WebProcessMain(const CommandLine& commandLine) 63 String serviceName = commandLine["servicename"]; 75 String localization = commandLine["localization"];
|
/external/chromium/chrome/browser/ui/ |
browser_init_browsertest.cc | 94 CommandLine dummy(CommandLine::NO_PROGRAM); 112 CommandLine command_line(CommandLine::NO_PROGRAM); 141 CommandLine command_line(CommandLine::NO_PROGRAM); 171 CommandLine command_line(CommandLine::NO_PROGRAM); 200 CommandLine command_line(CommandLine::NO_PROGRAM) [all...] |
browser_init.h | 18 class CommandLine; 36 bool Start(const CommandLine& cmd_line, const FilePath& cur_dir, 48 static bool ProcessCommandLine(const CommandLine& cmd_line, 67 bool LaunchBrowser(const CommandLine& command_line, Profile* profile, 101 LaunchWithProfile(const FilePath& cur_dir, const CommandLine& command_line); 102 LaunchWithProfile(const FilePath& cur_dir, const CommandLine& command_line, 202 const CommandLine& command_line_; 212 const CommandLine& command_line, 216 static bool ProcessCmdLineImpl(const CommandLine& command_line,
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/ |
RSSFeedUtil.java | 20 import org.apache.tools.ant.types.Commandline.Argument; 46 public ExecTask runExecTask(String executable, String commandline, String dir) 65 if (commandline != null || "".equals(commandline)) { //$NON-NLS-1$ 67 execArg.setLine(commandline); 72 System.out.println(Messages.getString("RSSFeedPublisherTask.Execute") + SP + executable + (commandline==null?"":SP + commandline)); //$NON-NLS-1$ //$NON-NLS-2$
|
/external/chromium/base/test/ |
multiprocess_test.h | 17 class CommandLine; 67 virtual CommandLine MakeCmdLine(const std::string& procname, 76 // TODO(port): with the CommandLine refactoring, this code is very similar
|
/external/chromium/chrome/browser/chromeos/login/ |
login_utils.h | 13 class CommandLine; 98 const CommandLine& base_command_line, 99 CommandLine* command_line) = 0;
|
/external/chromium/net/tools/testserver/ |
run_testserver.cc | 25 CommandLine::Init(argc, argv); 26 CommandLine* command_line = CommandLine::ForCurrentProcess();
|