Home
last modified time | relevance | path

Searched refs:FileChangeEvent (Results 1 – 25 of 59) sorted by relevance

123

/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/core/include/core/system/
H A DFileChangeEvent.hpp35 class FileChangeEvent class
48 FileChangeEvent(Type type, const core::FileInfo& fileInfo) in FileChangeEvent() function in rstudio::core::system::FileChangeEvent
55 FileChangeEvent& operator=(const FileChangeEvent& rhs) in operator =()
75 const FileChangeEvent& event) in operator <<()
77 if (event.type() == FileChangeEvent::FileAdded) in operator <<()
79 else if (event.type() == FileChangeEvent::FileRemoved) in operator <<()
81 else if (event.type() == FileChangeEvent::FileModified) in operator <<()
98 std::vector<FileChangeEvent>* pEvents) in collectFileChangeEvents()
132 pEvents->push_back(FileChangeEvent(FileChangeEvent::FileModified, in collectFileChangeEvents()
143 pEvents->push_back(FileChangeEvent(FileChangeEvent::FileRemoved, in collectFileChangeEvents()
[all …]
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/core/system/file_monitor/
H A DFileMonitorImpl.hpp42 const FileChangeEvent& fileChange,
47 std::vector<FileChangeEvent>* pFileChanges);
51 const FileChangeEvent& fileChange, in processFileAdded()
55 std::vector<FileChangeEvent>* pFileChanges) in processFileAdded()
67 const FileChangeEvent& fileChange,
69 std::vector<FileChangeEvent>* pFileChanges);
72 const FileChangeEvent& fileChange,
75 std::vector<FileChangeEvent>* pFileChanges);
83 const boost::function<void(const std::vector<FileChangeEvent>&)>&
91 const boost::function<void(const std::vector<FileChangeEvent>&)>& in discoverAndProcessFileChanges()
H A DFileMonitor.cpp56 void addEvent(FileChangeEvent::Type type, in addEvent()
58 std::vector<FileChangeEvent>* pEvents) in addEvent()
139 const FileChangeEvent& fileChange, in processFileAdded()
160 pFileChanges->push_back(FileChangeEvent(FileChangeEvent::FileModified, in processFileAdded()
264 pFileChanges->push_back(FileChangeEvent(FileChangeEvent::FileRemoved, in processFileRemoved()
306 std::vector<FileChangeEvent> fileChanges; in discoverAndProcessFileChanges()
332 std::vector<FileChangeEvent> fileChanges; in discoverAndProcessFileChanges()
337 case FileChangeEvent::FileAdded: in discoverAndProcessFileChanges()
349 case FileChangeEvent::FileModified: in discoverAndProcessFileChanges()
354 case FileChangeEvent::FileRemoved: in discoverAndProcessFileChanges()
[all …]
H A DLinuxFileMonitor.cpp301 FileChangeEvent::Type eventType = FileChangeEvent::None; in processEvent()
303 eventType = FileChangeEvent::FileAdded; in processEvent()
305 eventType = FileChangeEvent::FileRemoved; in processEvent()
309 eventType = FileChangeEvent::FileAdded; in processEvent()
357 case FileChangeEvent::FileRemoved: in processEvent()
360 FileChangeEvent event(FileChangeEvent::FileRemoved, fileInfo); in processEvent()
390 case FileChangeEvent::FileAdded: in processEvent()
392 FileChangeEvent event(FileChangeEvent::FileAdded, fileInfo); in processEvent()
410 case FileChangeEvent::FileModified: in processEvent()
412 FileChangeEvent event(FileChangeEvent::FileModified, fileInfo); in processEvent()
[all …]
H A DWin32FileMonitor.cpp174 std::vector<FileChangeEvent>* pFileChanges) in processFileChange()
213 FileChangeEvent event(FileChangeEvent::FileAdded, fileInfo); in processFileChange()
227 FileChangeEvent event(FileChangeEvent::FileRemoved, fileInfo); in processFileChange()
237 FileChangeEvent event(FileChangeEvent::FileModified, fileInfo); in processFileChange()
248 std::vector<FileChangeEvent> fileChanges; in processFileChanges()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/include/session/
H A DIncrementalFileChangeHandler.hpp44 typedef boost::function<void(const core::system::FileChangeEvent&)> Handler;
89 FileChangeEvent addEvent(FileChangeEvent::FileAdded, *begin); in enqueFiles()
99 void enqueFileChange(const core::system::FileChangeEvent& event) in enqueFileChange()
114 queue_ = std::queue<core::system::FileChangeEvent>(); in clear()
134 core::system::FileChangeEvent event = queue_.front(); in dequeAndProcess()
171 void onFilesChanged(const std::vector<core::system::FileChangeEvent>& events) in onFilesChanged()
180 std::queue<core::system::FileChangeEvent> queue_;
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/views/files/events/
H A DFileChangeEvent.java21 public class FileChangeEvent extends GwtEvent<FileChangeEvent.Handler> class
27 void onFileChange(FileChangeEvent event); in onFileChange()
30 public FileChangeEvent(FileChange fileChange) in FileChangeEvent() method in FileChangeEvent
/dports/devel/jetbrains-phpstorm/PhpStorm-213.6461.83/plugins/textmate/lib/bundles/git/src/
H A DfileSystemProvider.ts6 …e, Uri, Disposable, Event, EventEmitter, window, FileSystemProvider, FileChangeEvent, FileStat, Fi…
38 private _onDidChangeFile = new EventEmitter<FileChangeEvent[]>();
39 readonly onDidChangeFile: Event<FileChangeEvent[]> = this._onDidChangeFile.event;
90 const events: FileChangeEvent[] = [];
/dports/devel/jetbrains-webstorm/WebStorm-213.6461.79/plugins/textmate/lib/bundles/git/src/
H A DfileSystemProvider.ts6 …e, Uri, Disposable, Event, EventEmitter, window, FileSystemProvider, FileChangeEvent, FileStat, Fi…
38 private _onDidChangeFile = new EventEmitter<FileChangeEvent[]>();
39 readonly onDidChangeFile: Event<FileChangeEvent[]> = this._onDidChangeFile.event;
90 const events: FileChangeEvent[] = [];
/dports/java/intellij/idea-IC-202.7660.26/plugins/textmate/lib/bundles/git/src/
H A DfileSystemProvider.ts6 …e, Uri, Disposable, Event, EventEmitter, window, FileSystemProvider, FileChangeEvent, FileStat, Fi…
38 private _onDidChangeFile = new EventEmitter<FileChangeEvent[]>();
39 readonly onDidChangeFile: Event<FileChangeEvent[]> = this._onDidChangeFile.event;
90 const events: FileChangeEvent[] = [];
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/textmate/lib/bundles/git/src/
H A DfileSystemProvider.ts6 …e, Uri, Disposable, Event, EventEmitter, window, FileSystemProvider, FileChangeEvent, FileStat, Fi…
38 private _onDidChangeFile = new EventEmitter<FileChangeEvent[]>();
39 readonly onDidChangeFile: Event<FileChangeEvent[]> = this._onDidChangeFile.event;
90 const events: FileChangeEvent[] = [];
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/views/vcs/common/model/
H A DVcsState.java32 import org.rstudio.studio.client.workbench.views.files.events.FileChangeEvent;
83 registrations.add(eventBus_.addHandler(FileChangeEvent.TYPE, new FileChangeEvent.Handler() in VcsState()
86 public void onFileChange(FileChangeEvent event) in VcsState()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/codesearch/
H A DCodeSearch.java26 import org.rstudio.studio.client.workbench.views.files.events.FileChangeEvent;
152 eventBus.addHandler(FileChangeEvent.TYPE, new FileChangeEvent.Handler() { in CodeSearch()
154 public void onFileChange(FileChangeEvent event) in CodeSearch()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/include/session/projects/
H A DSessionProjects.hpp51 const std::vector<core::system::FileChangeEvent>&)> onFilesChanged;
228 const std::vector<core::system::FileChangeEvent>& events);
263 RSTUDIO_BOOST_SIGNAL<void(const std::vector<core::system::FileChangeEvent>&)>
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/modules/rmarkdown/
H A DSessionBookdownXRefs.cpp427 void fileChangeHandler(const core::system::FileChangeEvent& event) in fileChangeHandler()
433 if (event.type() == core::system::FileChangeEvent::FileAdded) in fileChangeHandler()
440 if (event.type() == core::system::FileChangeEvent::FileAdded || in fileChangeHandler()
441 event.type() == core::system::FileChangeEvent::FileModified) in fileChangeHandler()
452 else if (event.type() == core::system::FileChangeEvent::FileRemoved) in fileChangeHandler()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/views/source/editors/text/visualmode/
H A DVisualModePanmirrorContext.java44 import org.rstudio.studio.client.workbench.views.files.events.FileChangeEvent;
84 events.addHandler(FileChangeEvent.TYPE, new FileChangeEvent.Handler() { in initialize()
86 public void onFileChange(FileChangeEvent event) in initialize()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/modules/clang/
H A DDefinitionIndex.cpp175 void fileChangeHandler(const core::system::FileChangeEvent& event) in fileChangeHandler()
184 if (event.type() == core::system::FileChangeEvent::FileAdded) in fileChangeHandler()
200 if (event.type() == core::system::FileChangeEvent::FileAdded || in fileChangeHandler()
201 event.type() == core::system::FileChangeEvent::FileModified) in fileChangeHandler()
/dports/security/vuls/vuls-0.13.7/vendor/github.com/nlopes/slack/
H A Dwebsocket_files.go25 type FileChangeEvent fileActionEvent type
/dports/net-im/slack-term/slack-term-0.4.1/vendor/github.com/nlopes/slack/
H A Dwebsocket_files.go25 type FileChangeEvent fileActionEvent type
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/nlopes/slack/
H A Dwebsocket_files.go25 type FileChangeEvent fileActionEvent type
/dports/www/beehive/beehive-0.4.0/vendor/github.com/nlopes/slack/
H A Dwebsocket_files.go25 type FileChangeEvent fileActionEvent type
/dports/net-im/matterircd/matterircd-0.25.0/vendor/github.com/slack-go/slack/
H A Dwebsocket_files.go25 type FileChangeEvent fileActionEvent type
/dports/net-im/matterbridge/matterbridge-1.22.3/vendor/github.com/slack-go/slack/
H A Dwebsocket_files.go25 type FileChangeEvent fileActionEvent type
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/workbench/views/vcs/svn/dialog/
H A DSVNReviewPresenter.java51 import org.rstudio.studio.client.workbench.views.files.events.FileChangeEvent;
211 return events.addHandler(FileChangeEvent.TYPE, new FileChangeEvent.Handler() in SVNReviewPresenter()
214 public void onFileChange(FileChangeEvent event) in SVNReviewPresenter()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Configuration/
H A DWebConfigurationHostFileChange.cs33 internal void OnFileChanged(object sender, FileChangeEvent e) { in OnFileChanged()

123