Home
last modified time | relevance | path

Searched refs:_exclude (Results 1 – 25 of 130) sorted by relevance

123456

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Xsl/
H A DXmlQualifiedNameTest.cs27 private bool _exclude; field in System.Xml.Xsl.XmlQualifiedNameTest
44 _exclude = exclude; in XmlQualifiedNameTest()
95 || (_exclude == other._exclude && this.Namespace == other.Namespace) in IsNamespaceSubsetOf()
96 || (other._exclude && !_exclude && this.Namespace != other.Namespace); in IsNamespaceSubsetOf()
134 else if (_exclude) in ToString()
/dports/net-mgmt/icingaweb2/icingaweb2-2.8.2/library/vendor/Zend/Validate/Db/
H A DAbstract.php69 protected $_exclude = null; variable in Zend_Validate_Db_Abstract
194 return $this->_exclude;
205 $this->_exclude = $exclude;
314 if ($this->_exclude !== null) {
315 if (is_array($this->_exclude)) {
317 $db->quoteIdentifier($this->_exclude['field'], true) .
318 ' != ?', $this->_exclude['value']
321 $select->where($this->_exclude);
/dports/www/limesurvey/limesurvey/application/helpers/Zend/Validate/Db/
H A DAbstract.php70 protected $_exclude = null; variable in Zend_Validate_Db_Abstract
199 return $this->_exclude;
210 $this->_exclude = $exclude;
319 if ($this->_exclude !== null) {
320 if (is_array($this->_exclude)) {
322 $db->quoteIdentifier($this->_exclude['field'], true) .
323 ' != ?', $this->_exclude['value']
326 $select->where($this->_exclude);
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.Runtime/Tracking/
H A DTrackPoint.cs30 … private ActivityTrackingLocationCollection _exclude = new ActivityTrackingLocationCollection(); field in System.Workflow.Runtime.Tracking.ActivityTrackPoint
45 get { return _exclude; }
68 foreach (ActivityTrackingLocation location in _exclude) in IsMatch()
109 foreach (ActivityTrackingLocation location in _exclude) in IsMatch()
147 foreach (ActivityTrackingLocation location in _exclude) in IsMatch()
178 private UserTrackingLocationCollection _exclude = new UserTrackingLocationCollection(); field in System.Workflow.Runtime.Tracking.UserTrackPoint
193 get { return _exclude; }
227 foreach (UserTrackingLocation location in _exclude) in IsMatch()
/dports/www/py-dj32-django-treebeard/django-treebeard-4.4/treebeard/
H A Dforms.py210 _exclude = _get_exclude_for_model(model, exclude)
212 model, form, fields, _exclude, formfield_callback, widgets)
217 _exclude = tuple(exclude)
219 _exclude = ()
221 _exclude += ('sib_order', 'parent')
223 _exclude += ('depth', 'numchild', 'path')
225 _exclude += ('depth', 'lft', 'rgt', 'tree_id')
226 return _exclude
/dports/www/py-django-treebeard/django-treebeard-4.4/treebeard/
H A Dforms.py210 _exclude = _get_exclude_for_model(model, exclude)
212 model, form, fields, _exclude, formfield_callback, widgets)
217 _exclude = tuple(exclude)
219 _exclude = ()
221 _exclude += ('sib_order', 'parent')
223 _exclude += ('depth', 'numchild', 'path')
225 _exclude += ('depth', 'lft', 'rgt', 'tree_id')
226 return _exclude
/dports/textproc/py-wcmatch/wcmatch-8.3/wcmatch/
H A D_wcmatch.py235 _exclude: Optional[Tuple[Pattern[AnyStr], ...]]
255 _exclude=exclude,
279 return len(self._include) + (len(self._exclude) if self._exclude is not None else 0)
287 self._exclude == other._exclude and
299 self._exclude != other._exclude or
311 self._exclude,
322 return WcRegexp, (p._include, p._exclude, p._real, p._path, p._follow)
/dports/biology/bedtools/bedtools2-2.30.0/src/shuffleBed/
H A DshuffleBed.cpp66 _exclude = new BedFile(excludeFile); in BedShuffle()
67 _exclude->loadBedFileIntoMap(); in BedShuffle()
71 _exclude = new BedFile(); in BedShuffle()
112 _exclude->addBEDIntoMap(bedEntry); in Shuffle()
160 haveOverlap = _exclude->anyHits(bedEntry.chrom, in ShuffleWithExclusions()
179 _exclude->addBEDIntoMap(bedEntry); in ShuffleWithExclusions()
208 haveOverlap1 = _exclude->anyHits(bedEntry.chrom1, in ShuffleWithExclusions()
215 haveOverlap2 = _exclude->anyHits(bedEntry.chrom2, in ShuffleWithExclusions()
291 haveOverlap = _exclude->anyHits(bedEntry.chrom, in ShuffleWithInclusionsAndExclusions()
310 _exclude->addBEDIntoMap(bedEntry); in ShuffleWithInclusionsAndExclusions()
/dports/devel/msbuild/msbuild-0.06/src/Build/Instance/
H A DProjectItemGroupTaskItemInstance.cs40 private string _exclude; field in Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance
157 _exclude = exclude; in ProjectItemGroupTaskItemInstance()
187 _exclude = that._exclude; in ProjectItemGroupTaskItemInstance()
223 { return _exclude; }
383 translator.Translate(ref _exclude); in INodePacketTranslatable.Translate()
/dports/devel/mercurial/mercurial-6.0/hgext/convert/
H A Dgnuarch.py252 def _exclude(self, name): member in gnuarch_source
267 if not self._exclude(p):
334 if not self._exclude(file):
339 if not self._exclude(file):
344 if not self._exclude(file):
349 if not self._exclude(file):
354 if not self._exclude(file):
363 if not self._exclude(src) and not self._exclude(dst):
368 if not self._exclude(file):
377 if not self._exclude(src) and not self._exclude(dst):
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Mvc/
H A DBindAttribute.cs10 private string _exclude; field in System.Web.Mvc.BindAttribute
17 get { return _exclude ?? String.Empty; }
20 _exclude = value;
H A DReflectedParameterBindingInfo.cs14 private ICollection<string> _exclude = new string[0]; field in System.Web.Mvc.ReflectedParameterBindingInfo
38 get { return _exclude; }
59 _exclude = new ReadOnlyCollection<string>(AuthorizeAttribute.SplitString(attr.Exclude)); in ReadSettingsFromBindAttribute()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Mvc3/Mvc/
H A DBindAttribute.cs8 private string _exclude; field in System.Web.Mvc.BindAttribute
15 return _exclude ?? String.Empty;
18 _exclude = value;
H A DReflectedParameterBindingInfo.cs11 private ICollection<string> _exclude = new string[0]; field in System.Web.Mvc.ReflectedParameterBindingInfo
33 return _exclude;
55 _exclude = new ReadOnlyCollection<string>(AuthorizeAttribute.SplitString(attr.Exclude)); in ReadSettingsFromBindAttribute()
/dports/science/py-pymatgen/pymatgen-2022.0.15/pymatgen/alchemy/
H A Dfilters.py60 self._exclude = exclude
80 return not self._exclude
83 return not self._exclude
85 return self._exclude
94 "exclude = {}".format(self._exclude),
109 "exclude": self._exclude,
/dports/devel/msbuild/msbuild-0.06/src/Build/Construction/
H A DProjectItemElement.cs35 private string _exclude; field in Microsoft.Build.Construction.ProjectItemElement
121 if (_exclude == null)
123_exclude = ProjectXmlUtilities.GetAttributeValue(XmlElement, XMakeAttributes.exclude);
126 return _exclude;
134 _exclude = value;
389 _exclude = null; in CopyFrom()
/dports/devel/gitlist/gitlist/vendor/phpunit/php-file-iterator/src/
H A DIterator.php60 foreach ($exclude as &$_exclude) {
61 $_exclude = str_replace($basepath, '', $_exclude);
/dports/devel/php-libawl/awl-827fbfed7dab0ca339998ca6cdcffb328246d83b/vendor/phpunit/php-file-iterator/File/
H A DIterator.php98 foreach ($exclude as &$_exclude) {
99 $_exclude = str_replace($basepath, '', $_exclude);
/dports/sysutils/py-salt/salt-3004.1/salt/beacons/
H A Dinotify.py270 _exclude = next(iter(exclude))
271 if exclude[_exclude].get("regex", False):
273 if re.search(_exclude, event.pathname):
276 log.warning("Failed to compile regex: %s", _exclude)
278 exclude = _exclude
/dports/devel/py-pympler/Pympler-0.4.2/test/
H A Dbase.py14 def _exclude(self, *args, **kwargs): function
20 return _exclude
H A Dtestutils.py14 def _exclude(self, *args, **kwargs): function
20 return _exclude
/dports/www/trafficserver/trafficserver-9.1.1/plugins/background_fetch/
H A Drules.h41 : _exclude(exc), _field(TSstrdup(field)), _value(TSstrdup(value)), _next(nullptr) in BgFetchRule()
63 bool _exclude; variable
/dports/devel/msbuild/msbuild-0.06/src/Tasks/
H A DCreateItem.cs25 private ITaskItem[] _exclude; field in Microsoft.Build.Tasks.CreateItem
47 return _exclude;
52 _exclude = value;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Hosting/
H A DMapPathBasedVirtualPathProvider.cs253 Hashtable _exclude; // names of files and dirs to exclude field in System.Web.Hosting.MapPathBasedVirtualPathEnumerator
287 _exclude = new Hashtable(StringComparer.OrdinalIgnoreCase); in MapPathBasedVirtualPathEnumerator()
289 _exclude[subdir] = subdir; in MapPathBasedVirtualPathEnumerator()
368 if (_exclude != null && _exclude.Contains(name)) in IEnumerator.MoveNext()
/dports/multimedia/zoneminder/zoneminder-1.36.5/web/api/lib/Cake/Console/Command/Task/
H A DExtractTask.php91 protected $_exclude = array(); variable in ExtractTask
154 $this->_exclude = explode(',', str_replace('/', DS, $this->params['exclude']));
180 $this->_exclude = array_merge($this->_exclude, App::path('plugins'));
192 $this->_exclude = array_merge($this->_exclude, array(
804 if (!empty($this->_exclude)) {
806 foreach ($this->_exclude as $e) {

123456