Home
last modified time | relevance | path

Searched refs:changeType (Results 1 – 25 of 1178) sorted by relevance

12345678910>>...48

/dports/audio/kmix/kmix-21.12.3/core/
H A DControlManager.cpp29 ControlManager::ChangeType changeType; member
54 void ControlManager::announce(const QString &mixerId, ControlManager::ChangeType changeType, const … in announce() argument
61 qCDebug(KMIX_LOG) << "Announcing" << changeType << "for mixer" in announce()
84 if (listener->changeType!=changeType) continue; // doesn't want this change type in announce()
90 << "change type" << changeType; in announce()
96 Q_ARG(ControlManager::ChangeType, changeType)); in announce()
141 listener->changeType = ct; in addListener()
165 void ControlManager::removeListener(QObject *target, ControlManager::ChangeType changeType, const Q… in removeListener() argument
172 if (changeType!=ControlManager::None && listener->changeType!=changeType) continue; in removeListener()
191 void ControlManager::warnUnexpectedChangeType(ControlManager::ChangeType changeType, QObject *obj) in warnUnexpectedChangeType() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/services/io/system/io/
H A DWaitForChangedResult.cs17 private WatcherChangeTypes changeType; field
36 internal WaitForChangedResult(WatcherChangeTypes changeType, string name, bool timedOut) in WaitForChangedResult()
37 : this(changeType, name, null, timedOut){ in WaitForChangedResult()
46 …internal WaitForChangedResult(WatcherChangeTypes changeType, string name, string oldName, bool tim… in WaitForChangedResult()
47 this.changeType = changeType; in WaitForChangedResult()
60 return changeType;
63 changeType = value;
H A DFileSystemEventArgs.cs18 private WatcherChangeTypes changeType; field in System.IO.FileSystemEventArgs
25 public FileSystemEventArgs(WatcherChangeTypes changeType, string directory, string name) in FileSystemEventArgs() argument
27 this.changeType = changeType; in FileSystemEventArgs()
47 return changeType;
/dports/www/beehive/beehive-0.4.0/vendor/layeh.com/gumble/gumble/
H A Devent.go47 func (d DisconnectType) Has(changeType DisconnectType) bool {
48 return d&changeType == changeType
87 func (u UserChangeType) Has(changeType UserChangeType) bool {
88 return u&changeType == changeType
119 func (c ChannelChangeType) Has(changeType ChannelChangeType) bool {
120 return c&changeType == changeType
151 func (p PermissionDeniedType) Has(changeType PermissionDeniedType) bool {
152 return p&changeType == changeType
/dports/net-im/matterbridge/matterbridge-1.22.3/vendor/layeh.com/gumble/gumble/
H A Devent.go47 func (d DisconnectType) Has(changeType DisconnectType) bool {
48 return d&changeType == changeType
87 func (u UserChangeType) Has(changeType UserChangeType) bool {
88 return u&changeType == changeType
119 func (c ChannelChangeType) Has(changeType ChannelChangeType) bool {
120 return c&changeType == changeType
152 func (p PermissionDeniedType) Has(changeType PermissionDeniedType) bool {
153 return p&changeType == changeType
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem.Watcher/src/System/IO/
H A DFileSystemWatcher.cs437 switch (changeType) in NotifyFileSystemEventArgs()
455 handler(this, new FileSystemEventArgs(changeType, _directory, name)); in NotifyFileSystemEventArgs()
532 public WaitForChangedResult WaitForChanged(WatcherChangeTypes changeType) => field in System.IO.FileSystemWatcher
533 WaitForChanged(changeType, Timeout.Infinite);
550 if ((e.ChangeType & changeType) != 0) in WaitForChanged()
555 if ((changeType & WatcherChangeTypes.Created) != 0) Created += fseh; in WaitForChanged()
556 if ((changeType & WatcherChangeTypes.Deleted) != 0) Deleted += fseh; in WaitForChanged()
557 if ((changeType & WatcherChangeTypes.Changed) != 0) Changed += fseh; in WaitForChanged()
559 if ((changeType & WatcherChangeTypes.Renamed) != 0) in WaitForChanged()
563 if ((e.ChangeType & changeType) != 0) in WaitForChanged()
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmLeavePlugin/modules/leave/actions/
H A DchangeLeaveStatusAction.class.php35 $changeType = 'change_leave_request';
41 $changeType = 'change_leave';
52 $empNumbers = $this->_getLeaveChangeEmployeeNumbers($changeIds, $changeType);
78 …$this->getLeaveRequestService()->changeLeaveStatus($changes, $changeType, $changeComments, $change…
90 if ($changeType == 'change_leave') {
97 … $url = ($changeType == 'change_leave') ? "leave/viewLeaveRequest" : "leave/viewMyLeaveList";
110 $url = ($changeType == 'change_leave') ? "leave/viewLeaveRequest" : $redirectAction;
128 protected function _getLeaveChangeEmployeeNumbers($changes, $changeType) { argument
133 if ($changeType == 'change_leave_request') {
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/autotests/src/vimode/
H A Dcompletion.cpp116 QCOMPARE(m_docChanges[0].changeType(), DocChange::TextRemoved); in FakeCodeCompletionTests()
118 QCOMPARE(m_docChanges[1].changeType(), DocChange::TextInserted); in FakeCodeCompletionTests()
129 QCOMPARE(m_docChanges[0].changeType(), DocChange::TextRemoved); in FakeCodeCompletionTests()
131 QCOMPARE(m_docChanges[1].changeType(), DocChange::TextInserted); in FakeCodeCompletionTests()
161 QCOMPARE(m_docChanges[0].changeType(), DocChange::TextInserted); in FakeCodeCompletionTests()
179 QCOMPARE(m_docChanges[0].changeType(), DocChange::TextInserted); in FakeCodeCompletionTests()
182 QCOMPARE(m_docChanges[1].changeType(), DocChange::TextInserted); in FakeCodeCompletionTests()
199 QCOMPARE(m_docChanges[0].changeType(), DocChange::TextInserted); in FakeCodeCompletionTests()
212 QCOMPARE(m_docChanges[0].changeType(), DocChange::TextInserted); in FakeCodeCompletionTests()
242 QCOMPARE(m_docChanges[0].changeType(), DocChange::TextRemoved); in FakeCodeCompletionTests()
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Firestore/
H A DGoogleFirestoreAdminV1IndexConfigDelta.php20 public $changeType; variable in Google_Service_Firestore_GoogleFirestoreAdminV1IndexConfigDelta
24 public function setChangeType($changeType) argument
26 $this->changeType = $changeType;
30 return $this->changeType;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Firestore/
H A DGoogleFirestoreAdminV1IndexConfigDelta.php20 public $changeType; variable in Google_Service_Firestore_GoogleFirestoreAdminV1IndexConfigDelta
24 public function setChangeType($changeType) argument
26 $this->changeType = $changeType;
30 return $this->changeType;
/dports/security/vault/aws-sdk-go-v2-fdbaadbce5fd/internal/repotools/changes/
H A Dchange_test.go48 changeType ChangeType
55 changeType: FeatureChangeType,
60 changeType: FeatureChangeType,
65 changeType: BugFixChangeType,
70 changeType: FeatureChangeType,
76 changeType: FeatureChangeType,
83 changeType: BugFixChangeType,
88 changeType: FeatureChangeType,
96 changes, err := NewChanges(tt.modules, tt.changeType, tt.description, tt.minVersion)
113 Type: tt.changeType,
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/aws/aws-sdk-go-v2/internal/repotools/changes/
H A Dchange_test.go48 changeType ChangeType
55 changeType: FeatureChangeType,
60 changeType: FeatureChangeType,
65 changeType: BugFixChangeType,
70 changeType: FeatureChangeType,
76 changeType: FeatureChangeType,
83 changeType: BugFixChangeType,
88 changeType: FeatureChangeType,
96 changes, err := NewChanges(tt.modules, tt.changeType, tt.description, tt.minVersion)
113 Type: tt.changeType,
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-be1c89938486/internal/repotools/changes/
H A Dchange_test.go48 changeType ChangeType
55 changeType: FeatureChangeType,
60 changeType: FeatureChangeType,
65 changeType: BugFixChangeType,
70 changeType: FeatureChangeType,
76 changeType: FeatureChangeType,
83 changeType: BugFixChangeType,
88 changeType: FeatureChangeType,
96 changes, err := NewChanges(tt.modules, tt.changeType, tt.description, tt.minVersion)
113 Type: tt.changeType,
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-credentials-v1.1.1/internal/repotools/changes/
H A Dchange_test.go48 changeType ChangeType
55 changeType: FeatureChangeType,
60 changeType: FeatureChangeType,
65 changeType: BugFixChangeType,
70 changeType: FeatureChangeType,
76 changeType: FeatureChangeType,
83 changeType: BugFixChangeType,
88 changeType: FeatureChangeType,
96 changes, err := NewChanges(tt.modules, tt.changeType, tt.description, tt.minVersion)
113 Type: tt.changeType,
/dports/security/vault/vault-1.8.2/vendor/github.com/aws/aws-sdk-go-v2/internal/repotools/changes/
H A Dchange_test.go48 changeType ChangeType
55 changeType: FeatureChangeType,
60 changeType: FeatureChangeType,
65 changeType: BugFixChangeType,
70 changeType: FeatureChangeType,
76 changeType: FeatureChangeType,
83 changeType: BugFixChangeType,
88 changeType: FeatureChangeType,
96 changes, err := NewChanges(tt.modules, tt.changeType, tt.description, tt.minVersion)
113 Type: tt.changeType,
/dports/security/vault/aws-sdk-go-v2-1.5.0/internal/repotools/changes/
H A Dchange_test.go48 changeType ChangeType
55 changeType: FeatureChangeType,
60 changeType: FeatureChangeType,
65 changeType: BugFixChangeType,
70 changeType: FeatureChangeType,
76 changeType: FeatureChangeType,
83 changeType: BugFixChangeType,
88 changeType: FeatureChangeType,
96 changes, err := NewChanges(tt.modules, tt.changeType, tt.description, tt.minVersion)
113 Type: tt.changeType,
/dports/security/vault/aws-sdk-go-v2-credentials-v1.1.5/internal/repotools/changes/
H A Dchange_test.go48 changeType ChangeType
55 changeType: FeatureChangeType,
60 changeType: FeatureChangeType,
65 changeType: BugFixChangeType,
70 changeType: FeatureChangeType,
76 changeType: FeatureChangeType,
83 changeType: BugFixChangeType,
88 changeType: FeatureChangeType,
96 changes, err := NewChanges(tt.modules, tt.changeType, tt.description, tt.minVersion)
113 Type: tt.changeType,
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.IO/
H A DFileSystemEventArgs.cs38 WatcherChangeTypes changeType; field in System.IO.FileSystemEventArgs
46 public FileSystemEventArgs (WatcherChangeTypes changeType, string directory, string name) in FileSystemEventArgs() argument
48 this.changeType = changeType; in FileSystemEventArgs()
62 get { return changeType; }
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/ServiceManagement/
H A DConfigChange.php23 public $changeType; variable in Google_Service_ServiceManagement_ConfigChange
42 public function setChangeType($changeType) argument
44 $this->changeType = $changeType;
48 return $this->changeType;
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/ServiceManagement/
H A DConfigChange.php23 public $changeType; variable in Google_Service_ServiceManagement_ConfigChange
42 public function setChangeType($changeType) argument
44 $this->changeType = $changeType;
48 return $this->changeType;
/dports/sysutils/consul/consul-1.10.3/agent/consul/state/
H A Dcatalog_events.go122 changeType changeType member
133 var nodeChanges map[string]changeType
139 nodeChanges = make(map[string]changeType)
231 switch gsChange.changeType {
246 if changeType == changeDelete {
261 if srvChange.changeType == changeDelete {
271 if srvChange.changeType == changeUpdate {
313 if gsChange.changeType != changeCreate {
329 if gsChange.changeType == changeDelete {
383 type changeType uint8 type
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/hashicorp/consul/agent/consul/state/
H A Dcatalog_events.go122 changeType changeType member
133 var nodeChanges map[string]changeType
139 nodeChanges = make(map[string]changeType)
231 switch gsChange.changeType {
246 if changeType == changeDelete {
261 if srvChange.changeType == changeDelete {
271 if srvChange.changeType == changeUpdate {
313 if gsChange.changeType != changeCreate {
329 if gsChange.changeType == changeDelete {
383 type changeType uint8 type
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/hashicorp/consul/agent/consul/state/
H A Dcatalog_events.go122 changeType changeType member
133 var nodeChanges map[string]changeType
139 nodeChanges = make(map[string]changeType)
231 switch gsChange.changeType {
246 if changeType == changeDelete {
261 if srvChange.changeType == changeDelete {
271 if srvChange.changeType == changeUpdate {
313 if gsChange.changeType != changeCreate {
329 if gsChange.changeType == changeDelete {
383 type changeType uint8 type
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.IO.FileSystem.Watcher/tests/
H A DArgs.RenamedEventArgs.cs17 …public static void RenamedEventArgs_ctor(WatcherChangeTypes changeType, string directory, string n… in RenamedEventArgs_ctor() argument
19 RenamedEventArgs args = new RenamedEventArgs(changeType, directory, name, oldName); in RenamedEventArgs_ctor()
20 Assert.Equal(changeType, args.ChangeType); in RenamedEventArgs_ctor()
32 …public static void RenamedEventArgs_ctor_OldFullPath(WatcherChangeTypes changeType, string directo… in RenamedEventArgs_ctor_OldFullPath() argument
34 RenamedEventArgs args = new RenamedEventArgs(changeType, directory, name, oldName); in RenamedEventArgs_ctor_OldFullPath()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/sip/cpp/
H A Dsip_corewxFileSystemWatcherEvent.cpp47 …atcherEvent::sipwxFileSystemWatcherEvent(int changeType,int watchid): ::wxFileSystemWatcherEvent( in sipwxFileSystemWatcherEvent() argument
52 …tcherEvent(int changeType, ::wxFSWWarningType warningType,const ::wxString& errorMsg,int watchid)… in sipwxFileSystemWatcherEvent() argument
57 …WatcherEvent(int changeType,const ::wxFileName& path,const ::wxFileName& newPath,int watchid): … in sipwxFileSystemWatcherEvent() argument
443 int changeType = 0; in init_type_wxFileSystemWatcherEvent() local
451 …ipParseKwdArgs(sipParseErr, sipArgs, sipKwds, sipKwdList, sipUnused, "|ii", &changeType, &watchid)) in init_type_wxFileSystemWatcherEvent()
456 sipCpp = new sipwxFileSystemWatcherEvent(changeType,watchid); in init_type_wxFileSystemWatcherEvent()
472 int changeType; in init_type_wxFileSystemWatcherEvent() local
490 sipCpp = new sipwxFileSystemWatcherEvent(changeType,warningType,*errorMsg,watchid); in init_type_wxFileSystemWatcherEvent()
507 int changeType; in init_type_wxFileSystemWatcherEvent() local
521 …Args(sipParseErr, sipArgs, sipKwds, sipKwdList, sipUnused, "iJ1J1|i", &changeType, sipType_wxFileN… in init_type_wxFileSystemWatcherEvent()
[all …]

12345678910>>...48