/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
D | WorkerProcessTest.java | 92 List<String> commandLine = builder.command(); in simpleArgsTest() local 93 assertEquals(new File("java").getAbsolutePath(), commandLine.get(0)); in simpleArgsTest() 94 assertEquals("--doTheHustle", commandLine.get(1)); // vm specific flags come next in simpleArgsTest() 95 assertEquals("-cp", commandLine.get(2)); // then the classpath in simpleArgsTest() 100 commandLine.subList(4, 4 + extraCommandLineArgs.size())); in simpleArgsTest() 102 assertEquals("-XX:+PrintFlagsFinal", commandLine.get(index)); in simpleArgsTest() 103 assertEquals("-XX:+PrintCompilation", commandLine.get(++index)); in simpleArgsTest() 104 assertEquals("-XX:+PrintGC", commandLine.get(++index)); in simpleArgsTest() 105 assertEquals(WorkerMain.class.getName(), commandLine.get(++index)); in simpleArgsTest()
|
/external/deqp/framework/delibs/deutil/ |
D | deCommandLine.c | 39 deCommandLine* deCommandLine_parse (const char* commandLine) in deCommandLine_parse() argument 56 DE_ASSERT(commandLine); in deCommandLine_parse() 59 buf = (char*)deCalloc(strlen(commandLine)+1); in deCommandLine_parse() 71 while (commandLine[pos] != 0) in deCommandLine_parse() 73 char c = commandLine[pos++]; in deCommandLine_parse() 78 c = commandLine[pos++]; in deCommandLine_parse() 112 DE_ASSERT(commandLine[pos] == 0); in deCommandLine_parse()
|
D | deProcess.c | 109 static void execProcess (const char* commandLine, const char* workingDirectory, int statusPipe) in execProcess() argument 111 deCommandLine* cmdLine = deCommandLine_parse(commandLine); in execProcess() 216 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirectory) in deProcess_start() argument 294 execProcess(commandLine, workingDirectory, statusPipe[1]); in deProcess_start() 628 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirectory) in deProcess_start() argument 702 …if (!CreateProcess(DE_NULL, (LPTSTR)commandLine, DE_NULL, DE_NULL, TRUE /* inherit handles */, 0, … in deProcess_start()
|
D | deProcess.h | 37 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirect…
|
/external/oj-libjdwp/src/share/back/ |
D | transport.c | 376 char *commandLine; in launch() local 380 commandLine = jvmtiAllocate((int)strlen(command) + in launch() 383 if (commandLine == NULL) { in launch() 386 (void)strcpy(commandLine, command); in launch() 387 (void)strcat(commandLine, " "); in launch() 388 (void)strcat(commandLine, name); in launch() 389 (void)strcat(commandLine, " "); in launch() 390 (void)strcat(commandLine, address); in launch() 393 len = (int)strlen(commandLine); in launch() 396 (jbyte*)commandLine, len, buf, len*3+3); in launch() [all …]
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkPrograms.cpp | 553 …(const GlslSource& program, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in buildProgram() argument 561 const int optimizationRecipe = commandLine.getOptimizationRecipe(); in buildProgram() 563 if (commandLine.isShadercacheEnabled()) in buildProgram() 565 …shaderCacheFirstRunCheck(commandLine.getShaderCacheFilename(), commandLine.isShaderCacheTruncateEn… in buildProgram() 582 res = shadercacheLoad(cachekey, commandLine.getShaderCacheFilename()); in buildProgram() 632 if (commandLine.isShadercacheEnabled()) in buildProgram() 633 shadercacheSave(res, cachekey, commandLine.getShaderCacheFilename()); in buildProgram() 638 …(const HlslSource& program, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in buildProgram() argument 646 const int optimizationRecipe = commandLine.getOptimizationRecipe(); in buildProgram() 648 if (commandLine.isShadercacheEnabled()) in buildProgram() [all …]
|
D | vkPrograms.hpp | 210 …const GlslSource& program, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine); 211 …const HlslSource& program, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine); 212 …nst vk::SpirVAsmSource& program, SpirVProgramInfo* buildInfo, const tcu::CommandLine& commandLine);
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktTestPackage.cpp | 99 …nst vk::GlslSource& source, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in compileProgram() argument 101 return vk::buildProgram(source, buildInfo, commandLine); in compileProgram() 104 …nst vk::HlslSource& source, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in compileProgram() argument 106 return vk::buildProgram(source, buildInfo, commandLine); in compileProgram() 109 …t vk::SpirVAsmSource& source, vk::SpirVProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in compileProgram() argument 111 return vk::assembleProgram(source, buildInfo, commandLine); in compileProgram() 120 const tcu::CommandLine& commandLine) in buildProgram() argument 129 …nProg = de::MovePtr<vk::ProgramBinary>(compileProgram(iter.getProgram(), &buildInfo, commandLine)); in buildProgram() 245 const tcu::CommandLine& commandLine = m_context.getTestContext().getCommandLine(); in init() local 262 …lection::Iterator>(casePath, progIter, m_prebuiltBinRegistry, log, &m_progCollection, commandLine); in init() [all …]
|
D | vktBuildPrograms.cpp | 256 void setCommandline (const tcu::CommandLine &commandLine) in setCommandline() argument 258 m_commandLine = &commandLine; in setCommandline() 311 void setCommandline (const tcu::CommandLine &commandLine) in setCommandline() argument 313 m_commandLine = &commandLine; in setCommandline()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcNoErrorTests.cpp | 75 const tcu::CommandLine& commandLine = m_testCtx.getCommandLine(); in verifyNoErrorContext() local 76 glu::parseRenderConfig(&renderCfg, commandLine); in verifyNoErrorContext() 78 if (commandLine.getSurfaceType() != tcu::SURFACETYPE_WINDOW) in verifyNoErrorContext() 81 …RenderContext* noErrorContext = createRenderContext(m_testCtx.getPlatform(), commandLine, renderCf… in verifyNoErrorContext()
|
D | glcContextFlagsTests.cpp | 65 const tcu::CommandLine& commandLine = m_testCtx.getCommandLine(); in createContext() local 66 glu::parseRenderConfig(&renderCfg, commandLine); in createContext() 68 if (commandLine.getSurfaceType() != tcu::SURFACETYPE_WINDOW) in createContext() 71 m_caseContext = glu::createRenderContext(m_testCtx.getPlatform(), commandLine, renderCfg); in createContext()
|
D | glcRobustnessTests.cpp | 77 const tcu::CommandLine& commandLine = m_testCtx.getCommandLine(); in createRobustContext() local 78 glu::parseRenderConfig(&renderCfg, commandLine); in createRobustContext() 80 if (commandLine.getSurfaceType() == tcu::SURFACETYPE_WINDOW) in createRobustContext() 86 return createRenderContext(m_testCtx.getPlatform(), commandLine, renderCfg); in createRobustContext()
|
D | glcKHRDebugTests.cpp | 190 const tcu::CommandLine& commandLine = m_testContext.getCommandLine(); in initDebug() local 191 parseRenderConfig(&renderCfg, commandLine); in initDebug() 193 if (commandLine.getSurfaceType() != tcu::SURFACETYPE_WINDOW) in initDebug() 196 m_rc = createRenderContext(platform, commandLine, renderCfg); in initDebug() 207 const tcu::CommandLine& commandLine = m_testContext.getCommandLine(); in initNonDebug() local 208 parseRenderConfig(&renderCfg, commandLine); in initNonDebug() 210 if (commandLine.getSurfaceType() != tcu::SURFACETYPE_WINDOW) in initNonDebug() 213 m_rc = createRenderContext(platform, commandLine, renderCfg); in initNonDebug()
|
/external/icu/icu4c/source/test/perf/perldriver/ |
D | PerfFramework.pm | 127 my $commandLine; 129 $commandLine = "$program -i $ITERATIONS -p $NUMPASSES $locAndData @argsAndTest"; 131 $commandLine = "$program -t $TIME -p $NUMPASSES $locAndData @argsAndTest"; 134 my @res = measure1($commandLine);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
D | Support_Exec.java | 218 StringBuilder commandLine; in exec() local 220 commandLine = new StringBuilder(args.get(0)); in exec() 222 commandLine.append(" "); in exec() 223 commandLine.append(args.get(i)); in exec() 225 System.out.println("Exec: " + commandLine.toString()); in exec()
|
/external/icu/icu4j/perf-tests/perldriver/ |
D | PerfFramework4j.pm | 147 my $commandLine; 149 $commandLine = "$program @argsAndTest -i $ITERATIONS -p $NUMPASSES $locAndData $custArgs"; 151 $commandLine = "$program @argsAndTest -t $TIME -p $NUMPASSES $locAndData $custArgs"; 156 my @res = measure1($commandLine);
|
/external/deqp/framework/delibs/decpp/ |
D | deProcess.cpp | 43 void Process::start (const char* commandLine, const char* workingDirectory) in start() argument 45 if (!deProcess_start(m_process, commandLine, workingDirectory)) in start()
|
D | deProcess.hpp | 47 void start (const char* commandLine, const char* workingDirectory);
|
/external/deqp/android/cts/runner/tests/src/com/drawelements/deqp/runner/ |
D | DeqpTestRunnerTest.java | 241 String commandLine = String.format( in testGlesVersion() local 249 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, in testGlesVersion() 285 private void expectRenderConfigQuery(ITestDevice mockDevice, String commandLine) in expectRenderConfigQuery() argument 287 expectRenderConfigQueryAndReturn(mockDevice, commandLine, "Yes"); in expectRenderConfigQuery() 290 private void expectRenderConfigQueryAndReturn(ITestDevice mockDevice, String commandLine, in expectRenderConfigQueryAndReturn() argument 297 AbiUtils.createAbiFlag(ABI.getName()), commandLine, in expectRenderConfigQueryAndReturn() 369 String commandLine = String.format( in testResultCode() local 377 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testResultCode() 531 String commandLine = String.format( in testRun_multipleTests() local 539 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testRun_multipleTests() [all …]
|
/external/mdnsresponder/mDNSWindows/ControlPanel/ |
D | ControlPanelExe.cpp | 251 CCommandLineInfo commandLine; in InitInstance() local 299 ParseCommandLine( commandLine ); in InitInstance() 301 if ( commandLine.m_nShellCommand == CCommandLineInfo::AppRegister ) in InitInstance() 323 else if ( commandLine.m_nShellCommand == CCommandLineInfo::AppUnregister ) in InitInstance()
|
/external/caliper/caliper/src/main/java/com/google/caliper/config/ |
D | CaliperConfigLoader.java | 79 private static ImmutableMap<String, String> mergeProperties(Map<String, String> commandLine, in mergeProperties() argument 84 map.putAll(commandLine); // overwrite and augment in mergeProperties()
|
/external/boringssl/src/crypto/cipher_extra/test/ |
D | make_legacy_aead_tests.go | 264 …commandLine := fmt.Sprintf("go run make_legacy_aead_tests.go -cipher %s -mac %s", *bulkCipher, *ma… 266 commandLine += " -implicit-iv" 269 fmt.Printf("# %s\n", commandLine)
|
/external/skia/platform_tools/android/apps/ |
D | build.gradle | 33 commandLine "cmd", "/c", cmd 35 commandLine cmd.split()
|
/external/skqp/platform_tools/android/apps/ |
D | build.gradle | 33 commandLine "cmd", "/c", cmd 35 commandLine cmd.split()
|
/external/deqp/execserver/ |
D | xsWin32TestProcess.hpp | 139 void start (const char* commandLine, const char* workingDirectory);
|