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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/IntelFspPkg/FspSecCore/Vtf0/
Build.py 20 def RunCommand(commandLine):
21 #print ' '.join(commandLine)
22 return subprocess.call(commandLine)
34 commandLine = (
41 ret = RunCommand(commandLine)
45 commandLine = (
51 ret = RunCommand(commandLine)
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/FspWrapperSecCore/Vtf0/
Build.py 20 def RunCommand(commandLine):
21 #print ' '.join(commandLine)
22 return subprocess.call(commandLine)
34 commandLine = (
41 ret = RunCommand(commandLine)
45 commandLine = (
51 ret = RunCommand(commandLine)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug459.go 12 var commandLine = NewFlagSet() // ERROR "loop|depends upon itself"
22 if f == commandLine {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug459.go 12 var commandLine = NewFlagSet() // ERROR "loop|depends upon itself"
22 if f == commandLine {
  /external/libmojo/base/android/java/src/org/chromium/base/
LocaleUtils.java 59 CommandLine commandLine = CommandLine.getInstance();
60 return commandLine.hasSwitch(BaseSwitches.DEFAULT_COUNTRY_CODE_AT_INSTALL)
61 ? commandLine.getSwitchValue(BaseSwitches.DEFAULT_COUNTRY_CODE_AT_INSTALL)
CommandLine.java 31 public abstract class CommandLine {
104 private static final AtomicReference<CommandLine> sCommandLine =
105 new AtomicReference<CommandLine>();
114 // Equivalent to CommandLine::ForCurrentProcess in C++.
116 public static CommandLine getInstance() {
117 CommandLine commandLine = sCommandLine.get();
118 assert commandLine != null;
119 return commandLine;
210 private static final String TAG = "CommandLine";
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/sandbox/
SandboxConfigDumpTest.java 56 String[] commandLine =
58 int res = mConfigDump.parse(commandLine);
75 String[] commandLine =
79 int res = mConfigDump.parse(commandLine);
96 String[] commandLine =
100 int res = mConfigDump.parse(commandLine);
  /cts/tools/vm-tests-tf/src/util/build/
JavacBuildStep.java 59 String[] commandLine = new String[sourceFiles.size()+args];
60 commandLine[0] = "-classpath";
61 commandLine[1] = classPath;
62 commandLine[2] = "-d";
63 commandLine[3] = destPath;
64 commandLine[4] = "-source";
65 commandLine[5] = "1.7";
66 commandLine[6] = "-target";
67 commandLine[7] = "1.7";
72 System.arraycopy(files, 0, commandLine, args, files.length)
    [all...]
JillBuildStep.java 52 String[] commandLine = new String[] {
61 ExecuteFile exec = new ExecuteFile(JackBuildDalvikSuite.JACK, commandLine);
JackBuildStep.java 79 List<String> commandLine = new ArrayList<String>(6 + sourceFiles.size());
80 commandLine.add("--verbose");
81 commandLine.add("error");
82 commandLine.add("--classpath");
83 commandLine.add(classPath);
84 commandLine.add("--output-dex");
85 commandLine.add(tmpOutDir.getAbsolutePath());
86 commandLine.add("@" + tmpArgs.getPath());
89 commandLine.toArray(new String[commandLine.size()]))
    [all...]
JackDexBuildStep.java 60 List<String> commandLine = new ArrayList<String>(4);
61 commandLine.add("--verbose");
62 commandLine.add("error");
63 commandLine.add("--output-dex");
64 commandLine.add(tmpOutDir.getAbsolutePath());
65 commandLine.add("--import");
66 commandLine.add(inputFile.fileName.getAbsolutePath());
69 commandLine.toArray(new String[commandLine.size()]));
  /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/caliper/caliper/src/test/java/com/google/caliper/runner/
WorkerProcessTest.java 92 List<String> commandLine = builder.command();
93 assertEquals(new File("java").getAbsolutePath(), commandLine.get(0));
94 assertEquals("--doTheHustle", commandLine.get(1)); // vm specific flags come next
95 assertEquals("-cp", commandLine.get(2)); // then the classpath
100 commandLine.subList(4, 4 + extraCommandLineArgs.size()));
102 assertEquals("-XX:+PrintFlagsFinal", commandLine.get(index));
103 assertEquals("-XX:+PrintCompilation", commandLine.get(++index));
104 assertEquals("-XX:+PrintGC", commandLine.get(++index));
105 assertEquals(WorkerMain.class.getName(), commandLine.get(++index));
  /external/mdnsresponder/mDNSWindows/ControlPanel/
ControlPanelExe.cpp 251 CCommandLineInfo commandLine;
299 ParseCommandLine( commandLine );
301 if ( commandLine.m_nShellCommand == CCommandLineInfo::AppRegister )
323 else if ( commandLine.m_nShellCommand == CCommandLineInfo::AppUnregister )
  /prebuilts/misc/common/jacoco/src/main/java/com/google/android/jacoco/reporter/
ReportGenerator.java 16 import org.apache.commons.cli.CommandLine;
128 static Config from(CommandLine commandLine) {
129 List<File> classpaths = parse(commandLine.getOptionValue(OPT_CLASSPATH),
131 List<File> sources = parse(commandLine.getOptionValue(OPT_SOURCES),
133 File execFileDir = new File(commandLine.getOptionValue(OPT_EXEC_FILE));
137 File reportDir = new File(commandLine.getOptionValue(OPT_REPORT_DIR));
141 return new Config(commandLine.getOptionValue(OPT_REPORT_NAME), classpaths, sources,
193 CommandLine commandLine = new PosixParser().parse(options, args)
    [all...]
  /developers/build/prebuilts/androidtv/leanback/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-Styled/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActiveNotifications/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/AgendaData/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AlwaysOn/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AppRestrictionEnforcer/gradle/wrapper/
gradle-wrapper.jar 

Completed in 952 milliseconds

1 2 3 4 5 6 7 8 91011>>