Home
last modified time | relevance | path

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

12345

/external/aws-sdk-java-v2/release-scripts/src/main/java/software/amazon/awssdk/release/
DUpdateServiceMain.java61 protected void run(CommandLine commandLine) throws Exception { in run() argument
62 new ServiceUpdater(commandLine).run(); in run()
75 private ServiceUpdater(CommandLine commandLine) { in ServiceUpdater() argument
76 … this.mavenProjectRoot = Paths.get(commandLine.getOptionValue("maven-project-root").trim()); in ServiceUpdater()
77 this.serviceId = commandLine.getOptionValue("service-id").trim(); in ServiceUpdater()
78 this.serviceModuleName = commandLine.getOptionValue("service-module-name").trim(); in ServiceUpdater()
79 this.serviceJson = Paths.get(commandLine.getOptionValue("service-json").trim()); in ServiceUpdater()
80 this.paginatorsJson = optionalPath(commandLine.getOptionValue("paginators-json")); in ServiceUpdater()
81 this.waitersJson = optionalPath(commandLine.getOptionValue("waiters-json")); in ServiceUpdater()
82 … this.endpointRuleSetJson = optionalPath(commandLine.getOptionValue("endpoint-rule-set-json")); in ServiceUpdater()
[all …]
DNewServiceMain.java81 protected void run(CommandLine commandLine) throws Exception { in run() argument
82 new NewServiceCreator(commandLine).run(); in run()
93 private NewServiceCreator(CommandLine commandLine) { in NewServiceCreator() argument
94 … this.mavenProjectRoot = Paths.get(commandLine.getOptionValue("maven-project-root").trim()); in NewServiceCreator()
95 this.mavenProjectVersion = commandLine.getOptionValue("maven-project-version").trim(); in NewServiceCreator()
96 this.serviceModuleName = commandLine.getOptionValue("service-module-name").trim(); in NewServiceCreator()
97 this.serviceId = commandLine.getOptionValue("service-id").trim(); in NewServiceCreator()
98 …this.serviceProtocol = transformSpecialProtocols(commandLine.getOptionValue("service-protocol").tr… in NewServiceCreator()
99 this.internalDependencies = computeInternalDependencies(toList(commandLine in NewServiceCreator()
101 toList(commandLine in NewServiceCreator()
DCreateNewServiceModuleMain.java114 protected void run(CommandLine commandLine) throws Exception { in run() argument
115 new NewServiceCreator(commandLine).run(); in run()
126 private NewServiceCreator(CommandLine commandLine) { in NewServiceCreator() argument
127 … this.mavenProjectRoot = Paths.get(commandLine.getOptionValue("maven-project-root").trim()); in NewServiceCreator()
128 this.mavenProjectVersion = commandLine.getOptionValue("maven-project-version").trim(); in NewServiceCreator()
129 this.serviceModuleName = commandLine.getOptionValue("service-module-name").trim(); in NewServiceCreator()
130 this.serviceId = commandLine.getOptionValue("service-id").trim(); in NewServiceCreator()
131 …this.serviceProtocol = transformSpecialProtocols(commandLine.getOptionValue("service-protocol").tr… in NewServiceCreator()
132 this.internalDependencies = computeInternalDependencies(toList(commandLine in NewServiceCreator()
134 toList(commandLine in NewServiceCreator()
DFinalizeNewServiceModuleMain.java52 protected void run(CommandLine commandLine) throws Exception { in run() argument
53 new NewServiceCreator(commandLine).run(); in run()
60 private NewServiceCreator(CommandLine commandLine) { in NewServiceCreator() argument
61 … this.mavenProjectRoot = Paths.get(commandLine.getOptionValue("maven-project-root").trim()); in NewServiceCreator()
62 … this.serviceModuleNames = Stream.of(commandLine.getOptionValue("service-module-names").split(",")) in NewServiceCreator()
/external/dokka/buildSrc/src/main/groovy/org/jetbrains/
DCrossPlatformExec.groovy25 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/
DvkPrograms.cpp371 void shaderCacheFirstRunCheck(const tcu::CommandLine &commandLine) in shaderCacheFirstRunCheck() argument
399 if (commandLine.isShaderCacheIPCEnabled()) in shaderCacheFirstRunCheck()
432 if (commandLine.isShaderCacheTruncateEnabled()) in shaderCacheFirstRunCheck()
435 FILE *f = fopen(commandLine.getShaderCacheFilename(), "wb"); in shaderCacheFirstRunCheck()
442 FILE *file = fopen(commandLine.getShaderCacheFilename(), "rb"); in shaderCacheFirstRunCheck()
690 const tcu::CommandLine &commandLine) in buildProgram() argument
693 const bool validateBinary = commandLine.isSpirvValidationEnabled(); in buildProgram()
698 const int optimizationRecipe = commandLine.getOptimizationRecipe(); in buildProgram()
701 if (commandLine.isShadercacheEnabled()) in buildProgram()
703 shaderCacheFirstRunCheck(commandLine); in buildProgram()
[all …]
/external/deqp/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()
118 DE_ASSERT(commandLine[pos] == 0); in deCommandLine_parse()
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
DWorkerProcessTest.java92 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/tink/tools/tinkey/src/test/java/com/google/crypto/tink/tinkey/
DCreateKeysetCommandTest.java73 String commandLine = in testCreateCleartext_explicitJson_shouldCreateNewKeyset() local
78 Tinkey.main(commandLine.split(" ")); in testCreateCleartext_explicitJson_shouldCreateNewKeyset()
94 String commandLine = in testCreateCleartext_binary_shouldCreateNewKeyset() local
99 Tinkey.main(commandLine.split(" ")); in testCreateCleartext_binary_shouldCreateNewKeyset()
122 String commandLine = in testCreateCleartext_withMasterKey_shouldCreateNewKeyset() local
130 Tinkey.main(commandLine.split(" ")); in testCreateCleartext_withMasterKey_shouldCreateNewKeyset()
154 String commandLine = in testCreateCleartext_withMasterKey_jsonFormat_shouldCreateNewKeyset() local
162 Tinkey.main(commandLine.split(" ")); in testCreateCleartext_withMasterKey_jsonFormat_shouldCreateNewKeyset()
/external/oj-libjdwp/src/share/back/
Dtransport.c376 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/cronet/stable/third_party/libc++/src/utils/
Dssh.py40 commandLine = args.command
82 for exe in filter(isTestExe, commandLine):
113 for exe in map(pathOnRemote, filter(isTestExe, commandLine)):
120 commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine)
131 remoteCommands.append(subprocess.list2cmdline(commandLine))
/external/cronet/tot/third_party/libc++/src/utils/
Dssh.py40 commandLine = args.command
82 for exe in filter(isTestExe, commandLine):
113 for exe in map(pathOnRemote, filter(isTestExe, commandLine)):
120 commandLine = (pathOnRemote(x) if isTestExe(x) else x for x in commandLine)
131 remoteCommands.append(subprocess.list2cmdline(commandLine))
/external/cronet/tot/testing/android/native_test/java/src/org/chromium/native_test/
DMainRunner.java24 public static int runMain(String[] commandLine, IBinder binderBox) { in runMain() argument
25 return MainRunnerJni.get().runMain(commandLine, binderBox); in runMain()
30 int runMain(String[] commandLine, IBinder binderBox); in runMain() argument
/external/cronet/stable/testing/android/native_test/java/src/org/chromium/native_test/
DMainRunner.java24 public static int runMain(String[] commandLine, IBinder binderBox) { in runMain() argument
25 return MainRunnerJni.get().runMain(commandLine, binderBox); in runMain()
30 int runMain(String[] commandLine, IBinder binderBox); in runMain() argument
/external/deqp/external/openglcts/modules/common/
DglcNoErrorTests.cpp76 const tcu::CommandLine &commandLine = m_testCtx.getCommandLine(); in verifyNoErrorContext() local
77 glu::parseRenderConfig(&renderCfg, commandLine); in verifyNoErrorContext()
79 if (commandLine.getSurfaceType() != tcu::SURFACETYPE_WINDOW) in verifyNoErrorContext()
82 …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()
/external/libchrome/base/android/java/src/org/chromium/base/
DCommandLine.java116 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()
/external/deqp/external/vulkancts/framework/vulkan/generated/vulkan/
DvkDeviceFeatureTest.inl22 …const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); local
40 …tor, &extensionNames, emptyDeviceFeatures, isSubProcess, context.getUsedApiVersion(), commandLine);
64 …const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); local
84 …tor, &extensionNames, emptyDeviceFeatures, isSubProcess, context.getUsedApiVersion(), commandLine);
108 …const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); local
126 …tor, &extensionNames, emptyDeviceFeatures, isSubProcess, context.getUsedApiVersion(), commandLine);
150 …const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); local
169 …tor, &extensionNames, emptyDeviceFeatures, isSubProcess, context.getUsedApiVersion(), commandLine);
193 …const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); local
213 …tor, &extensionNames, emptyDeviceFeatures, isSubProcess, context.getUsedApiVersion(), commandLine);
[all …]
/external/deqp/external/vulkancts/framework/vulkan/generated/vulkansc/
DvkDeviceFeatureTest.inl22 …const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); local
41 …mptyDeviceFeatures, memReservationStatMax, isSubProcess, context.getUsedApiVersion(), commandLine);
65 …const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); local
84 …mptyDeviceFeatures, memReservationStatMax, isSubProcess, context.getUsedApiVersion(), commandLine);
108 …const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); local
129 …mptyDeviceFeatures, memReservationStatMax, isSubProcess, context.getUsedApiVersion(), commandLine);
153 …const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); local
174 …mptyDeviceFeatures, memReservationStatMax, isSubProcess, context.getUsedApiVersion(), commandLine);
198 …const tcu::CommandLine& commandLine = context.getTestContext().getCommandLine(); local
218 …mptyDeviceFeatures, memReservationStatMax, isSubProcess, context.getUsedApiVersion(), commandLine);
[all …]
/external/executorch/examples/demo-apps/android/LlamaDemo/app/
Dbuild.gradle.kts75 commandLine("sh", "examples/demo-apps/android/LlamaDemo/setup.sh") in <lambda>()
84 commandLine("sh", "examples/demo-apps/android/LlamaDemo/setup-with-qnn.sh") in <lambda>()
93 commandLine("sh", "examples/demo-apps/android/LlamaDemo/download_prebuilt_lib.sh") in <lambda>()
/external/deqp/modules/gles3/
Dtgl45es3TestPackage.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()
/external/deqp/modules/gles31/
Dtgl45es31TestPackage.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()
/external/cronet/stable/base/test/android/javatests/src/org/chromium/base/test/util/
DCommandLineFlags.java83 CommandLine commandLine = CommandLine.getInstance(); in ensureInitialized() local
85 for (var e : commandLine.getSwitches().entrySet()) { in ensureInitialized()
147 CommandLine commandLine = CommandLine.getInstance(); in applyChanges() local
154 commandLine.hasSwitch(flagName) ? commandLine.getSwitchValue(flagName) : null; in applyChanges()
158 commandLine.appendSwitchWithValue(flagName, flagValue); in applyChanges()
172 commandLine.removeSwitch(flagName); in applyChanges()
174 commandLine.appendSwitchWithValue(flagName, flagValue); in applyChanges()
/external/cronet/tot/base/test/android/javatests/src/org/chromium/base/test/util/
DCommandLineFlags.java83 CommandLine commandLine = CommandLine.getInstance(); in ensureInitialized() local
85 for (var e : commandLine.getSwitches().entrySet()) { in ensureInitialized()
147 CommandLine commandLine = CommandLine.getInstance(); in applyChanges() local
154 commandLine.hasSwitch(flagName) ? commandLine.getSwitchValue(flagName) : null; in applyChanges()
158 commandLine.appendSwitchWithValue(flagName, flagValue); in applyChanges()
172 commandLine.removeSwitch(flagName); in applyChanges()
174 commandLine.appendSwitchWithValue(flagName, flagValue); in applyChanges()

12345