Home
last modified time | relevance | path

Searched refs:UpdateModel (Results 1 – 25 of 730) sorted by relevance

12345678910>>...30

/dports/sysutils/plasma5-discover/discover-5.23.5/libdiscover/UpdateModel/
H A DUpdateModel.cpp24 UpdateModel::UpdateModel(QObject *parent) in UpdateModel() function in UpdateModel
32 connect(this, &UpdateModel::toUpdateChanged, this, &UpdateModel::updateSizeChanged); in UpdateModel()
39 UpdateModel::~UpdateModel() in ~UpdateModel()
85 void UpdateModel::activityChanged() in activityChanged()
190 void UpdateModel::fetchUpdateDetails(int row) in fetchUpdateDetails()
257 bool UpdateModel::hasUpdates() const in hasUpdates()
267 int UpdateModel::toUpdateCount() const in toUpdateCount()
282 int UpdateModel::totalUpdatesCount() const in totalUpdatesCount()
306 QString UpdateModel::updateSize() const in updateSize()
336 void UpdateModel::checkAll() in checkAll()
[all …]
H A DUpdateModel.h19 class DISCOVERCOMMON_EXPORT UpdateModel : public QAbstractListModel
40 explicit UpdateModel(QObject *parent = nullptr);
41 ~UpdateModel() override;
/dports/www/chromium-legacy/chromium-88.0.4324.182/ash/system/model/
H A Dupdate_model.cc9 UpdateModel::UpdateModel() = default;
10 UpdateModel::~UpdateModel() = default;
12 void UpdateModel::AddObserver(UpdateObserver* observer) { in AddObserver()
16 void UpdateModel::RemoveObserver(UpdateObserver* observer) { in RemoveObserver()
20 void UpdateModel::SetUpdateAvailable(UpdateSeverity severity, in SetUpdateAvailable()
32 void UpdateModel::SetUpdateNotificationState( in SetUpdateNotificationState()
43 void UpdateModel::SetUpdateOverCellularAvailable(bool available) { in SetUpdateOverCellularAvailable()
48 UpdateSeverity UpdateModel::GetSeverity() const { in GetSeverity()
55 void UpdateModel::NotifyUpdateAvailable() { in NotifyUpdateAvailable()
H A Dupdate_model.h23 class UpdateModel {
25 UpdateModel();
26 ~UpdateModel();
84 DISALLOW_COPY_AND_ASSIGN(UpdateModel);
H A Dsystem_tray_model.h23 class UpdateModel; variable
65 UpdateModel* update_model() { return update_model_.get(); } in update_model()
81 std::unique_ptr<UpdateModel> update_model_;
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Mvc3/Mvc/
H A DController.cs501 protected internal void UpdateModel<TModel>(TModel model) where TModel : class {
502 UpdateModel(model, null, null, null, ValueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon11
505 … protected internal void UpdateModel<TModel>(TModel model, string prefix) where TModel : class {
506 UpdateModel(model, prefix, null, null, ValueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon12
510 UpdateModel(model, null, includeProperties, null, ValueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon13
514 UpdateModel(model, prefix, includeProperties, null, ValueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon14
518 UpdateModel(model, prefix, includeProperties, excludeProperties, ValueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon15
522 UpdateModel(model, null, null, null, valueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon16
526 UpdateModel(model, prefix, null, null, valueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon17
530 UpdateModel(model, null, includeProperties, null, valueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon18
[all …]
/dports/sysutils/plasma5-discover/discover-5.23.5/libdiscover/backends/DummyBackend/tests/
H A DUpdateDummyTest.cpp59 UpdateModel *m = new UpdateModel(this); in testInformation()
69 QCOMPARE(m->index(0, 0).data(UpdateModel::ChangelogRole).toString(), QString{}); in testInformation()
83 UpdateModel *m = new UpdateModel(this); in testUpdate()
97 …AbstractResource *res = qobject_cast<AbstractResource *>(resourceIdx.data(UpdateModel::ResourceRol… in testUpdate()
137 QScopedPointer<UpdateModel> m2(new UpdateModel(this)); in testUpdate()
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/go.mongodb.org/mongo-driver/x/mongo/driver/
H A Dmodels.go42 type UpdateModel struct { struct
52 UpdateModel anonMember
65 UpdateModel anonMember
78 UpdateModel anonMember
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/src/System.Web.Mvc/
H A DController.cs633 protected internal void UpdateModel<TModel>(TModel model) where TModel : class
635 UpdateModel(model, null, null, null, ValueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon11
638 … protected internal void UpdateModel<TModel>(TModel model, string prefix) where TModel : class
640 UpdateModel(model, prefix, null, null, ValueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon12
645 UpdateModel(model, null, includeProperties, null, ValueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon13
650 UpdateModel(model, prefix, includeProperties, null, ValueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon14
655 UpdateModel(model, prefix, includeProperties, excludeProperties, ValueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon15
660 UpdateModel(model, null, null, null, valueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon16
665 UpdateModel(model, prefix, null, null, valueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon17
670 UpdateModel(model, null, includeProperties, null, valueProvider); in UpdateModel() method in System.Web.Mvc.Controller.__anon18
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/WebControls/
H A DModelMethodContext.cs51 public virtual void UpdateModel<TModel>(TModel model) where TModel : class {
52 _page.UpdateModel<TModel>(model); in _page.UpdateModel()
59 …public virtual void UpdateModel<TModel>(TModel model, IValueProvider valueProvider) where TModel :…
60 _page.UpdateModel<TModel>(model, valueProvider); in _page.UpdateModel()
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/go.mongodb.org/mongo-driver/mongo/
H A Dbulk_write.go139 um := driver.UpdateModel{
148 UpdateModel: um,
199 um := driver.UpdateModel{
208 UpdateModel: um,
265 um := driver.UpdateModel{
274 UpdateModel: um,
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/
H A DUserControl.cs404 public virtual void UpdateModel<TModel>(TModel model) where TModel : class {
405 Page.UpdateModel<TModel>(model); in Page.UpdateModel()
412 …public virtual void UpdateModel<TModel>(TModel model, IValueProvider valueProvider) where TModel :…
413 Page.UpdateModel<TModel>(model, valueProvider); in Page.UpdateModel()
/dports/graphics/photivo/photivo/Sources/filemgmt/
H A DptSingleDirModel.cpp110 UpdateModel(); in ChangeDir()
143 UpdateModel(); in ChangeAbsoluteDir()
148 void ptSingleDirModel::UpdateModel() { in UpdateModel() function in ptSingleDirModel
/dports/games/dhewm3/dhewm3-1.5.1/neo/tools/materialeditor/
H A DMaterialPreviewView.cpp354 UpdateModel(); in mouseMove()
413 void idGLDrawableView::UpdateModel( void ) { in UpdateModel() function in idGLDrawableView
583 UpdateModel(); in setMedia()
593 UpdateModel(); in setLocalParm()
636 UpdateModel(); in setObject()
649 UpdateModel(); in setCustomModel()
/dports/graphics/apngasm/apngasm-2.91/7z/
H A DAriBitCoder.h33 void UpdateModel(UINT32 aSymbol) in UpdateModel() function
51 CBitModel<aNumMoveBits>::UpdateModel(aSymbol); in Encode()
/dports/archivers/advancecomp/advancecomp-2.1-6-g7b08f7a/7z/
H A DAriBitCoder.h33 void UpdateModel(UINT32 aSymbol) in UpdateModel() function
51 CBitModel<aNumMoveBits>::UpdateModel(aSymbol); in Encode()
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/libchdr/deps/lzma-16.04/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBit.cs17 public void UpdateModel(uint symbol) in UpdateModel() method
79 public void UpdateModel(int numMoveBits, uint symbol) in UpdateModel() method
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/deps/Dependencies/lzmasdk-18.05/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBit.cs17 public void UpdateModel(uint symbol) in UpdateModel() method
79 public void UpdateModel(int numMoveBits, uint symbol) in UpdateModel() method
/dports/www/firefox-esr/firefox-91.8.0/other-licenses/7zstub/src/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBit.cs17 public void UpdateModel(uint symbol) in UpdateModel() method
79 public void UpdateModel(int numMoveBits, uint symbol) in UpdateModel() method
/dports/emulators/mess/mame-mame0226/3rdparty/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBit.cs17 public void UpdateModel(uint symbol) in UpdateModel() method
79 public void UpdateModel(int numMoveBits, uint symbol) in UpdateModel() method
/dports/archivers/lzma/lzma-19.00/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBit.cs17 public void UpdateModel(uint symbol) in UpdateModel() method
79 public void UpdateModel(int numMoveBits, uint symbol) in UpdateModel() method
/dports/emulators/mame/mame-mame0226/3rdparty/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBit.cs17 public void UpdateModel(uint symbol) in UpdateModel() method
79 public void UpdateModel(int numMoveBits, uint symbol) in UpdateModel() method
/dports/www/firefox/firefox-99.0/other-licenses/7zstub/src/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBit.cs17 public void UpdateModel(uint symbol) in UpdateModel() method
79 public void UpdateModel(int numMoveBits, uint symbol) in UpdateModel() method
/dports/sysutils/squashfs-tools/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBit.cs17 public void UpdateModel(uint symbol) in UpdateModel() method
79 public void UpdateModel(int numMoveBits, uint symbol) in UpdateModel() method
/dports/mail/thunderbird/thunderbird-91.8.0/other-licenses/7zstub/src/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBit.cs17 public void UpdateModel(uint symbol) in UpdateModel() method
79 public void UpdateModel(int numMoveBits, uint symbol) in UpdateModel() method

12345678910>>...30