Home
last modified time | relevance | path

Searched refs:cmdId (Results 1 – 25 of 243) sorted by relevance

12345678910

/dports/databases/retcl/retcl-0.4.0/
H A Dretcl.tm325 set cmdId $args
332 set cmdId [lindex $args 1]
366 method resultReady {cmdId} {
376 method resultType {cmdId} {
488 set cmdId {}
499 return $cmdId
502 set res [my result $cmdId]
503 my clearResult $cmdId
698 set cmdId [lindex $cmdIds 0]
701 {*}$cb $cmdId $type $body
[all …]
H A Dretcl-0.4.0.tm325 set cmdId $args
332 set cmdId [lindex $args 1]
366 method resultReady {cmdId} {
376 method resultType {cmdId} {
488 set cmdId {}
499 return $cmdId
502 set res [my result $cmdId]
503 my clearResult $cmdId
698 set cmdId [lindex $cmdIds 0]
701 {*}$cb $cmdId $type $body
[all …]
/dports/devel/RStudio/rstudio-2021.09.1-372/src/node/desktop/src/main/
H A Dmenu-callback.ts109 this.addCommand(cmdId, label, tooltip, shortcut, checkable);
192 if (cmdId === 'zoomActualSize') {
194 } else if (cmdId === 'zoomIn') {
196 } else if (cmdId === 'zoomOut') {
198 } else if (cmdId === 'cutDummy') {
200 } else if (cmdId === 'copyDummy') {
202 } else if (cmdId === 'pasteDummy') {
204 } else if (cmdId === 'pasteWithIndentDummy') {
206 } else if (cmdId === 'undoDummy') {
208 } else if (cmdId === 'redoDummy') {
[all …]
/dports/devel/upp/upp/bazaar/XMLMenu/
H A DXMLMenuEditor.h78 void SetCommandId(String const &cmdId) { itemPane.cmdId = cmdId; fieldsModCb(); } in SetCommandId() argument
173 bool IsUsingCommand(String const &cmdId) const;
176 void SetCommandId(String const &cmdId) { barEditor.SetCommandId(cmdId); } in SetCommandId() argument
189 if(~cmdId == "") in okCb()
194 if(adding && cmds.Has(~cmdId)) in okCb()
196 Exclamation(Format(t_("Command '%s' already present"), ~cmdId)); in okCb()
212 cmdId.SetEditable(adding); in XMLCmdEdit()
248 bool cmdInUse(String const &cmdId) const;
H A DXMLMenuEditor.cpp35 itemPane.cmdId <<= THISBACK(fieldsModCb); in XMLBarEditor()
158 itemPane.cmdId.Disable(); in itemSelCb()
172 itemPane.cmdId.Clear(); in itemSelCb()
189 itemPane.cmdId.Clear(); in itemSelCb()
191 itemPane.cmdId = item.GetId(); in itemSelCb()
204 itemPane.cmdId.Clear(); in itemSelCb()
229 item.commandId = ~itemPane.cmdId; in fieldsModCb()
447 if(items[iItem].GetId() == cmdId) in IsUsingCommand()
636 else if(cmdInUse(cmdId)) in cmdContextCb()
690 menusEditor.SetCommandId(cmdId); in cmdDblClickCb()
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/include/toonzqt/
H A Dselection.h46 void enableCommand(CommandId cmdId, CommandHandlerInterface *handler);
50 inline void enableCommand(T *target, CommandId cmdId, void (T::*method)()) { in enableCommand() argument
51 enableCommand(cmdId, new CommandHandlerHelper<T>(target, method)); in enableCommand()
55 inline void enableCommand(T *target, CommandId cmdId, void (T::*method)(R), in enableCommand() argument
57 enableCommand(cmdId, in enableCommand()
70 void addMenuAction(QMenu *menu, CommandId cmdId);
/dports/www/matomo/piwik/core/
H A DCliMulti.php164 $cmdId = $this->generateCommandId($url) . $index;
168 $output = new StaticOutput($cmdId);
172 $this->executeUrlCommand($cmdId, $url, $numUrls);
177 private function executeUrlCommand($cmdId, $url, $numUrls) argument
181 $output = new StaticOutput($cmdId);
184 $output = new Output($cmdId);
185 $this->executeAsyncCli($url, $output, $cmdId);
188 $output = new StaticOutput($cmdId);
357 private function executeAsyncCli($url, Output $output, $cmdId) argument
359 $this->processes[] = new Process($cmdId);
[all …]
/dports/editors/texstudio/texstudio-4.1.2/src/tests/
H A Dbuildmanager_t.h181 void commandLineRequested(const QString& cmdId, QString* result){ in commandLineRequested() argument
182 if (cmdId == "mocka") *result = "coffee"; in commandLineRequested()
183 …else if (cmdId == "mockb") *result = "foobar -test -xyz -maus=haus --maus=laus -abc -maus=\"test t… in commandLineRequested()
184 else if (cmdId == "mockc") *result = "test -xyz -quadrat ?m.abc"; in commandLineRequested()
185 else if (cmdId == "mockab") *result = "txs:///mocka | txs:///mockb"; in commandLineRequested()
186 else if (cmdId == "mockac") *result = "txs:///mocka | txs:///mockc"; in commandLineRequested()
187 else if (cmdId == "mockbc") *result = "txs:///mockb | txs:///mockc"; in commandLineRequested()
188 else if (cmdId == "mockabc") *result = "txs:///mocka | txs:///mockb | txs:///mockc"; in commandLineRequested()
189 else if (cmdId == "mockab-c") *result = "txs:///mockab | txs:///mockc"; in commandLineRequested()
190 …else if (cmdId == "mock-pdflatex") *result = "pdflatex -interaction=nonstopmode -src -synctex=1 -… in commandLineRequested()
/dports/editors/libreoffice/libreoffice-7.2.6.2/qadevOOo/tests/java/ifc/ucb/
H A D_XCommandProcessor.java76 int cmdId; field in _XCommandProcessor
87 cmdId = oObj.createCommandIdentifier(); in _createCommandIdentifier()
89 if (cmdId == 0 || testCmdId == 0) { in _createCommandIdentifier()
93 if (cmdId == testCmdId) { in _createCommandIdentifier()
98 testCmdId != 0 && cmdId != 0 && cmdId != testCmdId); in _createCommandIdentifier()
202 oObj.abort(cmdId); in _abort()
214 oObj.execute(command, cmdId, null); in _abort()
/dports/editors/libreoffice/libreoffice-7.2.6.2/ucb/qa/complex/tdoc/
H A D_XCommandProcessor.java79 private int cmdId; field in _XCommandProcessor
94 cmdId = oObj.createCommandIdentifier(); in _createCommandIdentifier()
96 if (cmdId == 0 || testCmdId == 0) { in _createCommandIdentifier()
100 if (cmdId == testCmdId) { in _createCommandIdentifier()
104 return testCmdId != 0 && cmdId != 0 && cmdId != testCmdId; in _createCommandIdentifier()
205 oObj.abort(cmdId); in _abort()
217 oObj.execute(command, cmdId, null); in _abort()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/qadevOOo/tests/java/ifc/ucb/
H A D_XCommandProcessor.java76 int cmdId; field in _XCommandProcessor
87 cmdId = oObj.createCommandIdentifier(); in _createCommandIdentifier()
89 if (cmdId == 0 || testCmdId == 0) { in _createCommandIdentifier()
93 if (cmdId == testCmdId) { in _createCommandIdentifier()
98 testCmdId != 0 && cmdId != 0 && cmdId != testCmdId); in _createCommandIdentifier()
202 oObj.abort(cmdId); in _abort()
214 oObj.execute(command, cmdId, null); in _abort()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/ucb/qa/complex/tdoc/
H A D_XCommandProcessor.java79 private int cmdId; field in _XCommandProcessor
94 cmdId = oObj.createCommandIdentifier(); in _createCommandIdentifier()
96 if (cmdId == 0 || testCmdId == 0) { in _createCommandIdentifier()
100 if (cmdId == testCmdId) { in _createCommandIdentifier()
104 return testCmdId != 0 && cmdId != 0 && cmdId != testCmdId; in _createCommandIdentifier()
205 oObj.abort(cmdId); in _abort()
217 oObj.execute(command, cmdId, null); in _abort()
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonzqt/
H A Dselection.cpp49 void TSelection::enableCommand(CommandId cmdId, in enableCommand() argument
51 TSelectionHandle::getCurrent()->enableCommand(cmdId, handler); in enableCommand()
54 void TSelection::addMenuAction(QMenu *menu, CommandId cmdId) { in addMenuAction() argument
55 menu->addAction(CommandManager::instance()->getAction(cmdId)); in addMenuAction()
H A Dtselectionhandle.cpp63 void TSelectionHandle::enableCommand(std::string cmdId, in enableCommand() argument
65 CommandManager::instance()->setHandler(cmdId.c_str(), handler); in enableCommand()
66 m_enabledCommandIds.push_back(cmdId); in enableCommand()
/dports/misc/mxnet/incubator-mxnet-1.9.0/scala-package/core/src/main/scala/org/apache/mxnet/
H A DKVStoreServer.scala27 override def invoke(cmdId: Int, cmdBody: String): Unit = {
28 logger.debug("Receive cmdId {}, cmdBody: {}", cmdId, cmdBody)
29 if (cmdId == 0) {
34 logger.warn(s"Server ${kvStore.rank}, unknown command ($cmdId, $cmdBody)")
113 def invoke(cmdId: Int, cmdBody: String): Unit
/dports/misc/py-mxnet/incubator-mxnet-1.9.0/scala-package/core/src/main/scala/org/apache/mxnet/
H A DKVStoreServer.scala27 override def invoke(cmdId: Int, cmdBody: String): Unit = {
28 logger.debug("Receive cmdId {}, cmdBody: {}", cmdId, cmdBody)
29 if (cmdId == 0) {
34 logger.warn(s"Server ${kvStore.rank}, unknown command ($cmdId, $cmdBody)")
113 def invoke(cmdId: Int, cmdBody: String): Unit
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/webclient/src/websocket/
H A DWebClient.tsx31 private cmdId = 0;
113 this.cmdId = 0;
119 this.cmdId++;
120 cmd["cmdId"] = this.cmdId;
122 this.pendingCommands[this.cmdId] = callback;
293 const cmdId = response.cmdId;
295 if (!this.pendingCommands.hasOwnProperty(cmdId)) {
299 this.pendingCommands[cmdId](response);
300 delete this.pendingCommands[cmdId];
/dports/net/freerdp/freerdp-2.5.0/channels/rdpgfx/
H A Drdpgfx_common.c60 const char* rdpgfx_get_cmd_id_string(UINT16 cmdId) in rdpgfx_get_cmd_id_string() argument
62 if (cmdId <= RDPGFX_CMDID_MAPSURFACETOSCALEDWINDOW) in rdpgfx_get_cmd_id_string()
63 return RDPGFX_CMDID_STRINGS[cmdId]; in rdpgfx_get_cmd_id_string()
119 Stream_Read_UINT16(s, header->cmdId); /* cmdId (2 bytes) */ in rdpgfx_read_header()
134 Stream_Write_UINT16(s, header->cmdId); /* cmdId (2 bytes) */ in rdpgfx_write_header()
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/cockatrice/src/
H A Dabstractclient.cpp66 const int cmdId = response.cmd_id(); in processProtocolItem() local
68 PendingCommand *pend = pendingCommands.value(cmdId, 0); in processProtocolItem()
71 pendingCommands.remove(cmdId); in processProtocolItem()
158 const int cmdId = getNewCmdId(); in queuePendingCommand() local
159 pend->getCommandContainer().set_cmd_id(cmdId); in queuePendingCommand()
161 pendingCommands.insert(cmdId, pend); in queuePendingCommand()
/dports/databases/retcl/retcl-0.4.0/test/
H A D005-set-get.test8 set cmdId [$r SET key1 value1]
9 $r result $cmdId
29 set cmdId [$r GET key1]
30 $r result $cmdId
/dports/comms/pear-Horde_SyncMl/Horde_SyncMl-2.0.7/lib/Horde/SyncMl/
H A DSync.php466 $cmdId = $output->outputSyncCommand($command, $chunkContent,
496 $cmdId = $output->outputSyncCommand('Delete', null, null, null, $cuid, null);
498 … $state->serverChanges[$state->messageID][$this->_targetLocURI][$cmdId] = array($suid, $cuid);
549 $cmdId = $output->outputSyncCommand('Add', $chunkContent,
557 … $state->serverChanges[$state->messageID][$this->_targetLocURI][$cmdId] = array($suid, 0);
573 $cmdId = $output->outputSyncCommand('Add', $clientContent,
578 … $state->serverChanges[$state->messageID][$this->_targetLocURI][$cmdId] = array($suid, 0);
632 $cmdId = $output->outputSyncCommand('Replace', $chunkContent,
640 … $state->serverChanges[$state->messageID][$this->_targetLocURI][$cmdId] = array($suid, $cuid);
653 $cmdId = $output->outputSyncCommand('Replace', $clientContent,
[all …]
/dports/graphics/qtpbfimageplugin/QtPBFImagePlugin-2.1/src/
H A Dpbf.cpp61 unsigned cmdId = g & 0x7; in path() local
64 if (cmdId == MOVE_TO) { in path()
73 } else if (cmdId == LINE_TO) { in path()
82 } else if (cmdId == CLOSE_PATH) { in path()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/amd/amdgpu/
H A Dta_rap_if.h29 #define RSP_ID(cmdId) (((uint32_t)(cmdId)) | RSP_ID_MASK) argument
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/amd/amdgpu/
H A Dta_rap_if.h29 #define RSP_ID(cmdId) (((uint32_t)(cmdId)) | RSP_ID_MASK) argument
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/amd/amdgpu/
H A Dta_rap_if.h29 #define RSP_ID(cmdId) (((uint32_t)(cmdId)) | RSP_ID_MASK) argument

12345678910