Home
last modified time | relevance | path

Searched refs:commandID (Results 1 – 25 of 685) sorted by relevance

12345678910>>...28

/dports/net-mgmt/librenms/librenms-vendor-21.5.1/predis/predis/src/Profile/
H A DRedisProfile.php46 public function supportsCommand($commandID) argument
56 foreach ($commandIDs as $commandID) {
57 if (!$this->supportsCommand($commandID)) {
69 * @param string $commandID Command ID.
73 public function getCommandClass($commandID) argument
75 if (isset($this->commands[$commandID = strtoupper($commandID)])) {
76 return $this->commands[$commandID];
85 $commandID = strtoupper($commandID);
87 if (!isset($this->commands[$commandID])) {
91 $commandClass = $this->commands[$commandID];
[all …]
/dports/net-mgmt/icingaweb2-module-reactbundle/icingaweb2-module-reactbundle-0.9.0/vendor/predis/predis/src/Profile/
H A DRedisProfile.php46 public function supportsCommand($commandID) argument
56 foreach ($commandIDs as $commandID) {
57 if (!$this->supportsCommand($commandID)) {
69 * @param string $commandID Command ID.
73 public function getCommandClass($commandID) argument
75 if (isset($this->commands[$commandID = strtoupper($commandID)])) {
76 return $this->commands[$commandID];
85 $commandID = strtoupper($commandID);
87 if (!isset($this->commands[$commandID])) {
91 $commandClass = $this->commands[$commandID];
[all …]
/dports/mail/rainloop-community/rainloop-community-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/Predis/Profile/
H A DRedisProfile.php46 public function supportsCommand($commandID) argument
56 foreach ($commandIDs as $commandID) {
57 if (!$this->supportsCommand($commandID)) {
69 * @param string $commandID Command ID.
73 public function getCommandClass($commandID) argument
75 if (isset($this->commands[$commandID = strtoupper($commandID)])) {
76 return $this->commands[$commandID];
85 $commandID = strtoupper($commandID);
87 if (!isset($this->commands[$commandID])) {
91 $commandClass = $this->commands[$commandID];
[all …]
/dports/mail/rainloop/rainloop-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/Predis/Profile/
H A DRedisProfile.php46 public function supportsCommand($commandID) argument
56 foreach ($commandIDs as $commandID) {
57 if (!$this->supportsCommand($commandID)) {
69 * @param string $commandID Command ID.
73 public function getCommandClass($commandID) argument
75 if (isset($this->commands[$commandID = strtoupper($commandID)])) {
76 return $this->commands[$commandID];
85 $commandID = strtoupper($commandID);
87 if (!isset($this->commands[$commandID])) {
91 $commandClass = $this->commands[$commandID];
[all …]
/dports/audio/carla/Carla-2.4.1/source/modules/juce_gui_basics/commands/
H A Djuce_ApplicationCommandManager.cpp52 jassert (newCommand.commandID != 0); in registerCommand()
92 target->getCommandInfo (info.commandID, info); in registerAllCommandsForTarget()
103 if (commands.getUnchecked (i)->commandID == commandID) in removeCommand()
125 if (commands.getUnchecked(i)->commandID == commandID) in getMutableCommandForID()
133 return getMutableCommandForID (commandID); in getCommandForID()
138 if (auto* ci = getCommandForID (commandID)) in getNameOfCommand()
146 if (auto* ci = getCommandForID (commandID)) in getDescriptionOfCommand()
220 auto* target = getFirstCommandTarget (commandID); in getTargetForCommand()
226 target = target->getTargetForCommand (commandID); in getTargetForCommand()
230 upToDateInfo.commandID = commandID; in getTargetForCommand()
[all …]
H A Djuce_KeyPressMappingSet.cpp50 if (mappings.getUnchecked(i)->commandID == commandID) in getKeyPressesAssignedToCommand()
63 if (findCommandForKeyPress (newKeyPress) != commandID) in addKeyPress()
69 if (mappings.getUnchecked(i)->commandID == commandID) in addKeyPress()
81 cm->commandID = commandID; in addKeyPress()
116 clearAllKeyPresses (commandID); in resetToDefaultMapping()
135 if (mappings.getUnchecked(i)->commandID == commandID) in clearAllKeyPresses()
167 if (mappings.getUnchecked(i)->commandID == commandID) in removeKeyPress()
181 return mappings.getUnchecked(i)->commandID; in findCommandForKeyPress()
189 if (mappings.getUnchecked(i)->commandID == commandID) in containsMapping()
201 ApplicationCommandTarget::InvocationInfo info (commandID); in invokeCommand()
[all …]
H A Djuce_ApplicationCommandTarget.cpp57 if (isCommandActive (info.commandID)) in tryToInvoke()
85 ApplicationCommandTarget* ApplicationCommandTarget::getTargetForCommand (const CommandID commandID) in getTargetForCommand() argument
95 if (commandIDs.contains (commandID)) in getTargetForCommand()
117 if (commandIDs.contains (commandID)) in getTargetForCommand()
125 bool ApplicationCommandTarget::isCommandActive (const CommandID commandID) in isCommandActive() argument
127 ApplicationCommandInfo info (commandID); in isCommandActive()
130 getCommandInfo (commandID, info); in isCommandActive()
167 bool ApplicationCommandTarget::invokeDirectly (const CommandID commandID, const bool asynchronously) in invokeDirectly() argument
169 ApplicationCommandTarget::InvocationInfo info (commandID); in invokeDirectly()
177 : commandID (command), in InvocationInfo()
H A Djuce_KeyPressMappingSet.h120 Array<KeyPress> getKeyPressesAssignedToCommand (CommandID commandID) const;
135 void addKeyPress (CommandID commandID,
147 void resetToDefaultMapping (CommandID commandID);
153 void clearAllKeyPresses (CommandID commandID);
159 void removeKeyPress (CommandID commandID, int keyPressIndex);
165 bool containsMapping (CommandID commandID, const KeyPress& keyPress) const noexcept;
222 CommandID commandID; member
H A Djuce_ApplicationCommandTarget.h63 InvocationInfo (const CommandID commandID);
67 CommandID commandID; member
165 virtual void getCommandInfo (CommandID commandID, ApplicationCommandInfo& result) = 0;
205 bool invokeDirectly (const CommandID commandID,
215 ApplicationCommandTarget* getTargetForCommand (const CommandID commandID);
222 bool isCommandActive (const CommandID commandID);
H A Djuce_ApplicationCommandManager.h130 void removeCommand (CommandID commandID);
161 const ApplicationCommandInfo* getCommandForID (CommandID commandID) const noexcept;
168 String getNameOfCommand (CommandID commandID) const noexcept;
177 String getDescriptionOfCommand (CommandID commandID) const noexcept;
210 bool invokeDirectly (CommandID commandID, bool asynchronously);
248 virtual ApplicationCommandTarget* getFirstCommandTarget (CommandID commandID);
273 ApplicationCommandTarget* getTargetForCommand (CommandID commandID,
/dports/devel/juce/JUCE-f37e9a1/modules/juce_gui_basics/commands/
H A Djuce_ApplicationCommandManager.cpp52 jassert (newCommand.commandID != 0); in registerCommand()
92 target->getCommandInfo (info.commandID, info); in registerAllCommandsForTarget()
103 if (commands.getUnchecked (i)->commandID == commandID) in removeCommand()
125 if (commands.getUnchecked(i)->commandID == commandID) in getMutableCommandForID()
133 return getMutableCommandForID (commandID); in getCommandForID()
138 if (auto* ci = getCommandForID (commandID)) in getNameOfCommand()
146 if (auto* ci = getCommandForID (commandID)) in getDescriptionOfCommand()
220 auto* target = getFirstCommandTarget (commandID); in getTargetForCommand()
226 target = target->getTargetForCommand (commandID); in getTargetForCommand()
230 upToDateInfo.commandID = commandID; in getTargetForCommand()
[all …]
H A Djuce_KeyPressMappingSet.cpp50 if (mappings.getUnchecked(i)->commandID == commandID) in getKeyPressesAssignedToCommand()
63 if (findCommandForKeyPress (newKeyPress) != commandID) in addKeyPress()
69 if (mappings.getUnchecked(i)->commandID == commandID) in addKeyPress()
81 cm->commandID = commandID; in addKeyPress()
116 clearAllKeyPresses (commandID); in resetToDefaultMapping()
135 if (mappings.getUnchecked(i)->commandID == commandID) in clearAllKeyPresses()
167 if (mappings.getUnchecked(i)->commandID == commandID) in removeKeyPress()
181 return mappings.getUnchecked(i)->commandID; in findCommandForKeyPress()
189 if (mappings.getUnchecked(i)->commandID == commandID) in containsMapping()
201 ApplicationCommandTarget::InvocationInfo info (commandID); in invokeCommand()
[all …]
H A Djuce_ApplicationCommandTarget.cpp57 if (isCommandActive (info.commandID)) in tryToInvoke()
85 ApplicationCommandTarget* ApplicationCommandTarget::getTargetForCommand (const CommandID commandID) in getTargetForCommand() argument
95 if (commandIDs.contains (commandID)) in getTargetForCommand()
117 if (commandIDs.contains (commandID)) in getTargetForCommand()
125 bool ApplicationCommandTarget::isCommandActive (const CommandID commandID) in isCommandActive() argument
127 ApplicationCommandInfo info (commandID); in isCommandActive()
130 getCommandInfo (commandID, info); in isCommandActive()
167 bool ApplicationCommandTarget::invokeDirectly (const CommandID commandID, const bool asynchronously) in invokeDirectly() argument
169 ApplicationCommandTarget::InvocationInfo info (commandID); in invokeDirectly()
177 : commandID (command), in InvocationInfo()
H A Djuce_KeyPressMappingSet.h120 Array<KeyPress> getKeyPressesAssignedToCommand (CommandID commandID) const;
135 void addKeyPress (CommandID commandID,
147 void resetToDefaultMapping (CommandID commandID);
153 void clearAllKeyPresses (CommandID commandID);
159 void removeKeyPress (CommandID commandID, int keyPressIndex);
165 bool containsMapping (CommandID commandID, const KeyPress& keyPress) const noexcept;
222 CommandID commandID; member
H A Djuce_ApplicationCommandTarget.h63 InvocationInfo (const CommandID commandID);
67 CommandID commandID; member
165 virtual void getCommandInfo (CommandID commandID, ApplicationCommandInfo& result) = 0;
205 bool invokeDirectly (const CommandID commandID,
215 ApplicationCommandTarget* getTargetForCommand (const CommandID commandID);
222 bool isCommandActive (const CommandID commandID);
H A Djuce_ApplicationCommandManager.h130 void removeCommand (CommandID commandID);
161 const ApplicationCommandInfo* getCommandForID (CommandID commandID) const noexcept;
168 String getNameOfCommand (CommandID commandID) const noexcept;
177 String getDescriptionOfCommand (CommandID commandID) const noexcept;
210 bool invokeDirectly (CommandID commandID, bool asynchronously);
248 virtual ApplicationCommandTarget* getFirstCommandTarget (CommandID commandID);
273 ApplicationCommandTarget* getTargetForCommand (CommandID commandID,
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/componentmodel/design/
H A DCommandID.cs29 private readonly int commandID; field in System.ComponentModel.Design.CommandID
38 public CommandID(Guid menuGroup, int commandID) { in CommandID() argument
40 this.commandID = commandID; in CommandID()
50 return commandID;
64 return cid.menuGroup.Equals(menuGroup) && cid.commandID == commandID; in Equals()
71 return menuGroup.GetHashCode() << 2 | commandID; in GetHashCode()
94 return menuGroup.ToString() + " : " + commandID.ToString(CultureInfo.CurrentCulture); in ToString()
/dports/x11-toolkits/open-motif/motif-2.3.8/demos/programs/workspace/
H A Dcommand_ui.c220 commandID, window, window); in SendEnableCommand()
259 commandID, window, window); in SendDisableCommand()
275 CARD32 commandID = 0L; in SendIncludeCommand() local
284 commandID += commID; in SendIncludeCommand()
387 CARD32 commandID = 0L; in SendDefineCommand() local
390 commandID += commID; in SendDefineCommand()
426 CARD32 commandID = 0L; in SendRenameCommand() local
433 commandID += commID; in SendRenameCommand()
664 CARD32 commandID; in InvokeCommand() local
668 commandID = UnpackCARD32(&data); in InvokeCommand()
[all …]
/dports/audio/carla/Carla-2.4.1/source/modules/juce_gui_extra/misc/
H A Djuce_KeyMappingEditorComponent.cpp36 commandID (command), in ChangeKeyButton()
162 owner.getMappings().removeKeyPress (commandID, keyNum); in setNewKey()
205 const CommandID commandID; member in juce::KeyMappingEditorComponent::ChangeKeyButton
217 : owner (kec), commandID (command) in ItemComponent()
221 const bool isReadOnly = owner.isCommandReadOnly (commandID); in ItemComponent()
233 auto* b = new ChangeKeyButton (owner, commandID, desc, index); in addKeyPressButton()
268 const CommandID commandID; member in juce::KeyMappingEditorComponent::ItemComponent
280 : owner (kec), commandID (command) in MappingItem()
290 const CommandID commandID; member in juce::KeyMappingEditorComponent::MappingItem
455 auto* ci = mappings.getCommandManager().getCommandForID (commandID); in shouldCommandBeIncluded()
[all …]
/dports/devel/juce/JUCE-f37e9a1/modules/juce_gui_extra/misc/
H A Djuce_KeyMappingEditorComponent.cpp36 commandID (command), in ChangeKeyButton()
162 owner.getMappings().removeKeyPress (commandID, keyNum); in setNewKey()
205 const CommandID commandID; member in juce::KeyMappingEditorComponent::ChangeKeyButton
217 : owner (kec), commandID (command) in ItemComponent()
221 const bool isReadOnly = owner.isCommandReadOnly (commandID); in ItemComponent()
233 auto* b = new ChangeKeyButton (owner, commandID, desc, index); in addKeyPressButton()
268 const CommandID commandID; member in juce::KeyMappingEditorComponent::ItemComponent
280 : owner (kec), commandID (command) in MappingItem()
290 const CommandID commandID; member in juce::KeyMappingEditorComponent::MappingItem
455 auto* ci = mappings.getCommandManager().getCommandForID (commandID); in shouldCommandBeIncluded()
[all …]
/dports/x11-toolkits/open-motif/motif-2.3.8/clients/mwm/
H A DWmCmd.c66 CARD32 commandID, in NewCommand() argument
74 ptr->commandID = commandID; in NewCommand()
95 CARD32 commandID, in FindCmd() argument
108 if (menuTree->commandID == commandID) in FindCmd()
139 return(menuTree->commandID); in FindDuplicateName()
159 CARD32 commandID, in AddCommand() argument
237 long commandID, in DeleteCommand() argument
250 if (tmp->commandID == commandID) in DeleteCommand()
383 commandID = UnpackCARD32(&data); in IncludeCommand()
494 CARD32 commandID, count; in EnableCommand() local
[all …]
/dports/net-mgmt/icingaweb2-module-reactbundle/icingaweb2-module-reactbundle-0.9.0/vendor/predis/predis/src/Command/
H A DRawCommand.php27 private $commandID; variable in Predis\\Command\\RawCommand
43 $this->commandID = strtoupper(array_shift($arguments));
50 * @param string $commandID Redis command ID.
55 public static function create($commandID /* [ $arg, ... */) argument
68 return $this->commandID;
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/predis/predis/src/Command/
H A DRawCommand.php27 private $commandID; variable in Predis\\Command\\RawCommand
43 $this->commandID = strtoupper(array_shift($arguments));
50 * @param string $commandID Redis command ID.
55 public static function create($commandID /* [ $arg, ... */) argument
68 return $this->commandID;
/dports/mail/rainloop/rainloop-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/Predis/Command/
H A DRawCommand.php27 private $commandID; variable in Predis\\Command\\RawCommand
43 $this->commandID = strtoupper(array_shift($arguments));
50 * @param string $commandID Redis command ID.
55 public static function create($commandID /* [ $arg, ... */) argument
68 return $this->commandID;
/dports/mail/rainloop-community/rainloop-community-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/Predis/Command/
H A DRawCommand.php27 private $commandID; variable in Predis\\Command\\RawCommand
43 $this->commandID = strtoupper(array_shift($arguments));
50 * @param string $commandID Redis command ID.
55 public static function create($commandID /* [ $arg, ... */) argument
68 return $this->commandID;

12345678910>>...28