Home
last modified time | relevance | path

Searched refs:commandList (Results 251 – 275 of 707) sorted by relevance

1...<<11121314151617181920>>...29

/dports/net-mgmt/librenms/librenms-vendor-21.5.1/symfony/console/
H A DApplication.php680 …$commandList = $this->commandLoader ? array_merge(array_flip($this->commandLoader->getNames()), $t…
681 … = array_unique(array_filter($commands, function ($nameOrAlias) use (&$commandList, $commands, &$a…
682 if (!$commandList[$nameOrAlias] instanceof Command) {
683 $commandList[$nameOrAlias] = $this->commandLoader->get($nameOrAlias);
686 $commandName = $commandList[$nameOrAlias]->getName();
701 … $abbrevs = array_map(function ($cmd) use ($commandList, $usableWidth, $maxLen, &$commands) {
702 if ($commandList[$cmd]->isHidden()) {
708 $abbrev = str_pad($cmd, $maxLen, ' ').' '.$commandList[$cmd]->getDescription();
/dports/www/typo3-9/typo3_src-9.5.31/vendor/symfony/console/
H A DApplication.php674 …$commandList = $this->commandLoader ? array_merge(array_flip($this->commandLoader->getNames()), $t…
675 … = array_unique(array_filter($commands, function ($nameOrAlias) use (&$commandList, $commands, &$a…
676 if (!$commandList[$nameOrAlias] instanceof Command) {
677 $commandList[$nameOrAlias] = $this->commandLoader->get($nameOrAlias);
680 $commandName = $commandList[$nameOrAlias]->getName();
695 … $abbrevs = array_map(function ($cmd) use ($commandList, $usableWidth, $maxLen, &$commands) {
696 if ($commandList[$cmd]->isHidden()) {
702 $abbrev = str_pad($cmd, $maxLen, ' ').' '.$commandList[$cmd]->getDescription();
/dports/www/typo3-10/typo3_src-10.4.25/vendor/symfony/console/
H A DApplication.php680 …$commandList = $this->commandLoader ? array_merge(array_flip($this->commandLoader->getNames()), $t…
681 … = array_unique(array_filter($commands, function ($nameOrAlias) use (&$commandList, $commands, &$a…
682 if (!$commandList[$nameOrAlias] instanceof Command) {
683 $commandList[$nameOrAlias] = $this->commandLoader->get($nameOrAlias);
686 $commandName = $commandList[$nameOrAlias]->getName();
701 … $abbrevs = array_map(function ($cmd) use ($commandList, $usableWidth, $maxLen, &$commands) {
702 if ($commandList[$cmd]->isHidden()) {
708 $abbrev = str_pad($cmd, $maxLen, ' ').' '.$commandList[$cmd]->getDescription();
/dports/www/drupal9/drupal-9.2.10/vendor/symfony/console/
H A DApplication.php681 …$commandList = $this->commandLoader ? array_merge(array_flip($this->commandLoader->getNames()), $t…
682 … = array_unique(array_filter($commands, function ($nameOrAlias) use (&$commandList, $commands, &$a…
683 if (!$commandList[$nameOrAlias] instanceof Command) {
684 $commandList[$nameOrAlias] = $this->commandLoader->get($nameOrAlias);
687 $commandName = $commandList[$nameOrAlias]->getName();
702 … $abbrevs = array_map(function ($cmd) use ($commandList, $usableWidth, $maxLen, &$commands) {
703 if ($commandList[$cmd]->isHidden()) {
709 $abbrev = str_pad($cmd, $maxLen, ' ').' '.$commandList[$cmd]->getDescription();
/dports/www/typo3-11/typo3_src-11.5.7/vendor/symfony/console/
H A DApplication.php714 …$commandList = $this->commandLoader ? array_merge(array_flip($this->commandLoader->getNames()), $t…
715 … = array_unique(array_filter($commands, function ($nameOrAlias) use (&$commandList, $commands, &$a…
716 if (!$commandList[$nameOrAlias] instanceof Command) {
717 $commandList[$nameOrAlias] = $this->commandLoader->get($nameOrAlias);
720 $commandName = $commandList[$nameOrAlias]->getName();
735 … $abbrevs = array_map(function ($cmd) use ($commandList, $usableWidth, $maxLen, &$commands) {
736 if ($commandList[$cmd]->isHidden()) {
742 $abbrev = str_pad($cmd, $maxLen, ' ').' '.$commandList[$cmd]->getDescription();
/dports/www/owncloud/owncloud/lib/composer/symfony/console/
H A DApplication.php681 …$commandList = $this->commandLoader ? array_merge(array_flip($this->commandLoader->getNames()), $t…
682 … = array_unique(array_filter($commands, function ($nameOrAlias) use (&$commandList, $commands, &$a…
683 if (!$commandList[$nameOrAlias] instanceof Command) {
684 $commandList[$nameOrAlias] = $this->commandLoader->get($nameOrAlias);
687 $commandName = $commandList[$nameOrAlias]->getName();
702 … $abbrevs = array_map(function ($cmd) use ($commandList, $usableWidth, $maxLen, &$commands) {
703 if ($commandList[$cmd]->isHidden()) {
709 $abbrev = str_pad($cmd, $maxLen, ' ').' '.$commandList[$cmd]->getDescription();
/dports/www/nextcloud/nextcloud/3rdparty/symfony/console/
H A DApplication.php681 …$commandList = $this->commandLoader ? array_merge(array_flip($this->commandLoader->getNames()), $t…
682 … = array_unique(array_filter($commands, function ($nameOrAlias) use (&$commandList, $commands, &$a…
683 if (!$commandList[$nameOrAlias] instanceof Command) {
684 $commandList[$nameOrAlias] = $this->commandLoader->get($nameOrAlias);
687 $commandName = $commandList[$nameOrAlias]->getName();
702 … $abbrevs = array_map(function ($cmd) use ($commandList, $usableWidth, $maxLen, &$commands) {
703 if ($commandList[$cmd]->isHidden()) {
709 $abbrev = str_pad($cmd, $maxLen, ' ').' '.$commandList[$cmd]->getDescription();
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/vstgui.surge/vstgui/standalone/source/platform/mac/
H A Dmacapplication.mm192 auto commandList = getCommandList (CommandGroup::Application);
193 if (!commandList.empty ())
195 for (auto& command : commandList)
226 - (void)fillMenu:(nonnull NSMenu*)menu fromCommandList:(const CommandWithKeyList&)commandList
228 for (auto& command : commandList)
335 auto commandList = Detail::getApplicationPlatformAccess ()->getCommandList ();
336 for (auto& e : commandList)
/dports/databases/pg_citus/citus-10.2.3/src/backend/distributed/commands/
H A Dforeign_constraint.c1197 List *commandList = NIL; in GetForeignConstraintCommandsToReferenceTable() local
1274 commandList = lappend(commandList, applyForeignConstraintCommand->data); in GetForeignConstraintCommandsToReferenceTable()
1291 commandList = lappend(commandList, markConstraintValid->data); in GetForeignConstraintCommandsToReferenceTable()
1304 return commandList; in GetForeignConstraintCommandsToReferenceTable()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit2/UIProcess/API/gtk/
H A DPageClientImpl.cpp243 …getEditorCommandsForKeyEvent(const NativeWebKeyboardEvent& event, Vector<WTF::String>& commandList) in getEditorCommandsForKeyEvent() argument
254 commandList.append(m_pendingEditorCommands); in getEditorCommandsForKeyEvent()
286 commandList.append(m_pendingEditorCommands); in getEditorCommandsForKeyEvent()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/level_zero/core/source/context/
H A Dcontext.h89 ze_command_list_handle_t *commandList) = 0;
92 ze_command_list_handle_t *commandList) = 0;
H A Dcontext_imp.h70 ze_command_list_handle_t *commandList) override;
73 ze_command_list_handle_t *commandList) override;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/gpu/d3d/
H A DGrD3DDescriptorTableManager.cpp34 GrD3DDirectCommandList* commandList = gpu->currentCommandList(); in setHeaps() local
35 commandList->setDescriptorHeaps(currentCBVSRVHeap, in setHeaps()
H A DGrD3DResourceProvider.cpp46 std::unique_ptr<GrD3DDirectCommandList> commandList) { in recycleDirectCommandList() argument
47 commandList->reset(); in recycleDirectCommandList()
48 fAvailableDirectCommandLists.push_back(std::move(commandList)); in recycleDirectCommandList()
/dports/audio/vst3sdk/vst3sdk-3.7.1_build_50-1-g8199057/vstgui4/vstgui/standalone/source/platform/gdk/
H A Dgdkapplication.cpp151 auto commandList = Detail::getApplicationPlatformAccess ()->getCommandList (); in doCommandUpdate() local
152 for (auto& e : commandList) in doCommandUpdate()
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/vstgui.surge/vstgui/standalone/source/platform/gdk/
H A Dgdkapplication.cpp150 auto commandList = Detail::getApplicationPlatformAccess ()->getCommandList (); in doCommandUpdate() local
151 for (auto& e : commandList) in doCommandUpdate()
/dports/net-im/matterhorn/matterhorn-50200.13.0/src/Matterhorn/
H A DCommand.hs-boot7 commandList :: [Cmd]
/dports/www/kanboard/kanboard-1.2.21/vendor/symfony/console/
H A DApplication.php653 …$commandList = $this->commandLoader ? array_merge(array_flip($this->commandLoader->getNames()), $t…
654 …s = array_unique(array_filter($commands, function ($nameOrAlias) use ($commandList, $commands, &$a…
655 …$commandName = $commandList[$nameOrAlias] instanceof Command ? $commandList[$nameOrAlias]->getName…
670 $abbrevs = array_map(function ($cmd) use ($commandList, $usableWidth, $maxLen) {
671 if (!$commandList[$cmd] instanceof Command) {
674 $abbrev = str_pad($cmd, $maxLen, ' ').' '.$commandList[$cmd]->getDescription();
/dports/audio/vst3sdk/vst3sdk-3.7.1_build_50-1-g8199057/vstgui4/vstgui/standalone/source/platform/mac/
H A Dmacapplication.mm194 auto commandList = getCommandList (CommandGroup::Application);
195 if (!commandList.empty ())
197 for (auto& command : commandList)
228 - (void)fillMenu:(nonnull NSMenu*)menu fromCommandList:(const CommandWithKeyList&)commandList
230 for (auto& command : commandList)
337 auto commandList = Detail::getApplicationPlatformAccess ()->getCommandList ();
338 for (auto& e : commandList)
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/level_zero/core/test/unit_tests/mocks/
H A Dmock_context.h48 …vice_handle_t hDevice, const ze_command_list_desc_t *desc, ze_command_list_handle_t *commandList));
49 …ice_handle_t hDevice, const ze_command_queue_desc_t *desc, ze_command_list_handle_t *commandList));
/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/bifs/
H A Dconditional.c176 while ((ori_com = (GF_Command*)gf_list_enum(c_orig->buffer.commandList, &i))) {
178 if (dest_com) gf_list_add(c_dest->buffer.commandList, dest_com);
/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/bifs/
H A Dconditional.c176 while ((ori_com = (GF_Command*)gf_list_enum(c_orig->buffer.commandList, &i))) {
178 if (dest_com) gf_list_add(c_dest->buffer.commandList, dest_com);
/dports/devel/raknet/raknet-3.9.2_10,1/Source/
H A DReplicaManager.h413 DataStructures::List<CommandStruct> commandList; member
430 …eplicaIndex(const DataStructures::List<ReplicaManager::CommandStruct> &commandList, Replica *repli…
/dports/cad/leocad/leocad-21.06/qt/
H A Dlc_qpreferencesdialog.cpp50 …connect(ui->commandList, SIGNAL(currentItemChanged(QTreeWidgetItem*, QTreeWidgetItem*)), this, SLO… in lcQPreferencesDialog()
231 new lcQTreeWidgetColumnStretcher(ui->commandList, 0); in lcQPreferencesDialog()
829 ui->commandList->clear(); in updateCommandList()
850 … QTreeWidgetItem *categoryItem = new QTreeWidgetItem(ui->commandList, QStringList(parentSection)); in updateCommandList()
855 ui->commandList->expandItem(categoryItem); in updateCommandList()
876 categoryItem = new QTreeWidgetItem(ui->commandList, QStringList(subSection)); in updateCommandList()
882 ui->commandList->expandItem(categoryItem); in updateCommandList()
935 ShowItems(ui->commandList->invisibleRootItem()); in on_KeyboardFilterEdit_textEdited()
952 ShowItems(ui->commandList->invisibleRootItem(), false); in on_KeyboardFilterEdit_textEdited()
958 QTreeWidgetItem* CurrentItem = ui->commandList->currentItem(); in on_shortcutAssign_clicked()
[all …]
/dports/x11-themes/lxqt-themes/lxqt-themes-1.0.0/themes/light/
H A Dlxqt-runner.qss12 #commandList {

1...<<11121314151617181920>>...29