Home
last modified time | relevance | path

Searched refs:subGroups (Results 1 – 25 of 43) sorted by relevance

12

/dports/devel/kdevelop/kdevelop-21.12.3/plugins/clangtidy/config/
H A Dchecklistmodel.cpp90 const int subGroupsCount = checkGroup->subGroups().count(); in data()
171 const int subGroupsCount = checkGroup->subGroups().count(); in setData()
174 auto* subGroup = checkGroup->subGroups().at(subGroupIndex); in setData()
218 const auto& subGroups = parentCheckGroup->subGroups(); in rowCount() local
219 if (0 <= subGroupIndex && subGroupIndex < subGroups.count()) { in rowCount()
220 return childCount(subGroups.at(subGroupIndex)); in rowCount()
240 const auto& subGroups = parentCheckGroup->subGroups(); in parent() local
241 const int parentRow = subGroups.indexOf(childCheckGroup); in parent()
305 const auto& subGroups = superCheckGroup->subGroups(); in checkGroup() local
307 return subGroups.at(subGroupIndex); in checkGroup()
[all …]
H A Dcheckgroup.h39 const QVector<CheckGroup*>& subGroups() const;
/dports/devel/kdevelop/kdevelop-21.12.3/plugins/clangtidy/tests/
H A Dtest_checkgroup.cpp20 QVector<CheckGroupData> subGroups; member
67 QCOMPARE(actualValue->subGroups().size(), expectedValue.subGroups.size()); in doTestResult()
69 for (int i = 0; i < expectedValue.subGroups.size(); ++i) { in doTestResult()
70 const auto* actualSubGroup = actualValue->subGroups()[i]; in doTestResult()
72 doTestResult(actualSubGroup, expectedValue.subGroups[i]); in doTestResult()
94 QVector<CheckStateGroupData> subGroups; member
197 QCOMPARE(actualValue->subGroups().size(), expectedValue.subGroups.size()); in doTestResult()
199 for (int i = 0; i < expectedValue.subGroups.size(); ++i) { in doTestResult()
200 const auto* actualSubGroup = actualValue->subGroups()[i]; in doTestResult()
201 doTestResult(actualSubGroup, expectedValue.subGroups[i]); in doTestResult()
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/extbase/Classes/Domain/Model/
H A DBackendUserGroup.php48 protected $subGroups; variable in TYPO3\\CMS\\Extbase\\Domain\\Model\\BackendUserGroup
110 $this->subGroups = new ObjectStorage();
158 public function setSubGroups(ObjectStorage $subGroups) argument
160 $this->subGroups = $subGroups;
170 $this->subGroups->attach($beGroup);
180 $this->subGroups->detach($groupToDelete);
188 $subGroups = clone $this->subGroups;
189 $this->subGroups->removeAll($subGroups);
199 return $this->subGroups;
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/extbase/Classes/Domain/Model/
H A DBackendUserGroup.php43 protected $subGroups; variable in TYPO3\\CMS\\Extbase\\Domain\\Model\\BackendUserGroup
110 $this->subGroups = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
158 public function setSubGroups(\TYPO3\CMS\Extbase\Persistence\ObjectStorage $subGroups) argument
160 $this->subGroups = $subGroups;
170 $this->subGroups->attach($beGroup);
180 $this->subGroups->detach($groupToDelete);
188 $subGroups = clone $this->subGroups;
189 $this->subGroups->removeAll($subGroups);
199 return $this->subGroups;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/extbase/Classes/Domain/Model/
H A DBackendUserGroup.php46 protected $subGroups; variable in TYPO3\\CMS\\Extbase\\Domain\\Model\\BackendUserGroup
113 $this->subGroups = new ObjectStorage();
161 public function setSubGroups(ObjectStorage $subGroups) argument
163 $this->subGroups = $subGroups;
173 $this->subGroups->attach($beGroup);
183 $this->subGroups->detach($groupToDelete);
191 $subGroups = clone $this->subGroups;
192 $this->subGroups->removeAll($subGroups);
202 return $this->subGroups;
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/beuser/Classes/Domain/Model/
H A DBackendUserGroup.php44 protected $subGroups; variable in TYPO3\\CMS\\Beuser\\Domain\\Model\\BackendUserGroup
97 public function setSubGroups($subGroups) argument
99 $this->subGroups = $subGroups;
107 return $this->subGroups;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/beuser/Classes/Domain/Model/
H A DBackendUserGroup.php46 protected $subGroups; variable in TYPO3\\CMS\\Beuser\\Domain\\Model\\BackendUserGroup
99 public function setSubGroups($subGroups) argument
101 $this->subGroups = $subGroups;
109 return $this->subGroups;
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/beuser/Classes/Domain/Model/
H A DBackendUserGroup.php47 protected $subGroups; variable in TYPO3\\CMS\\Beuser\\Domain\\Model\\BackendUserGroup
100 public function setSubGroups($subGroups) argument
102 $this->subGroups = $subGroups;
110 return $this->subGroups;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/examples/org.eclipse.ui.examples.propertysheet/Eclipse UI Examples PropertySheet/org/eclipse/ui/examples/propertysheet/
H A DGroupElement.java30 private ArrayList<OrganizationElement> subGroups; field in GroupElement
143 if (subGroups == null) in getSubGroups()
144 subGroups = new ArrayList<>(); in getSubGroups()
145 return subGroups; in getSubGroups()
/dports/devel/kf5-kio/kio-5.89.0/templates/ioslave/src/
H A Dmydatasystem.cpp41 auto it = currentGroup->subGroups.constFind(group); in group()
42 if (it == currentGroup->subGroups.constEnd()) { in group()
77 return group ? group->subGroups.keys() : QStringList(); in subGroupNames()
H A Dmydatasystem.h28 QHash<QString, DataGroup> subGroups;
/dports/devel/llvm70/llvm-7.0.1.src/tools/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp91 llvm::DenseSet<const Record *> &subGroups = recordGroupMap[package]->SubGroups; in addPackageToCheckerGroup() local
93 I = subGroups.begin(), E = subGroups.end(); I != E; ++I) in addPackageToCheckerGroup()
280 llvm::DenseSet<const Record *> &subGroups = I->second.SubGroups; in EmitClangSACheckers() local
281 if (!subGroups.empty()) { in EmitClangSACheckers()
286 I = subGroups.begin(), E = subGroups.end(); I != E; ++I) in EmitClangSACheckers()
/dports/security/pear-Horde_Group/Horde_Group-2.1.1/test/Horde/Group/Stub/
H A DApi.php86 * @param boolean $subGroups Also include members of any subgroups?
91 public function getGroupMembers($gid, $subGroups = false)
/dports/devel/py-orange-widget-base/orange-widget-base-4.13.0/orangewidget/utils/
H A DSVGExporter.py308 subGroups = [grp.cloneNode(deep=False)]
316 subGroups.append(grp.cloneNode(deep=False))
320 subGroups.append(grp.cloneNode(deep=False))
322 subGroups[-1].appendChild(ch)
323 groups2.extend(subGroups)
324 for sg in subGroups:
/dports/graphics/py-pyqtgraph/pyqtgraph-0.12.3/pyqtgraph/exporters/
H A DSVGExporter.py304 subGroups = [grp.cloneNode(deep=False)]
312 subGroups.append(grp.cloneNode(deep=False))
316 subGroups.append(grp.cloneNode(deep=False))
318 subGroups[-1].appendChild(ch)
319 groups2.extend(subGroups)
320 for sg in subGroups:
/dports/security/keepassxc/keepassxc-2.6.6/tests/gui/
H A DTestGuiBrowser.cpp251 auto subGroups = firstChild["children"].toArray(); in testGetDatabaseGroups() local
252 QCOMPARE(subGroups.count(), 1); in testGetDatabaseGroups()
253 auto subGroupObj = subGroups.at(0).toObject(); in testGetDatabaseGroups()
/dports/devel/folly/folly-2021.12.27.00/folly/experimental/io/
H A DIoUringBackend.cpp147 SQGroupInfo(size_t num, std::set<uint32_t> const& cpus) : subGroups(num) { in SQGroupInfo()
156 for (size_t i = 0; i < subGroups.size(); i++) { in getNextSubgroup()
157 if (subGroups[i].count == 0) { in getNextSubgroup()
158 return &subGroups[i]; in getNextSubgroup()
161 if (subGroups[i].count < subGroups[min_idx].count) { in getNextSubgroup()
166 return &subGroups[min_idx]; in getNextSubgroup()
191 std::vector<SQSubGroupInfo> subGroups; member
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/beuser/Configuration/TypoScript/
H A Dsetup.typoscript18 subgroup.mapOnProperty = subGroups
/dports/deskutils/egroupware/egroupware/vendor/adldap2/adldap2/src/classes/
H A DadLDAPGroups.php377 $subGroups = $this->inGroup($entries[0]['distinguishedname'][0], $recursive);
378 if (is_array($subGroups)) {
379 $groupArray = array_merge($groupArray, $subGroups);
/dports/net-mgmt/phpipam/phpipam-a14bc06/functions/adLDAP/src/classes/
H A DadLDAPGroups.php337 $subGroups = $this->inGroup($entries[0]['distinguishedname'][0], $recursive);
338 if (is_array($subGroups)) {
339 $groupArray = array_merge($groupArray, $subGroups);
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/workspaces/Classes/Service/
H A DStagesService.php630 $subGroups = $this->fetchGroups($theList, $idList . ',' . $uid);
632 $subUid = key($subGroups);
633 $this->userGroups[$subUid] = $subGroups[$subUid];
/dports/www/dokuwiki/dokuwiki-2020-07-29/lib/plugins/authad/adLDAP/classes/
H A DadLDAPGroups.php337 $subGroups = $this->inGroup($entries[0]['distinguishedname'][0], $recursive);
338 if (is_array($subGroups)) {
339 $groupArray = array_merge($groupArray, $subGroups);
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/share/classes/sun/awt/
H A DAppContext.java549 ThreadGroup [] subGroups = new ThreadGroup[numSubGroups]; in dispose() local
550 numSubGroups = this.threadGroup.enumerate(subGroups); in dispose()
552 threadGroup2appContext.remove(subGroups[subGroup]); in dispose()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/share/classes/sun/awt/
H A DAppContext.java523 ThreadGroup [] subGroups = new ThreadGroup[numSubGroups]; in dispose() local
524 numSubGroups = this.threadGroup.enumerate(subGroups); in dispose()
526 threadGroup2appContext.remove(subGroups[subGroup]); in dispose()

12