Home
last modified time | relevance | path

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

/cts/tools/vm-tests-tf/src/util/build/
DJavacBuildStep.java59 String[] commandLine = new String[sourceFiles.size()+args]; in build() local
60 commandLine[0] = "-classpath"; in build()
61 commandLine[1] = classPath; in build()
62 commandLine[2] = "-d"; in build()
63 commandLine[3] = destPath; in build()
64 commandLine[4] = "-source"; in build()
65 commandLine[5] = "1.7"; in build()
66 commandLine[6] = "-target"; in build()
67 commandLine[7] = "1.7"; in build()
72 System.arraycopy(files, 0, commandLine, args, files.length); in build()
[all …]
DJackDexBuildStep.java60 List<String> commandLine = new ArrayList<String>(4); in build() local
61 commandLine.add("--verbose"); in build()
62 commandLine.add("error"); in build()
63 commandLine.add("--output-dex"); in build()
64 commandLine.add(tmpOutDir.getAbsolutePath()); in build()
65 commandLine.add("--import"); in build()
66 commandLine.add(inputFile.fileName.getAbsolutePath()); in build()
69 commandLine.toArray(new String[commandLine.size()])); in build()
DJackBuildStep.java79 List<String> commandLine = new ArrayList<String>(6 + sourceFiles.size()); in build() local
80 commandLine.add("--verbose"); in build()
81 commandLine.add("error"); in build()
82 commandLine.add("--classpath"); in build()
83 commandLine.add(classPath); in build()
84 commandLine.add("--output-dex"); in build()
85 commandLine.add(tmpOutDir.getAbsolutePath()); in build()
86 commandLine.add("@" + tmpArgs.getPath()); in build()
89 commandLine.toArray(new String[commandLine.size()])); in build()
DJillBuildStep.java52 String[] commandLine = new String[] { in build() local
61 ExecuteFile exec = new ExecuteFile(JackBuildDalvikSuite.JACK, commandLine); in build()
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
DDeqpTestRunnerTest.java197 String commandLine = String.format( in testGlesVersion() local
205 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, in testGlesVersion()
245 private void expectRenderConfigQuery(ITestDevice mockDevice, String commandLine) in expectRenderConfigQuery() argument
247 expectRenderConfigQueryAndReturn(mockDevice, commandLine, "Yes"); in expectRenderConfigQuery()
250 private void expectRenderConfigQueryAndReturn(ITestDevice mockDevice, String commandLine, in expectRenderConfigQueryAndReturn() argument
257 AbiUtils.createAbiFlag(UnitTests.ABI.getName()), commandLine, in expectRenderConfigQueryAndReturn()
340 String commandLine = String.format( in testResultCode() local
348 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testResultCode()
510 String commandLine = String.format( in testRun_multipleTests() local
518 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testRun_multipleTests()
[all …]
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DDeqpTestRunner.java1717 final String commandLine = configCommandLine.toString(); in isSupportedGlesRenderConfig() local
1720 if (mConfigQuerySupportCache.containsKey(commandLine)) { in isSupportedGlesRenderConfig()
1721 return mConfigQuerySupportCache.get(commandLine); in isSupportedGlesRenderConfig()
1724 final boolean supported = queryIsSupportedConfigCommandLine(commandLine); in isSupportedGlesRenderConfig()
1725 mConfigQuerySupportCache.put(commandLine, supported); in isSupportedGlesRenderConfig()