Home
last modified time | relevance | path

Searched refs:commandLine (Results 1 – 15 of 15) sorted by relevance

/external/webkit/Source/JavaScriptCore/os-win32/
DWinMain.cpp52 WCHAR* commandLine = lpCmdLine; in WinMain() local
53 while (commandLine[0] != '\0') { in WinMain()
57 while (commandLine[0] == ' ') in WinMain()
58 ++commandLine; in WinMain()
60 if (commandLine[0] == '\"') { in WinMain()
61 ++commandLine; in WinMain()
65 while (commandLine[commandLineLength] != endChar && commandLine[commandLineLength] != '\0') in WinMain()
68 arguments.append(convertToUtf8(commandLine, commandLineLength)); in WinMain()
70 commandLine += commandLineLength; in WinMain()
71 if (endChar != ' ' && commandLine[0] != '\0') in WinMain()
[all …]
/external/webkit/Source/WebKit2/WebProcess/
DWebKitMain.cpp40 static int WebKitMain(const CommandLine& commandLine) in WebKitMain() argument
43 if (!ProcessLauncher::getProcessTypeFromString(commandLine["type"].utf8().data(), processType)) in WebKitMain()
48 return WebProcessMain(commandLine); in WebKitMain()
51 return PluginProcessMain(commandLine); in WebKitMain()
68 CommandLine commandLine; in WebKitMain() local
69 if (!commandLine.parse(argc, argv)) in WebKitMain()
72 return WebKitMain(commandLine); in WebKitMain()
168 CommandLine commandLine; in WebKitMain() local
169 if (!commandLine.parse(lpstrCmdLine)) in WebKitMain()
172 return WebKitMain(commandLine); in WebKitMain()
/external/chromium/chrome/browser/resources/shared/js/cr/
Dcommand_line.js81 var commandLine = null;
83 commandLine = new CommandLine(chrome.commandLineString);
91 commandLine: commandLine
/external/qemu/distrib/sdl-1.2.12/src/main/macos/
DSDL_main.c367 char *commandLine; in main() local
569 commandLine = (char*) malloc (appNameText[0] + prefs.command_line[0] + 2); in main()
570 if ( commandLine == NULL ) { in main()
581 SDL_memcpy(commandLine, appNameText + 1, appNameText[0]); in main()
582 commandLine[appNameText[0]] = ' '; in main()
583 SDL_memcpy(commandLine + appNameText[0] + 1, prefs.command_line + 1, prefs.command_line[0]); in main()
584 commandLine[ appNameText[0] + 1 + prefs.command_line[0] ] = '\0'; in main()
587 nargs = ParseCommandLine (commandLine, NULL); in main()
592 ParseCommandLine (commandLine, args); in main()
597 free (commandLine); in main()
/external/webkit/Source/WebKit2/PluginProcess/qt/
DPluginProcessMainQt.cpp44 int PluginProcessMain(const CommandLine& commandLine) in PluginProcessMain() argument
46 String serviceName = commandLine["servicename"]; in PluginProcessMain()
/external/icu4c/test/perf/perldriver/
DPerfFramework.pm123 my $commandLine;
125 $commandLine = "$program -i $ITERATIONS -p $NUMPASSES $locAndData @argsAndTest";
127 $commandLine = "$program -t $TIME -p $NUMPASSES $locAndData @argsAndTest";
130 my @res = measure1($commandLine);
/external/webkit/Source/WebKit2/WebProcess/win/
DWebProcessMainWin.cpp60 int WebProcessMain(const CommandLine& commandLine) in WebProcessMain() argument
72 const String& identifierString = commandLine["clientIdentifier"]; in WebProcessMain()
/external/apache-harmony/support/src/test/java/tests/support/
DSupport_Exec.java218 StringBuilder commandLine; in exec() local
220 commandLine = new StringBuilder(args.get(0)); in exec()
222 commandLine.append(" "); in exec()
223 commandLine.append(args.get(i)); in exec()
225 System.out.println("Exec: " + commandLine.toString()); in exec()
/external/webkit/Tools/WebKitLauncherWin/
DWebKitLauncherWin.cpp68 int APIENTRY _tWinMain(HINSTANCE instance, HINSTANCE, LPTSTR commandLine, int) in _tWinMain() argument
89 …if (!CreateProcess(browserExe, commandLine, 0, 0, FALSE, NORMAL_PRIORITY_CLASS | CREATE_UNICODE_EN… in _tWinMain()
/external/webkit/Source/WebKit2/UIProcess/Launcher/win/
DProcessLauncherWin.cpp75 String commandLine(pathStr); in launchProcess() local
80 append(commandLineVector, commandLine); in launchProcess()
/external/webkit/Source/WebKit2/WebProcess/mac/
DWebProcessMainMac.mm59 int WebProcessMain(const CommandLine& commandLine)
63 String serviceName = commandLine["servicename"];
75 String localization = commandLine["localization"];
/external/webkit/Source/WebKit2/PluginProcess/mac/
DPluginProcessMainMac.mm51 int PluginProcessMain(const CommandLine& commandLine)
57 String serviceName = commandLine["servicename"];
69 String localization = commandLine["localization"];
/external/chromium/chrome/browser/resources/options/
Dpersonal_options.js83 if (cr.commandLine.options['--bwsi']) {
214 return cr.commandLine.options['--bwsi'];
Dbrowser_options.js124 if (cr.commandLine.options['--bwsi']) {
/external/chromium/chrome/browser/ui/cocoa/
Dkeystone_infobar.mm147 CommandLine* commandLine = CommandLine::ForCurrentProcess();
150 commandLine->HasSwitch(switches::kNoDefaultBrowserCheck)) {