/third_party/typescript/src/executeCommandLine/ |
D | executeCommandLine.ts | 81 function getOptionsForHelp(commandLine: ParsedCommandLine) { 83 return !!commandLine.options.all ? 203 commandLine: ParsedCommandLine, 206 if (commandLine.options.build) { 213 if (commandLine.options.locale) { 214 validateLocaleAndSetLanguage(commandLine.options.locale, sys, commandLine.errors); 219 if (commandLine.errors.length > 0) { 220 commandLine.errors.forEach(reportDiagnostic); 224 if (commandLine.options.init) { 225 writeConfigFile(sys, reportDiagnostic, commandLine.options, commandLine.fileNames); [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 | initializeTSConfig.ts | 5 const commandLine = parseCommandLine(commandLinesArgs); constant 6 … const initResult = generateTSConfig(commandLine.options, commandLine.fileNames, "\n");
|
/third_party/flutter/flutter/dev/devicelab/lib/framework/ |
D | running_processes.dart | 12 const RunningProcessInfo(this.pid, this.creationDate, this.commandLine) 14 assert(commandLine != null); 16 final String commandLine; 24 other.commandLine == commandLine && 35 if (commandLine != null) { 36 hash = hash * 23 + commandLine.hashCode; 46 return 'RunningProcesses{pid: $pid, commandLine: $commandLine, creationDate: $creationDate}'; 168 final String commandLine = line.substring(commandLineHeaderStart).trim(); 169 yield RunningProcessInfo(pid, creationDate, commandLine); 258 final String commandLine = line.substring(nextSpace + 1); [all …]
|
/third_party/typescript_eslint/packages/typescript-estree/src/create-program/ |
D | createDefaultProgram.ts | 32 const commandLine = ts.getParsedCommandLineOfConfigFile( constant 38 if (!commandLine) { 43 commandLine.options, 54 commandLine.options,
|
/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()
|
/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/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/grpc/src/csharp/Grpc.Tools.Tests/ |
D | ProtoCompileBasicTest.cs | 39 string commandLine) in ExecuteTool() argument 42 Assert.That(commandLine, Is.Null | Is.Empty); in ExecuteTool()
|
/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/flutter/flutter/dev/bots/ |
D | prepare_package.dart | 108 /// Run the command and arguments in `commandLine` as a sub-process from 115 List<String> commandLine, { 121 stderr.write('Running "${commandLine.join(' ')}" in ${workingDirectory.path}.\n'); 135 commandLine, 159 final String message = 'Running "${commandLine.join(' ')}" in ${workingDirectory.path} ' 163 final String message = 'Running "${commandLine.join(' ')}" in ${workingDirectory.path} ' 170 … final String message = 'Running "${commandLine.join(' ')}" in ${workingDirectory.path} failed'; 400 List<String> commandLine; 402 commandLine = <String>[ 408 commandLine = <String>[ [all …]
|
/third_party/typescript/src/compiler/ |
D | program.ts | 572 … return worker(resolvedRef.commandLine.projectReferences, resolvedRef.references, resolvedRef); 735 …!resolvedProjectReferenceUptoDate(childResolvedRef, oldResolvedRef.commandLine.projectReferences![… 943 const out = outFile(parsedRef.commandLine.options); 945 … if (out || getEmitModuleKind(parsedRef.commandLine.options) === ModuleKind.None) { 946 for (const fileName of parsedRef.commandLine.fileNames) { 955 … else if (getEmitModuleKind(parsedRef.commandLine.options) === ModuleKind.None) { 956 …ceDirectory = memoize(() => getCommonSourceDirectoryOfConfig(parsedRef.commandLine, !host.useCaseS… 957 for (const fileName of parsedRef.commandLine.fileNames) { 959 …sProjectReferenceFile(getOutputDeclarationFileName(fileName, parsedRef.commandLine, !host.useCaseS… 1178 const out = outFile(resolvedRef.commandLine.options); [all …]
|