Home
last modified time | relevance | path

Searched refs:pendingChanges (Results 1 – 25 of 105) sorted by relevance

12345

/dports/x11/plasma5-kwayland-server/kwayland-server-5.23.5/src/server/
H A Doutputconfiguration_v2_interface.cpp30 OutputChangeSetV2 *pendingChanges(OutputDeviceV2Interface *outputdevice);
55 pendingChanges(output)->d->enabled = enable == 1; in kde_output_configuration_v2_enable()
64 pendingChanges(output)->d->size = mode->size(); in kde_output_configuration_v2_mode()
65 pendingChanges(output)->d->refreshRate = mode->refreshRate(); in kde_output_configuration_v2_mode()
94 pendingChanges(output)->d->transform = _transform; in kde_output_configuration_v2_transform()
102 pendingChanges(output)->d->position = _pos; in kde_output_configuration_v2_position()
116 pendingChanges(output)->d->scale = doubleScale; in kde_output_configuration_v2_scale()
133 pendingChanges(output)->d->overscan = overscan; in kde_output_configuration_v2_overscan()
144 pendingChanges(output)->d->vrrPolicy = static_cast<OutputDeviceV2Interface::VrrPolicy>(policy); in kde_output_configuration_v2_set_vrr_policy()
155 pendingChanges(output)->d->rgbRange = static_cast<OutputDeviceV2Interface::RgbRange>(rgbRange); in kde_output_configuration_v2_set_rgb_range()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.core.databinding.observable/src/org/eclipse/core/databinding/observable/map/
H A DCompositeMap.java68 private Map<I, I> pendingChanges = new HashMap<>(); field in CompositeMap
107 pendingChanges.put(oldValue1, newValue2);
108 pendingChanges.put(newValue2, oldValue1);
175 if (pendingChanges.containsKey(addedKey)) {
176 I oldKey = pendingChanges.remove(addedKey);
183 pendingChanges.remove(oldKey);
215 if (pendingChanges.containsKey(removedKey)) {
216 Object newKey = pendingChanges.remove(removedKey);
217 pendingChanges.remove(newKey);
/dports/x11/kf5-kwayland/kwayland-5.89.0/src/server/
H A Doutputconfiguration_interface.cpp36 OutputChangeSet *pendingChanges(OutputDeviceInterface *outputdevice);
96 s->pendingChanges(o)->d_func()->enabled = _enable; in enableCallback()
117 s->pendingChanges(o)->d_func()->modeId = mode_id; in modeCallback()
148 s->pendingChanges(o)->d_func()->transform = _transform; in transformCallback()
158 s->pendingChanges(o)->d_func()->position = _pos; in positionCallback()
171 s->pendingChanges(o)->d_func()->scale = scale; in scaleCallback()
187 s->pendingChanges(o)->d_func()->scale = scale; in scaleFCallback()
233 s->pendingChanges(o)->d_func()->colorCurves = cc; in colorcurvesCallback()
307 OutputChangeSet *OutputConfigurationInterface::Private::pendingChanges(OutputDeviceInterface *outpu… in pendingChanges() function in KWayland::Server::OutputConfigurationInterface::Private
/dports/net-mgmt/icingaweb2-module-director/icingaweb2-module-director-1.6.2/library/Director/Web/Navigation/Renderer/
H A DConfigHealthItemRenderer.php105 $pendingChanges = $db->countActivitiesSinceLastDeployedConfig();
107 if ($pendingChanges > 0) {
109 $this->count = $pendingChanges;
114 $pendingChanges
/dports/graphics/wrapland/wrapland-6a083c7bc9b37c5f756155e258b1fff4d24cea2a/server/
H A Doutput_configuration_v1.cpp66 priv->pendingChanges(outputDevice)->d_ptr->enabled in enableCallback()
91 priv->pendingChanges(outputDevice)->d_ptr->modeId = mode_id; in modeCallback()
124 priv->pendingChanges(outputDevice)->d_ptr->transform = toTransform(wlTransform); in transformCallback()
143 priv->pendingChanges(outputDevice)->d_ptr->geometry = geo; in geometryCallback()
186 OutputChangesetV1* OutputConfigurationV1::Private::pendingChanges(OutputDeviceV1* outputdevice) in pendingChanges() function in Wrapland::Server::OutputConfigurationV1::Private
H A Doutput_configuration_v1_p.h47 OutputChangesetV1* pendingChanges(OutputDeviceV1* outputdevice);
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/lib/gwt/2.8.1/samples/Showcase/src/com/google/gwt/sample/showcase/client/content/cell/
H A DCwCellSampler.java232 private List<PendingChange<?>> pendingChanges = new ArrayList<PendingChange<?>>(); field in CwCellSampler
282 pendingChanges.add(new CategoryChange(object, categories[0])); in onInitialize()
285 pendingChanges.add(new CategoryChange(object, categories[categories.length - 1])); in onInitialize()
308 pendingChanges.add(new FirstNameChange(object, value)); in onInitialize()
323 pendingChanges.add(new LastNameChange(object, value)); in onInitialize()
385 pendingChanges.add(new BirthdayChange(object, value)); in onInitialize()
431 pendingChanges.add(new CategoryChange(object, category)); in onInitialize()
453 for (PendingChange<?> pendingChange : pendingChanges) { in onInitialize()
456 pendingChanges.clear(); in onInitialize()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/widget/
H A DDefaultItemAnimatorBase.java47 private List<ChangeInfo> pendingChanges = new ArrayList<>(); field in DefaultItemAnimatorBase
106 final boolean changesPending = !pendingChanges.isEmpty(); in runPendingAnimations()
143 changes.addAll(pendingChanges); in runPendingAnimations()
145 pendingChanges.clear(); in runPendingAnimations()
326 pendingChanges.add(new ChangeInfo(oldHolder, newHolder, fromX, fromY, toX, toY)); in animateChange()
438 endChangeAnimation(pendingChanges, item); in endAnimation()
491 !pendingChanges.isEmpty() || in isRunning()
537 count = pendingChanges.size(); in endAnimations()
539 endChangeAnimationIfNecessary(pendingChanges.get(i)); in endAnimations()
541 pendingChanges.clear(); in endAnimations()
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/widget/
H A DDefaultItemAnimatorBase.java47 private List<ChangeInfo> pendingChanges = new ArrayList<>(); field in DefaultItemAnimatorBase
106 final boolean changesPending = !pendingChanges.isEmpty(); in runPendingAnimations()
143 changes.addAll(pendingChanges); in runPendingAnimations()
145 pendingChanges.clear(); in runPendingAnimations()
326 pendingChanges.add(new ChangeInfo(oldHolder, newHolder, fromX, fromY, toX, toY)); in animateChange()
438 endChangeAnimation(pendingChanges, item); in endAnimation()
491 !pendingChanges.isEmpty() || in isRunning()
537 count = pendingChanges.size(); in endAnimations()
539 endChangeAnimationIfNecessary(pendingChanges.get(i)); in endAnimations()
541 pendingChanges.clear(); in endAnimations()
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/docker/swarmkit/manager/scheduler/
H A Dscheduler.go129 pendingChanges := 0
135 if pendingChanges > 0 {
137 pendingChanges = 0
147 pendingChanges += s.createTask(ctx, v.Task)
149 pendingChanges += s.updateTask(ctx, v.Task)
154 pendingChanges++
157 pendingChanges++
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/assets/javascripts/boards/components/sidebar/
H A Dboard_sidebar_title.vue68 const pendingChanges = localStorage.getItem(this.pendingChangesStorageKey);
70 if (pendingChanges) {
71 this.title = pendingChanges;
/dports/devel/juce/JUCE-f37e9a1/extras/Projucer/Source/LiveBuildEngine/
H A Djucer_CompileEngineClient.cpp648 CodeChange (Range<int> (insertIndex, insertIndex), newText).addToList (pendingChanges); in codeDocumentTextInserted()
658 CodeChange (Range<int> (start, end), String()).addToList (pendingChanges); in codeDocumentTextDeleted()
676 if (pendingChanges.size() > 0) in flushEditorChanges()
679 MessageTypes::sendFileChanges (*owner.process->server, pendingChanges, file); in flushEditorChanges()
692 pendingChanges.clear(); in reset()
710 Array<CodeChange> pendingChanges; member
/dports/www/webtrees20/webtrees-2.0.19/webtrees/app/Factories/
H A DAbstractGedcomRecordFactory.php53 protected function pendingChanges(Tree $tree): Collection function in Fisharebest\\Webtrees\\Factories\\AbstractGedcomRecordFactory
H A DIndividualFactory.php53 $pending = $this->pendingChanges($tree)->get($xref);
H A DRepositoryFactory.php53 $pending = $this->pendingChanges($tree)->get($xref);
H A DNoteFactory.php53 $pending = $this->pendingChanges($tree)->get($xref);
H A DSubmissionFactory.php53 $pending = $this->pendingChanges($tree)->get($xref);
H A DSubmitterFactory.php53 $pending = $this->pendingChanges($tree)->get($xref);
H A DHeaderFactory.php53 $pending = $this->pendingChanges($tree)->get($xref);
H A DMediaFactory.php53 $pending = $this->pendingChanges($tree)->get($xref);
H A DSourceFactory.php54 $pending = $this->pendingChanges($tree)->get($xref);
H A DLocationFactory.php53 $pending = $this->pendingChanges($tree)->get($xref);
H A DFamilyFactory.php54 $pending = $this->pendingChanges($tree)->get($xref);
/dports/www/webtrees20/webtrees-2.0.19/webtrees/app/Http/RequestHandlers/
H A DPendingChanges.php70 $changes = $this->pending_changes_service->pendingChanges($tree, $n);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/page/
H A DDOMWindow.cpp323 …ndow::adjustWindowRect(const FloatRect& screen, FloatRect& window, const FloatRect& pendingChanges) in adjustWindowRect() argument
336 if (!isnan(pendingChanges.x())) in adjustWindowRect()
337 window.setX(pendingChanges.x()); in adjustWindowRect()
338 if (!isnan(pendingChanges.y())) in adjustWindowRect()
339 window.setY(pendingChanges.y()); in adjustWindowRect()
340 if (!isnan(pendingChanges.width())) in adjustWindowRect()
341 window.setWidth(pendingChanges.width()); in adjustWindowRect()
342 if (!isnan(pendingChanges.height())) in adjustWindowRect()
343 window.setHeight(pendingChanges.height()); in adjustWindowRect()

12345