Searched refs:commandLine (Results 1 – 6 of 6) sorted by relevance
/cts/tools/vm-tests-tf/src/util/build/ |
D | JackBuildStep.java | 58 List<String> commandLine = new ArrayList(4 + sourceFiles.size()); in build() local 59 commandLine.add("--verbose"); in build() 60 commandLine.add("error"); in build() 61 commandLine.add("--classpath"); in build() 62 commandLine.add(classPath); in build() 63 commandLine.add("--output-jack"); in build() 64 commandLine.add(destPath); in build() 65 commandLine.addAll(sourceFiles); in build() 68 Options options = Main.parseCommandLine(commandLine); in build()
|
D | JackDexBuildStep.java | 54 List<String> commandLine = new ArrayList<String>(4); in build() local 55 commandLine.add("--verbose"); in build() 56 commandLine.add("error"); in build() 57 commandLine.add("--output-dex-zip"); in build() 58 commandLine.add(outputFilePath); in build() 59 commandLine.add("--import"); in build() 60 commandLine.add(inputFile.fileName.getAbsolutePath()); in build() 63 Options options = Main.parseCommandLine(commandLine); in build()
|
D | JavacBuildStep.java | 58 String[] commandLine = new String[sourceFiles.size()+args]; in build() local 59 commandLine[0] = "-classpath"; in build() 60 commandLine[1] = classPath; in build() 61 commandLine[2] = "-d"; in build() 62 commandLine[3] = destPath; in build() 67 System.arraycopy(files, 0, commandLine, args, files.length); in build() 69 return Main.compile(commandLine, new PrintWriter(System.err)) == 0; in build()
|
D | JillBuildStep.java | 43 String[] commandLine = new String[args]; in build() local 44 commandLine[0] = "--output"; in build() 45 commandLine[1] = outputFile.fileName.getAbsolutePath(); in build() 46 commandLine[2] = inputFile.fileName.getAbsolutePath(); in build() 49 Options options = Main.getOptions(commandLine); in build()
|
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/ |
D | DeqpTestRunnerTest.java | 200 String commandLine = String.format( in testGlesVersion() local 208 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, in testGlesVersion() 248 private void expectRenderConfigQuery(ITestDevice mockDevice, String commandLine) in expectRenderConfigQuery() argument 250 expectRenderConfigQueryAndReturn(mockDevice, commandLine, "Yes"); in expectRenderConfigQuery() 253 private void expectRenderConfigQueryAndReturn(ITestDevice mockDevice, String commandLine, in expectRenderConfigQueryAndReturn() argument 260 AbiUtils.createAbiFlag(UnitTests.ABI.getName()), commandLine, in expectRenderConfigQueryAndReturn() 343 String commandLine = String.format( in testResultCode() local 351 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testResultCode() 513 String commandLine = String.format( in testRun_multipleTests() local 521 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testRun_multipleTests() [all …]
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
D | DeqpTestRunner.java | 1643 final String commandLine = configCommandLine.toString(); in isSupportedGlesRenderConfig() local 1646 if (mConfigQuerySupportCache.containsKey(commandLine)) { in isSupportedGlesRenderConfig() 1647 return mConfigQuerySupportCache.get(commandLine); in isSupportedGlesRenderConfig() 1650 final boolean supported = queryIsSupportedConfigCommandLine(commandLine); in isSupportedGlesRenderConfig() 1651 mConfigQuerySupportCache.put(commandLine, supported); in isSupportedGlesRenderConfig()
|