Home
last modified time | relevance | path

Searched refs:_groups (Results 1 – 25 of 993) sorted by relevance

12345678910>>...40

/dports/security/pear-Horde_Group/Horde_Group-2.1.1/lib/Horde/Group/
H A DMock.php29 protected $_groups = array(); variable in Horde_Group_Mock
97 if (!isset($this->_groups[$gid])) {
113 unset($this->_groups[$gid]);
127 return isset($this->_groups[$gid]);
141 if (!isset($this->_groups[$gid])) {
144 return $this->_groups[$gid]['name'];
159 if (!isset($this->_groups[$gid])) {
162 return $this->_groups[$gid];
180 if (!isset($this->_groups[$gid])) {
184 $this->_groups[$gid] = array_merge($this->_groups[$gid], $attribute);
[all …]
/dports/devel/corrade/corrade-2020.06/src/Corrade/Utility/
H A DConfigurationGroup.cpp39 for(Group& group: _groups) in ConfigurationGroup()
56 _groups = other._groups; in operator =()
74 _groups = std::move(other._groups); in operator =()
90 for(auto it = _groups.begin(); it != _groups.end(); ++it) in findGroup()
93 return _groups.end(); in findGroup()
98 for(auto it = _groups.begin(); it != _groups.end(); ++it) in findGroup()
101 return _groups.end(); in findGroup()
170 _groups.erase(it); in removeGroup()
176 for(auto it = _groups.begin(); it != _groups.end(); ++it) { in removeGroup()
192 _groups.erase(_groups.begin()+i); in removeAllGroups()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/illusions/
H A Dgamarchive.cpp28 : _fd(0), _groupCount(0), _groups(0) { in GamArchive()
36 delete[] _groups; in ~GamArchive()
50 _groups = new GamGroupEntry[_groupCount]; in loadDictionary()
54 _groups[i]._id = _fd->readUint32LE(); in loadDictionary()
61 _groups[i]._fileCount = fileCount; in loadDictionary()
62 _groups[i]._files = new GamFileEntry[fileCount]; in loadDictionary()
64 debug(8, "Group %08X, fileCount: %d", _groups[i]._id, _groups[i]._fileCount); in loadDictionary()
67 _groups[i]._files[j]._id = _fd->readUint32LE(); in loadDictionary()
70 …debug(8, " %08X, %08X, %d", _groups[i]._files[j]._id, _groups[i]._files[j]._fileOffset, _groups[i… in loadDictionary()
79 if (_groups[i]._id == sceneId) in getGroupEntry()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/illusions/
H A Dgamarchive.cpp28 : _fd(0), _groupCount(0), _groups(0) { in GamArchive()
36 delete[] _groups; in ~GamArchive()
51 _groups = new GamGroupEntry[_groupCount]; in loadDictionary()
55 _groups[i]._id = _fd->readUint32LE(); in loadDictionary()
62 _groups[i]._fileCount = fileCount; in loadDictionary()
63 _groups[i]._files = new GamFileEntry[fileCount]; in loadDictionary()
65 debug(8, "Group %08X, fileCount: %d", _groups[i]._id, _groups[i]._fileCount); in loadDictionary()
68 _groups[i]._files[j]._id = _fd->readUint32LE(); in loadDictionary()
71 …debug(8, " %08X, %08X, %d", _groups[i]._files[j]._id, _groups[i]._files[j]._fileOffset, _groups[i… in loadDictionary()
80 if (_groups[i]._id == sceneId) in getGroupEntry()
[all …]
/dports/x11/lightdm-gtk-greeter-settings/lightdm-gtk-greeter-settings-1.2.2/lightdm_gtk_greeter_settings/
H A DConfig.py84 self._groups = OrderedDict()
88 self._groups.clear()
161 return self._groups.items()
167 if name in self._groups:
168 return self._groups[name]
177 group = self._groups.get(item[0])
185 return iter(self._groups)
191 return self._groups.get(item)
206 group = self._groups.get(item)
209 del self._groups[item]
[all …]
H A DMonitorsGroup.py42 self._groups = []
50 itergetter=lambda: iter(self._groups))
55 for group in self._groups:
57 self._groups.clear()
67 groups = set(group.entries['name'].value for group in self._groups)
72 for group in self._groups:
94 if not self._groups and not self._adapters:
96 for group in self._groups:
98 self._groups.clear()
123 self._groups.append(group)
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/components/contentprefs/
H A DContentPrefStore.jsm10 this._groups = new Map();
18 if (!this._groups.has(group))
19 this._groups.set(group, new Map());
20 this._groups.get(group).set(name, val);
36 return this._groups.has(group) &&
43 if (group && this._groups.has(group))
50 if (this._groups.has(group)) {
53 this._groups.delete(group);
62 this._groups.delete(group);
69 this._groups.clear();
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/components/contentprefs/
H A DContentPrefStore.jsm10 this._groups = new Map();
18 if (!this._groups.has(group))
19 this._groups.set(group, new Map());
20 this._groups.get(group).set(name, val);
37 return this._groups.has(group) &&
44 if (group && this._groups.has(group))
51 if (this._groups.has(group)) {
54 this._groups.delete(group);
64 this._groups.delete(group);
72 this._groups.clear();
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/components/contentprefs/
H A DContentPrefStore.jsm8 this._groups = new Map();
15 if (!this._groups.has(group)) {
16 this._groups.set(group, new Map());
18 this._groups.get(group).set(name, val);
35 return this._groups.has(group) && this._groups.get(group).has(name);
41 if (group && this._groups.has(group)) {
49 if (this._groups.has(group)) {
52 this._groups.delete(group);
62 this._groups.delete(group);
69 this._groups.clear();
[all …]
/dports/www/firefox/firefox-99.0/toolkit/components/contentprefs/
H A DContentPrefStore.jsm8 this._groups = new Map();
15 if (!this._groups.has(group)) {
16 this._groups.set(group, new Map());
18 this._groups.get(group).set(name, val);
35 return this._groups.has(group) && this._groups.get(group).has(name);
41 if (group && this._groups.has(group)) {
49 if (this._groups.has(group)) {
52 this._groups.delete(group);
62 this._groups.delete(group);
69 this._groups.clear();
[all …]
/dports/www/firefox-esr/firefox-91.8.0/toolkit/components/contentprefs/
H A DContentPrefStore.jsm8 this._groups = new Map();
15 if (!this._groups.has(group)) {
16 this._groups.set(group, new Map());
18 this._groups.get(group).set(name, val);
35 return this._groups.has(group) && this._groups.get(group).has(name);
41 if (group && this._groups.has(group)) {
49 if (this._groups.has(group)) {
52 this._groups.delete(group);
62 this._groups.delete(group);
69 this._groups.clear();
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/components/contentprefs/
H A DContentPrefStore.jsm8 this._groups = new Map();
15 if (!this._groups.has(group)) {
16 this._groups.set(group, new Map());
18 this._groups.get(group).set(name, val);
35 return this._groups.has(group) && this._groups.get(group).has(name);
41 if (group && this._groups.has(group)) {
49 if (this._groups.has(group)) {
52 this._groups.delete(group);
62 this._groups.delete(group);
69 this._groups.clear();
[all …]
/dports/graphics/minder/Minder-1.13.1/src/
H A DNodeGroups.vala38 private Array<NodeGroup> _groups;
43 _groups = new Array<NodeGroup>();
48 _groups.remove_range( 0, _groups.length );
53 _groups.append_val( group );
58 for( int i=0; i<_groups.length; i++ ) {
59 if( _groups.index( i ) == group ) {
60 _groups.remove_index( i );
73 _groups.remove_index( i );
109 for( int i=0; i<_groups.length; i++ ) {
110 if( _groups.index( i ) == group ) {
[all …]
/dports/security/duo/duo_unix-1.11.4/tests/
H A Dgroups_preload.c36 static struct group _groups[5] = { variable
78 for (i = 0; i < sizeof(_groups) / sizeof(_groups)[0]; i++) { in getgrgid()
79 if (_groups[i].gr_gid == gid) in getgrgid()
80 return (&_groups[i]); in getgrgid()
101 if (_group_ptr >= sizeof(_groups) / sizeof(_groups)[0]) { in getgrent()
104 return (&_groups[_group_ptr++]); in getgrent()
121 for (i = 0; i < sizeof(_groups) / sizeof(_groups)[0]; i++) { in getgrouplist()
122 gr = &_groups[i]; in getgrouplist()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Configuration/System/Configuration/
H A DSectionUpdates.cs15 private Hashtable _groups; // group name -> SectionUpdates field in System.Configuration.SectionUpdates
24 _groups = new Hashtable(); in SectionUpdates()
35 return _groups.Count == 0 && _sections.Count == 0;
61 sectionUpdates._groups[groupPart] = sectionUpdatesChild; in FindSectionUpdates()
79 foreach (SectionUpdates sectionUpdates in _groups.Values) { in CompleteUpdates()
153 return (SectionUpdates) _groups[group]; in GetSectionUpdatesForGroup()
164 foreach (SectionUpdates sectionUpdates in _groups.Values) { in HasUnretrievedSections()
175 foreach (SectionUpdates sectionUpdates in _groups.Values) { in MarkAsRetrieved()
195 foreach (SectionUpdates sectionUpdates in _groups.Values) { in HasNewSectionGroups()
249 foreach (DictionaryEntry de in _groups) { in GetUnretrievedGroupNames()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Configuration.ConfigurationManager/src/System/Configuration/
H A DSectionUpdates.cs12 private readonly Hashtable _groups; field in System.Configuration.SectionUpdates
22 _groups = new Hashtable(); in SectionUpdates()
28 internal bool IsEmpty => (_groups.Count == 0) && (_sections.Count == 0);
50 sectionUpdates._groups[groupPart] = sectionUpdatesChild; in FindSectionUpdates()
67 foreach (SectionUpdates sectionUpdates in _groups.Values) in CompleteUpdates()
132 return (SectionUpdates)_groups[group]; in GetSectionUpdatesForGroup()
140 foreach (SectionUpdates sectionUpdates in _groups.Values) in HasUnretrievedSections()
155 SectionUpdates sectionUpdates = _groups[groupName] as SectionUpdates; in MarkGroupAsRetrieved()
161 foreach (SectionUpdates sectionUpdates in _groups.Values) in HasNewSectionGroups()
211 foreach (DictionaryEntry de in _groups) in GetUnretrievedGroupNames()
[all …]
/dports/security/pear-Horde_Group/Horde_Group-2.1.1/test/Horde/Group/Stub/
H A DApi.php13 protected $_groups = array(
38 return $this->_groups;
55 foreach ($this->_groups as $id => $group) {
74 if (!isset($this->_groups[$gid])) {
77 $group = $this->_groups[$gid];
93 if (!isset($this->_groups[$gid])) {
96 return unserialize($this->_groups[$gid]['members']);
/dports/net/cloud-init/cloud-init-21.4/tests/unittests/test_distros/
H A Dtest_user_data_normalize.py116 (users, _groups) = self._norm(ug_cfg, distro)
123 (users, _groups) = self._norm(ug_cfg, distro)
130 (users, _groups) = self._norm(ug_cfg, distro)
140 (users, _groups) = self._norm(ug_cfg, distro)
147 (users, _groups) = self._norm(ug_cfg, distro)
155 (users, _groups) = self._norm(ug_cfg, distro)
169 (users, _groups) = self._norm(ug_cfg, distro)
181 (users, _groups) = self._norm(ug_cfg, distro)
190 (users, _groups) = self._norm(ug_cfg, distro)
200 (users, _groups) = self._norm(ug_cfg, distro)
[all …]
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/pdb2pqr/pdb2pka/
H A DpMC_mult.cpp17 _groups=static_cast<int>(_num_states.size()); in reformat_arrays()
25 for (int row=0;row<_groups;row++) { in reformat_arrays()
28 for (int column=0;column<_groups;column++) { in reformat_arrays()
50 for (int group=0;group<_groups;group++) { in reformat_arrays()
93 for (int group=0;group<_groups;group++) { in calc_pKas()
159 for (int group=0;group<_groups;group++) { in calc_pKas()
247 for (int group=0;group<_groups;group++) { in calc_charge()
278 for (int count=0;count<_groups;count++) { in calc_charge()
341 for (int count=0;count<_groups;count++){ in calc_charge()
374 for (int group1=0;group1<_groups;group1++) { in get_energy()
[all …]
/dports/lang/v8/v8-9.6.180.12/tools/testrunner/testproc/
H A Dcombiner.py35 self._groups = defaultdict(TestGroups)
52 self._groups[test.suite.name].add_test(group_key, test)
86 groups = self._groups[suite]
98 selected = self._rng.randint(0, len(self._groups) - 1)
99 for n, suite in enumerate(self._groups):
113 self._groups = defaultdict(list)
117 self._groups[key].append(test)
122 if not self._groups:
126 tests = self._groups[group_key]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/tools/testrunner/testproc/
H A Dcombiner.py35 self._groups = defaultdict(TestGroups)
52 self._groups[test.suite.name].add_test(group_key, test)
86 groups = self._groups[suite]
98 selected = self._rng.randint(0, len(self._groups) - 1)
99 for n, suite in enumerate(self._groups):
113 self._groups = defaultdict(list)
117 self._groups[key].append(test)
122 if not self._groups:
126 tests = self._groups[group_key]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/tools/testrunner/testproc/
H A Dcombiner.py35 self._groups = defaultdict(TestGroups)
52 self._groups[test.suite.name].add_test(group_key, test)
86 groups = self._groups[suite]
98 selected = self._rng.randint(0, len(self._groups) - 1)
99 for n, suite in enumerate(self._groups):
113 self._groups = defaultdict(list)
117 self._groups[key].append(test)
122 if not self._groups:
126 tests = self._groups[group_key]
/dports/www/node10/node-v10.24.1/deps/v8/tools/testrunner/testproc/
H A Dcombiner.py33 self._groups = defaultdict(TestGroups)
50 self._groups[test.suite.name].add_test(group_key, test)
83 groups = self._groups[suite]
95 selected = self._rng.randint(0, len(self._groups) - 1)
96 for n, suite in enumerate(self._groups):
110 self._groups = defaultdict(list)
114 self._groups[key].append(test)
119 if not self._groups:
123 tests = self._groups[group_key]
/dports/www/kohana/kohana-v3.3.6/system/classes/Kohana/
H A DConfig.php24 protected $_groups = array(); variable in Kohana_Config
52 $this->_groups = array();
112 if (isset($this->_groups[$group]))
116 return Arr::path($this->_groups[$group], $path, NULL, '.');
118 return $this->_groups[$group];
137 $this->_groups[$group] = new Config_Group($this, $group, $config);
144 return $this->_groups[$group];
/dports/devel/py-pyface/pyface-7.2.0/pyface/action/
H A Daction_manager.py64 _groups = List(Group) variable in ActionManager
124 return self._groups[:]
129 for group in self._groups:
133 for group in self._groups:
157 group = self._groups
196 group = self._groups
217 for group in self._groups:
263 for group in self._groups:
316 self._groups.append(group)
375 for group in self._groups:

12345678910>>...40