Home
last modified time | relevance | path

Searched refs:commandLine (Results 1 – 25 of 57) sorted by relevance

123

/third_party/typescript/src/executeCommandLine/
DexecuteCommandLine.ts79 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/
DvkPrograms.cpp423 …(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 …]
DvkPrograms.hpp214 …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/
DdeCommandLine.c39 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()
DdeProcess.c109 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/
DshowConfig.ts23 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);
DcommandLineParsing.ts3 …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);
DinitializeTSConfig.ts5 const commandLine = parseCommandLine(commandLinesArgs); constant
6 … const initResult = generateTSConfig(commandLine.options, commandLine.fileNames, "\n");
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcNoErrorTests.cpp75 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()
DglcContextFlagsTests.cpp65 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()
DglcTestPackage.cpp76 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()
DglcRobustnessTests.cpp77 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/
DvktTestPackage.cpp115 …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/
Dtgl45TestPackage.cpp70 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()
Dtes31TestPackage.cpp79 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/
DPerfFramework.pm127 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/
DPerfFramework4j.pm147 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/
DdeProcess.cpp43 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/
DwatchPublic.ts981 …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 …]
Dprogram.ts670 … 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/
Dtes2TestPackage.cpp151 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/
Dtes3TestPackage.cpp149 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/
Dbuild.gradle34 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/
DDeqpTestRunnerTest.java243 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/
Dbuild.gradle33 commandLine "cmd", "/c", cmd
35 commandLine cmd.split()

123