HomeSort by relevance Sort by last modified time
    Searched refs:commandLine (Results 1 - 25 of 247) sorted by null

1 2 3 4 5 6 7 8 910

  /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/deqp/framework/delibs/deutil/
deCommandLine.c 39 deCommandLine* deCommandLine_parse (const char* commandLine)
56 DE_ASSERT(commandLine);
59 buf = (char*)deCalloc((int)strlen(commandLine)+1);
71 while (commandLine[pos] != 0)
73 char c = commandLine[pos++];
78 c = commandLine[pos++];
112 DE_ASSERT(commandLine[pos] == 0);
deProcess.h 37 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirectory);
  /external/chromium_org/third_party/skia/platform_tools/nacl/src/
nacl_interface.cpp 30 void SkStringToProgramArgs(const SkString commandLine, int* argc, char*** argv) {
32 const char* commandChars = commandLine.c_str();
67 void RunProgram(const SkString& commandLine) {
70 SkStringToProgramArgs(commandLine, &argc, &argv);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ChildProcessConnection.java 71 * @param commandLine (optional) command line for the child process. If omitted, then
74 void start(String[] commandLine);
78 * @param commandLine (optional) will be ignored if the command line was already sent in start()
85 String[] commandLine,
ChildProcessConnectionImpl.java 79 ConnectionParams(String[] commandLine, FileDescriptorInfo[] filesToBeMapped,
81 mCommandLine = commandLine;
114 boolean bind(String[] commandLine) {
118 if (commandLine != null) {
119 intent.putExtra(EXTRA_COMMAND_LINE, commandLine);
228 public void start(String[] commandLine) {
235 if (!mInitialBinding.bind(commandLine)) {
249 String[] commandLine,
265 commandLine, filesToBeMapped, processCallback, sharedRelros);
ChildProcessLauncher.java 204 String[] commandLine, boolean inSandbox) {
209 connection.start(commandLine);
311 private static String getSwitchValue(final String[] commandLine, String switchKey) {
312 if (commandLine == null || switchKey == null) {
317 for (String command : commandLine) {
332 * @param commandLine The child process command line argv.
342 final String[] commandLine,
359 String processType = getSwitchValue(commandLine, SWITCH_PROCESS_TYPE);
376 allocatedConnection = allocateBoundConnection(context, commandLine, inSandbox);
388 triggerConnectionSetup(allocatedConnection, commandLine, childProcessId, filesToBeMapped
    [all...]
  /external/deqp/framework/delibs/decpp/
deProcess.cpp 43 void Process::start (const char* commandLine, const char* workingDirectory)
45 if (!deProcess_start(m_process, commandLine, workingDirectory))
deProcess.hpp 47 void start (const char* commandLine, const char* workingDirectory);
  /external/chromium_org/base/android/java/src/org/chromium/base/
CommandLine.java 27 public abstract class CommandLine {
88 private static final AtomicReference<CommandLine> sCommandLine =
89 new AtomicReference<CommandLine>();
98 // Equivalent to CommandLine::ForCurrentProcess in C++.
99 public static CommandLine getInstance() {
100 CommandLine commandLine = sCommandLine.get();
101 assert commandLine != null;
102 return commandLine;
179 private static final String TAG = "CommandLine";
    [all...]
  /external/chromium_org/components/cronet/android/sample/src/org/chromium/cronet_sample_apk/
CronetSampleActivity.java 147 String[] commandLine = extras.getStringArray(COMMAND_LINE_ARGS_KEY);
148 if (commandLine != null) {
149 for (int i = 0; i < commandLine.length; ++i) {
151 "Cronet commandLine[" + i + "]=" + commandLine[i]);
152 if (commandLine[i].equals(key)) {
153 return commandLine[++i];
  /external/chromium_org/components/cronet/android/test/src/org/chromium/cronet_test_apk/
CronetTestActivity.java 168 String[] commandLine = extras.getStringArray(COMMAND_LINE_ARGS_KEY);
169 if (commandLine != null) {
170 for (int i = 0; i < commandLine.length; ++i) {
172 "Cronet commandLine[" + i + "]=" + commandLine[i]);
173 if (commandLine[i].equals(key)) {
174 return commandLine[++i];
  /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_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/
Runner.java 232 return descriptor.commandLine.split(" +");
244 private final String commandLine;
246 public CompilerInstanceDescriptor(String moduleName, String commandLine) {
248 this.commandLine = commandLine;
  /external/chromium_org/third_party/closure_compiler/runner/src/org/chromium/closure/compiler/
Runner.java 241 return descriptor.commandLine.split(" +");
253 private final String commandLine;
255 public CompilerInstanceDescriptor(String moduleName, String commandLine) {
257 this.commandLine = commandLine;
  /developers/build/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/androidtv/leanback/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/androidtv/visual-game-controller/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-ListPopupMenu/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-Styled/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActivityInstrumentation/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AdapterTransition/gradle/wrapper/
gradle-wrapper.jar 

Completed in 1226 milliseconds

1 2 3 4 5 6 7 8 910