/external/webkit/Source/JavaScriptCore/os-win32/ |
D | WinMain.cpp | 52 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/ |
D | WebKitMain.cpp | 40 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/ |
D | command_line.js | 81 var commandLine = null; 83 commandLine = new CommandLine(chrome.commandLineString); 91 commandLine: commandLine
|
/external/qemu/distrib/sdl-1.2.12/src/main/macos/ |
D | SDL_main.c | 367 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/ |
D | PluginProcessMainQt.cpp | 44 int PluginProcessMain(const CommandLine& commandLine) in PluginProcessMain() argument 46 String serviceName = commandLine["servicename"]; in PluginProcessMain()
|
/external/icu4c/test/perf/perldriver/ |
D | PerfFramework.pm | 123 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/ |
D | WebProcessMainWin.cpp | 60 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/ |
D | Support_Exec.java | 218 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/ |
D | WebKitLauncherWin.cpp | 68 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/ |
D | ProcessLauncherWin.cpp | 75 String commandLine(pathStr); in launchProcess() local 80 append(commandLineVector, commandLine); in launchProcess()
|
/external/webkit/Source/WebKit2/WebProcess/mac/ |
D | WebProcessMainMac.mm | 59 int WebProcessMain(const CommandLine& commandLine) 63 String serviceName = commandLine["servicename"]; 75 String localization = commandLine["localization"];
|
/external/webkit/Source/WebKit2/PluginProcess/mac/ |
D | PluginProcessMainMac.mm | 51 int PluginProcessMain(const CommandLine& commandLine) 57 String serviceName = commandLine["servicename"]; 69 String localization = commandLine["localization"];
|
/external/chromium/chrome/browser/resources/options/ |
D | personal_options.js | 83 if (cr.commandLine.options['--bwsi']) { 214 return cr.commandLine.options['--bwsi'];
|
D | browser_options.js | 124 if (cr.commandLine.options['--bwsi']) {
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | keystone_infobar.mm | 147 CommandLine* commandLine = CommandLine::ForCurrentProcess(); 150 commandLine->HasSwitch(switches::kNoDefaultBrowserCheck)) {
|