/third_party/typescript/src/executeCommandLine/ |
D | executeCommandLine.ts | 79 function getOptionsForHelp(commandLine: ParsedCommandLine) { 81 return !!commandLine.options.all ? 454 function printHelp(sys: System, commandLine: ParsedCommandLine) { 455 if (!commandLine.options.all) { 456 printEasyHelp(sys, getOptionsForHelp(commandLine)); 459 printAllHelp(sys, getOptionsForHelp(commandLine), optionsForBuild, optionsForWatch); 466 commandLine: ParsedCommandLine, 469 if (commandLine.options.build) { 476 if (commandLine.options.locale) { 477 validateLocaleAndSetLanguage(commandLine.options.locale, sys, commandLine.errors); [all …]
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
D | vkPrograms.cpp | 423 …(const GlslSource& program, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in buildProgram() argument 431 const int optimizationRecipe = commandLine.getOptimizationRecipe(); in buildProgram() 433 if (commandLine.isShadercacheEnabled()) in buildProgram() 435 …shaderCacheFirstRunCheck(commandLine.getShaderCacheFilename(), commandLine.isShaderCacheTruncateEn… in buildProgram() 452 res = shadercacheLoad(cachekey, commandLine.getShaderCacheFilename()); in buildProgram() 502 if (commandLine.isShadercacheEnabled()) in buildProgram() 503 shadercacheSave(res, cachekey, commandLine.getShaderCacheFilename()); in buildProgram() 508 …(const HlslSource& program, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine) in buildProgram() argument 516 const int optimizationRecipe = commandLine.getOptimizationRecipe(); in buildProgram() 518 if (commandLine.isShadercacheEnabled()) in buildProgram() [all …]
|
D | vkPrograms.hpp | 214 …const GlslSource& program, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine); 215 …const HlslSource& program, glu::ShaderProgramInfo* buildInfo, const tcu::CommandLine& commandLine); 216 …nst vk::SpirVAsmSource& program, SpirVProgramInfo* buildInfo, const tcu::CommandLine& commandLine);
|
/third_party/vk-gl-cts/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()
|
/third_party/typescript/src/testRunner/unittests/config/ |
D | showConfig.ts | 23 let commandLine = parseCommandLine(commandLinesArgs); 24 if (commandLine.options.project) { 25 …const result = getParsedCommandLineOfConfigFile(commandLine.options.project, commandLine.options, … 27 commandLine = result; 30 const initResult = convertToTSConfig(commandLine, configPath, configParseHost);
|
D | commandLineParsing.ts | 3 …function assertParseResult(subScenario: string, commandLine: string[], workerDiagnostic?: () => Pa… 6 baseline.push(commandLine.join(" ")); 7 … parseCommandLineWorker(workerDiagnostic?.() || compilerOptionsDidYouMeanDiagnostics, commandLine); 194 function assertParseResult(subScenario: string, commandLine: string[]) { 197 baseline.push(commandLine.join(" ")); 198 const parsed = parseBuildCommand(commandLine);
|
D | initializeTSConfig.ts | 5 const commandLine = parseCommandLine(commandLinesArgs); constant 6 … const initResult = generateTSConfig(commandLine.options, commandLine.fileNames, "\n");
|
/third_party/vk-gl-cts/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()
|
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()
|
/third_party/vk-gl-cts/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 …]
|
/third_party/vk-gl-cts/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()
|
/third_party/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);
|
/third_party/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);
|
/third_party/vk-gl-cts/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()
|
/third_party/typescript/src/compiler/ |
D | watchPublic.ts | 981 …function watchReferencedProject(configFileName: string, configPath: Path, commandLine: ParsedConfi… 983 commandLine.watcher ||= watchFile( 993 commandLine.parsedCommandLine?.watchOptions || watchOptions, 997 if (commandLine.parsedCommandLine?.wildcardDirectories) { 999 commandLine.watchedDirectories ||= new Map(), 1000 new Map(getEntries(commandLine.parsedCommandLine?.wildcardDirectories)), 1035 commandLine.parsedCommandLine?.watchOptions || watchOptions, 1040 else if (commandLine.watchedDirectories) { 1041 clearMap(commandLine.watchedDirectories, closeFileWatcherOf); 1042 commandLine.watchedDirectories = undefined; [all …]
|
D | program.ts | 670 … return worker(resolvedRef.commandLine.projectReferences, resolvedRef.references, resolvedRef); 813 …if (oldResolvedRef.commandLine.options.configFile !== newParsedCommandLine.options.configFile) ret… 816 …if (!arrayIsEqualTo(oldResolvedRef.commandLine.fileNames, newParsedCommandLine.fileNames)) return … 823 …!resolvedProjectReferenceUptoDate(childResolvedRef, oldResolvedRef.commandLine.projectReferences![… 1182 const out = outFile(parsedRef.commandLine.options); 1184 … if (out || getEmitModuleKind(parsedRef.commandLine.options) === ModuleKind.None) { 1185 for (const fileName of parsedRef.commandLine.fileNames) { 1194 … else if (getEmitModuleKind(parsedRef.commandLine.options) === ModuleKind.None) { 1195 …ceDirectory = memoize(() => getCommonSourceDirectoryOfConfig(parsedRef.commandLine, !host.useCaseS… 1196 for (const fileName of parsedRef.commandLine.fileNames) { [all …]
|
/third_party/vk-gl-cts/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()
|
/third_party/vk-gl-cts/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()
|
/third_party/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'
|
/third_party/vk-gl-cts/android/cts/runner/tests/src/com/drawelements/deqp/runner/ |
D | DeqpTestRunnerTest.java | 243 String commandLine = String.format( in testGlesVersion() local 251 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, in testGlesVersion() 287 private void expectRenderConfigQuery(ITestDevice mockDevice, String commandLine) in expectRenderConfigQuery() argument 289 expectRenderConfigQueryAndReturn(mockDevice, commandLine, "Yes"); in expectRenderConfigQuery() 292 private void expectRenderConfigQueryAndReturn(ITestDevice mockDevice, String commandLine, in expectRenderConfigQueryAndReturn() argument 299 AbiUtils.createAbiFlag(ABI.getName()), commandLine, in expectRenderConfigQueryAndReturn() 371 String commandLine = String.format( in testResultCode() local 379 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testResultCode() 538 String commandLine = String.format( in testRun_multipleTests() local 546 runInstrumentationLineAndAnswer(mockDevice, mockIDevice, testTrie, commandLine, output); in testRun_multipleTests() [all …]
|
/third_party/skia/platform_tools/android/apps/ |
D | build.gradle | 33 commandLine "cmd", "/c", cmd 35 commandLine cmd.split()
|