Home
last modified time | relevance | path

Searched refs:removedObjects (Results 1 – 20 of 20) sorted by relevance

/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/extbase/Classes/Persistence/Generic/
H A DPersistenceManager.php47 protected $removedObjects; variable in TYPO3\\CMS\\Extbase\\Persistence\\Generic\\PersistenceManager
81 $this->removedObjects = new ObjectStorage();
165 $this->backend->setDeletedEntities($this->removedObjects);
169 $this->removedObjects = new ObjectStorage();
193 $this->removedObjects->detach($object);
206 $this->removedObjects->attach($object);
246 $this->removedObjects = new ObjectStorage();
H A DBackend.php442 $removedObjects = [];
448 $removedObjects[] = $containedObject;
452 return $removedObjects;
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/extbase/Classes/Persistence/Generic/
H A DPersistenceManager.php48 protected $removedObjects; variable in TYPO3\\CMS\\Extbase\\Persistence\\Generic\\PersistenceManager
82 $this->removedObjects = new ObjectStorage();
166 $this->backend->setDeletedEntities($this->removedObjects);
170 $this->removedObjects = new ObjectStorage();
194 $this->removedObjects->detach($object);
207 $this->removedObjects->attach($object);
258 $this->removedObjects = new ObjectStorage();
H A DBackend.php484 $removedObjects = [];
490 $removedObjects[] = $containedObject;
494 return $removedObjects;
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/extbase/Classes/Persistence/Generic/
H A DPersistenceManager.php43 protected $removedObjects; variable in TYPO3\\CMS\\Extbase\\Persistence\\Generic\\PersistenceManager
94 $this->removedObjects = new ObjectStorage();
178 $this->backend->setDeletedEntities($this->removedObjects);
182 $this->removedObjects = new ObjectStorage();
206 $this->removedObjects->detach($object);
219 $this->removedObjects->attach($object);
270 $this->removedObjects = new ObjectStorage();
H A DBackend.php508 $removedObjects = [];
514 $removedObjects[] = $containedObject;
518 return $removedObjects;
/dports/www/guacamole-client/guacamole-client-1.3.0/guacamole/src/main/java/org/apache/guacamole/rest/identifier/
H A DRelatedObjectSetPatch.java41 private final Set<String> removedObjects = new HashSet<String>(); field in RelatedObjectSetPatch
64 removedObjects.add(identifier); in removeObject()
84 if (!removedObjects.isEmpty()) in apply()
85 objects.removeObjects(removedObjects); in apply()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/dynamichelpers/
H A DExtensionTracker.java174 Object[] removedObjects = null; in doRemove() local
181 removedObjects = EMPTY_ARRAY; in doRemove()
184 removedObjects = associatedObjects.toArray(); in doRemove()
186 notify(delta, removedObjects); in doRemove()
189 …pplyRemove(IExtensionChangeHandler handler, IExtension removedExtension, Object[] removedObjects) { in applyRemove() argument
190 handler.removeExtension(removedExtension, removedObjects); in applyRemove()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/model/
H A DWorkbenchContentProvider.java238 final Object[] removedObjects; in processDelta() local
259 removedObjects = new Object[removedChildren.length]; in processDelta()
261 removedObjects[i] = removedChildren[i].getResource(); in processDelta()
267 removedObjects = new Object[0]; in processDelta()
287 if (removedObjects.length > 0) { in processDelta()
288 treeViewer.remove(removedObjects); in processDelta()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/internal/navigator/resources/workbench/
H A DResourceExtensionContentProvider.java228 final Object[] removedObjects; in processDelta() local
249 removedObjects = new Object[removedChildren.length]; in processDelta()
251 removedObjects[i] = removedChildren[i].getResource(); in processDelta()
257 removedObjects = new Object[0]; in processDelta()
277 if (removedObjects.length > 0) { in processDelta()
278 treeViewer.remove(removedObjects); in processDelta()
/dports/devel/bullet/bullet3-3.21/examples/FractureDemo/
H A DbtFractureDynamicsWorld.cpp102 btAlignedObjectArray<btCollisionObject*> removedObjects; in glueCallback() local
138 removedObjects.push_back(fracObj); in glueCallback()
191 removedObjects.push_back(otherObject); in glueCallback()
244 while (removedObjects.size()) in glueCallback()
246 btCollisionObject* otherCollider = removedObjects[removedObjects.size() - 1]; in glueCallback()
247 removedObjects.pop_back(); in glueCallback()
387 btAlignedObjectArray<btCollisionObject*> removedObjects; in breakDisconnectedParts() local
/dports/devel/py-bullet3/bullet3-3.21/examples/FractureDemo/
H A DbtFractureDynamicsWorld.cpp102 btAlignedObjectArray<btCollisionObject*> removedObjects; in glueCallback() local
138 removedObjects.push_back(fracObj); in glueCallback()
191 removedObjects.push_back(otherObject); in glueCallback()
244 while (removedObjects.size()) in glueCallback()
246 btCollisionObject* otherCollider = removedObjects[removedObjects.size() - 1]; in glueCallback()
247 removedObjects.pop_back(); in glueCallback()
387 btAlignedObjectArray<btCollisionObject*> removedObjects; in breakDisconnectedParts() local
/dports/textproc/xalan-c/xalan_c-1.12/src/xalanc/PlatformSupport/
H A DReusableArenaBlock.hpp98 size_type removedObjects = 0; in ~ReusableArenaBlock() local
102 removedObjects < this->m_objectCount; in ~ReusableArenaBlock()
109 ++removedObjects; in ~ReusableArenaBlock()
/dports/graphics/tiled/tiled-1.7.2/src/tiled/
H A Dobjectselectiontool.h135 const QList<MapObject *> &removedObjects = QList<MapObject*>());
H A Deditpolygontool.cpp593 void EditPolygonTool::abortCurrentAction(const QList<MapObject *> &removedObjects) in abortCurrentAction() argument
612 if (!removedObjects.contains(object)) in abortCurrentAction()
H A Dobjectselectiontool.cpp1690 …jectSelectionTool::abortCurrentAction(AbortReason reason, const QList<MapObject *> &removedObjects) in abortCurrentAction() argument
1717 if (removedObjects.contains(mMovingObjects.at(i).mapObject)) in abortCurrentAction()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/modules/
H A DSessionReticulate.R1827 removedObjects <- .rs.listBuilder() functionVar
1846 removedObjects$append(var)
1856 if (changedObjects$empty() && removedObjects$empty())
1862 removed = as.character(removedObjects$data())
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Gui/src/util/project/
H A DProjectTreeController.cpp676 QList<GObject *> removedObjects; in sl_onEmptyRecycleBin() local
683 removedObjects << ProjectViewModel::toObject(index); in sl_onEmptyRecycleBin()
693 removeItems(QList<Document *>(), removedFolders, removedObjects); in sl_onEmptyRecycleBin()
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/mymoney/
H A Dmymoneyfile.cpp396 QStringList removedObjects; in commitTransaction() local
401 removedObjects += change.id(); in commitTransaction()
424 if (!removedObjects.contains(change.id())) { in commitTransaction()
429 if (!removedObjects.contains(change.id())) { in commitTransaction()
444 if (!removedObjects.contains(id)) { in commitTransaction()
456 if (!removedObjects.contains(id)) { in commitTransaction()
/dports/devel/gorm/apps-gorm-04554d2/GormCore/
H A DGormDocument.m1874 NSMutableArray *removedObjects = [NSMutableArray array];
1884 [removedObjects addObject: object];
1889 [self detachObjects: removedObjects];