OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:commandLine
(Results
1 - 20
of
20
) sorted by null
/external/webkit/Source/JavaScriptCore/os-win32/
WinMain.cpp
52
WCHAR*
commandLine
= lpCmdLine;
53
while (
commandLine
[0] != '\0') {
57
while (
commandLine
[0] == ' ')
58
++
commandLine
;
60
if (
commandLine
[0] == '\"') {
61
++
commandLine
;
65
while (
commandLine
[commandLineLength] != endChar &&
commandLine
[commandLineLength] != '\0')
68
arguments.append(convertToUtf8(
commandLine
, commandLineLength));
70
commandLine
+= commandLineLength
[
all
...]
/cts/tools/vm-tests/src/util/build/
JavacBuildStep.java
57
String[]
commandLine
= new String[sourceFiles.size()+args];
58
commandLine
[0] = "-classpath";
59
commandLine
[1] = classPath;
60
commandLine
[2] = "-d";
61
commandLine
[3] = destPath;
66
System.arraycopy(files, 0,
commandLine
, args, files.length);
69
return Main.compile(
commandLine
, new PrintWriter(System.err)) == 0;
/cts/tools/vm-tests-tf/src/util/build/
JavacBuildStep.java
57
String[]
commandLine
= new String[sourceFiles.size()+args];
58
commandLine
[0] = "-classpath";
59
commandLine
[1] = classPath;
60
commandLine
[2] = "-d";
61
commandLine
[3] = destPath;
66
System.arraycopy(files, 0,
commandLine
, args, files.length);
69
return Main.compile(
commandLine
, new PrintWriter(System.err)) == 0;
/external/webkit/Source/WebKit2/WebProcess/
WebKitMain.cpp
27
#include "
CommandLine
.h"
40
static int WebKitMain(const
CommandLine
&
commandLine
)
43
if (!ProcessLauncher::getProcessTypeFromString(
commandLine
["type"].utf8().data(), processType))
48
return WebProcessMain(
commandLine
);
51
return PluginProcessMain(
commandLine
);
68
CommandLine
commandLine
;
69
if (!
commandLine
.parse(argc, argv))
72
return WebKitMain(
commandLine
);
[
all
...]
/external/webkit/Source/WebKit2/PluginProcess/qt/
PluginProcessMainQt.cpp
31
#include "
CommandLine
.h"
44
int PluginProcessMain(const
CommandLine
&
commandLine
)
46
String serviceName =
commandLine
["servicename"];
/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/win/
WebProcessMainWin.cpp
29
#include "
CommandLine
.h"
60
int WebProcessMain(const
CommandLine
&
commandLine
)
72
const String& identifierString =
commandLine
["clientIdentifier"];
/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/webkit/Source/WebKit2/UIProcess/Launcher/win/
ProcessLauncherWin.cpp
75
String
commandLine
(pathStr);
77
// FIXME: It would be nice if we could just create a
CommandLine
object and output a command line vector from it.
80
append(commandLineVector,
commandLine
);
/external/webkit/Tools/WebKitLauncherWin/
WebKitLauncherWin.cpp
68
int APIENTRY _tWinMain(HINSTANCE instance, HINSTANCE, LPTSTR
commandLine
, int)
89
if (!CreateProcess(browserExe,
commandLine
, 0, 0, FALSE, NORMAL_PRIORITY_CLASS | CREATE_UNICODE_ENVIRONMENT, 0, path, &startupInfo, &processInfo))
/external/qemu/distrib/sdl-1.2.12/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/icu4c/test/perf/perldriver/
PerfFramework.pm
123
my $
commandLine
;
125
$
commandLine
= "$program -i $ITERATIONS -p $NUMPASSES $locAndData @argsAndTest";
127
$
commandLine
= "$program -t $TIME -p $NUMPASSES $locAndData @argsAndTest";
129
#my $
commandLine
= "$program -i 5 -p $NUMPASSES $locAndData @argsAndTest";
130
my @res = measure1($
commandLine
);
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/build/
DebugKeyProvider.java
66
KeytoolException(String message, String javaHome, String
commandLine
) {
70
mCommandLine =
commandLine
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
EmulatorConfigTab.java
428
String
commandLine
= null;
430
commandLine
= configuration.getAttribute(
435
if (
commandLine
!= null) {
436
mEmulatorCLOptions.setText(
commandLine
);
/development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetwork.java
647
* @param
commandLine
the full command line given.
649
private void translateCommand(String
commandLine
) {
650
Log.d(TAG, "translateCommand: " +
commandLine
);
651
List<String> parts = commandLineSplit(
commandLine
);
/prebuilt/common/ecj/
ecj.jar
/prebuilt/common/ant/
ant.jar
/prebuilt/common/tradefed/
tradefed-prebuilt.jar
/prebuilt/common/groovy/
groovy-all-1.7.0.jar
Completed in 376 milliseconds