/external/dokka/buildSrc/src/main/groovy/org/jetbrains/ |
D | CrossPlatformExec.groovy | 25 List<String> commandLine = this.getCommandLine(); 27 if (!commandLine.isEmpty()) { 28 commandLine[0] = findCommand(commandLine[0], windows); 32 if (!commandLine.isEmpty() && commandLine[0]) { 33 commandLine 35 commandLine.add(0, '/c'); 36 commandLine.add(0, 'cmd'); 39 this.setCommandLine(commandLine);
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkPrograms.cpp | 424 …(const GlslSource& program, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in buildProgram() argument 432 const int optimizationRecipe = commandLine.getOptimizationRecipe(); in buildProgram() 434 if (commandLine.isShadercacheEnabled()) in buildProgram() 436 …shaderCacheFirstRunCheck(commandLine.getShaderCacheFilename(), commandLine.isShaderCacheTruncateEn… in buildProgram() 453 res = shadercacheLoad(cachekey, commandLine.getShaderCacheFilename()); in buildProgram() 503 if (commandLine.isShadercacheEnabled()) in buildProgram() 504 shadercacheSave(res, cachekey, commandLine.getShaderCacheFilename()); in buildProgram() 509 …(const HlslSource& program, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in buildProgram() argument 517 const int optimizationRecipe = commandLine.getOptimizationRecipe(); in buildProgram() 519 if (commandLine.isShadercacheEnabled()) in buildProgram() [all …]
|
/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()
|
/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/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/libchrome/base/android/java/src/org/chromium/base/ |
D | CommandLine.java | 116 CommandLine commandLine = sCommandLine.get(); in getInstance() local 117 assert commandLine != null; in getInstance() 118 return commandLine; in getInstance() 214 CommandLine commandLine = sCommandLine.get(); in getJavaSwitchesOrNull() local 215 if (commandLine != null) { in getJavaSwitchesOrNull() 216 return commandLine.getCommandLineArguments(); in getJavaSwitchesOrNull() 221 private static void setInstance(CommandLine commandLine) { in setInstance() argument 222 CommandLine oldCommandLine = sCommandLine.getAndSet(commandLine); in setInstance()
|
D | LocaleUtils.java | 201 CommandLine commandLine = CommandLine.getInstance(); in getDefaultCountryCode() local 202 return commandLine.hasSwitch(BaseSwitches.DEFAULT_COUNTRY_CODE_AT_INSTALL) in getDefaultCountryCode() 203 ? commandLine.getSwitchValue(BaseSwitches.DEFAULT_COUNTRY_CODE_AT_INSTALL) in getDefaultCountryCode()
|
/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 | glcTestPackage.cpp | 76 const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); in init() local 77 tcu::SessionInfo sessionInfo (vendor, renderer, commandLine.getInitialCmdLine()); in init() 78 m_waiverMechanism->setup(commandLine.getWaiverFileName(), m_name, vendor, renderer, sessionInfo); in init()
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktTestPackage.cpp | 115 …nst vk::GlslSource& source, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in compileProgram() argument 117 return vk::buildProgram(source, buildInfo, commandLine); in compileProgram() 120 …nst vk::HlslSource& source, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in compileProgram() argument 122 return vk::buildProgram(source, buildInfo, commandLine); in compileProgram() 125 …t vk::SpirVAsmSource& source, vk::SpirVProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in compileProgram() argument 127 return vk::assembleProgram(source, buildInfo, commandLine); in compileProgram() 136 const tcu::CommandLine& commandLine) in buildProgram() argument 145 …nProg = de::MovePtr<vk::ProgramBinary>(compileProgram(iter.getProgram(), &buildInfo, commandLine)); in buildProgram() 266 const tcu::CommandLine& commandLine = m_context.getTestContext().getCommandLine(); in init() local 267 …const bool doShaderLog = commandLine.isLogDecompiledSpirvEnabled() && log.isShaderLoggingE… in init() [all …]
|
/external/deqp/modules/gles31/ |
D | tgl45TestPackage.cpp | 70 const tcu::CommandLine& commandLine = m_context->getTestContext().getCommandLine(); in init() local 71 tcu::SessionInfo sessionInfo (vendor, renderer, commandLine.getInitialCmdLine()); in init() 72 m_waiverMechanism->setup(commandLine.getWaiverFileName(), m_name, vendor, renderer, sessionInfo); in init()
|
D | tes31TestPackage.cpp | 79 const tcu::CommandLine& commandLine = m_context->getTestContext().getCommandLine(); in init() local 80 tcu::SessionInfo sessionInfo (vendor, renderer, commandLine.getInitialCmdLine()); in init() 81 m_waiverMechanism->setup(commandLine.getWaiverFileName(), m_name, vendor, renderer, sessionInfo); in init()
|
/external/libchrome/base/test/android/java/src/org/chromium/base/ |
D | MultiprocessTestClientLauncher.java | 132 private MultiprocessTestClientLauncher(String[] commandLine, FileDescriptorInfo[] filesToMap) { in MultiprocessTestClientLauncher() argument 142 mLauncher = new ChildProcessLauncher(sLauncherHandler, mLauncherDelegate, commandLine, in MultiprocessTestClientLauncher() 199 final String[] commandLine, final FileDescriptorInfo[] filesToMap) { in launchClient() argument 206 return createAndStartLauncherOnLauncherThread(commandLine, filesToMap); in launchClient() 229 String[] commandLine, FileDescriptorInfo[] filesToMap) { 233 new MultiprocessTestClientLauncher(commandLine, filesToMap);
|
/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/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/libchrome/base/android/javatests/src/org/chromium/base/ |
D | CommandLineInitUtilTest.java | 32 final CommandLine commandLine = CommandLine.getInstance(); in testDefaultCommandLineFlagsSet() local 33 Assert.assertTrue(commandLine.hasSwitch("enable-test-intents")); in testDefaultCommandLineFlagsSet()
|
/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()
|
/external/deqp/modules/gles3/ |
D | tes3TestPackage.cpp | 149 const tcu::CommandLine& commandLine = m_context->getTestContext().getCommandLine(); in init() local 150 tcu::SessionInfo sessionInfo (vendor, renderer, commandLine.getInitialCmdLine()); in init() 151 m_waiverMechanism->setup(commandLine.getWaiverFileName(), m_name, vendor, renderer, sessionInfo); in init()
|
/external/deqp/modules/gles2/ |
D | tes2TestPackage.cpp | 151 const tcu::CommandLine& commandLine = m_context->getTestContext().getCommandLine(); in init() local 152 tcu::SessionInfo sessionInfo (vendor, renderer, commandLine.getInitialCmdLine()); in init() 153 m_waiverMechanism->setup(commandLine.getWaiverFileName(), m_name, vendor, renderer, sessionInfo); in init()
|
/external/libwebsockets/test-apps/android/app/ |
D | build.gradle | 34 commandLine 'make', '-f', 'NativeLibs.mk', '-C', 'src/main/jni', 'all' 38 commandLine 'make', '-f', 'NativeLibs.mk', '-C', 'src/main/jni', 'clean-ndk'
|
/external/deqp/android/cts/runner/tests/src/com/drawelements/deqp/runner/ |
D | DeqpTestRunnerTest.java | 252 String commandLine = String.format( in testGlesVersion() local 260 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, in testGlesVersion() 296 private void expectRenderConfigQuery(ITestDevice mockDevice, String commandLine) in expectRenderConfigQuery() argument 298 expectRenderConfigQueryAndReturn(mockDevice, commandLine, "Yes"); in expectRenderConfigQuery() 301 private void expectRenderConfigQueryAndReturn(ITestDevice mockDevice, String commandLine, in expectRenderConfigQueryAndReturn() argument 308 AbiUtils.createAbiFlag(ABI.getName()), commandLine, in expectRenderConfigQueryAndReturn() 380 String commandLine = String.format( in testResultCode() local 388 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testResultCode() 547 String commandLine = String.format( in testRun_multipleTests() local 555 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()
|