Home
last modified time | relevance | path

Searched refs:targetEntity (Results 1 – 25 of 117) sorted by relevance

12345

/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Builder/
H A DClassMetadataBuilder.php359 * @param string $targetEntity
381 * @param string $targetEntity
391 'targetEntity' => $targetEntity
401 * @param string $targetEntity
421 * @param string $targetEntity
438 * @param string $targetEntity
458 * @param string $targetEntity
478 * @param string $targetEntity
498 * @param string $targetEntity
515 * @param string $targetEntity
[all …]
/dports/finance/prestashop/prestashop/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/Builder/
H A DClassMetadataBuilder.php365 * @param string $targetEntity
387 * @param string $targetEntity
397 'targetEntity' => $targetEntity
407 * @param string $targetEntity
427 * @param string $targetEntity
444 * @param string $targetEntity
464 * @param string $targetEntity
484 * @param string $targetEntity
504 * @param string $targetEntity
521 * @param string $targetEntity
[all …]
/dports/cad/librecad/LibreCAD-2.2.0-rc2/librecad/src/actions/
H A Drs_actionorder.cpp42 ,targetEntity(nullptr) in RS_ActionOrder()
50 targetEntity = nullptr; in init()
67 if (targetEntity) { in trigger()
69 targetEntity->setHighlighted(false); in trigger()
70 graphicView->drawEntity(targetEntity); in trigger()
84 targetEntity = nullptr; in trigger()
122 targetEntity = catchEntity(e); in mouseReleaseEvent()
123 if (!targetEntity) { in mouseReleaseEvent()
137 if (targetEntity) { in mouseReleaseEvent()
138 targetEntity->setHighlighted(false); in mouseReleaseEvent()
[all …]
H A Drs_actionpolylinesegment.cpp52 targetEntity = nullptr; in init()
60 targetEntity = e; in init()
64 if (targetEntity) { in init()
65 convertPolyline(targetEntity, true); in init()
156 … if (targetEntity->rtti()==RS2::EntityPolyline && ((RS_Polyline*)targetEntity)->isClosed()) in convertPolyline()
262 targetEntity->setHighlighted(false); in trigger()
266 convertPolyline(targetEntity); in trigger()
268 targetEntity = nullptr; in trigger()
284 if (targetEntity==nullptr) { in mouseReleaseEvent()
286 … } else if (targetEntity->rtti()==RS2::EntityPolyline && ((RS_Polyline*)targetEntity)->isClosed()){ in mouseReleaseEvent()
[all …]
/dports/www/guacamole-client/guacamole-client-1.3.0/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-base/src/main/java/org/apache/guacamole/auth/jdbc/permission/
H A DModeledObjectPermissionService.java53 ModeledPermissions<? extends EntityModel> targetEntity, in getModelInstance() argument
59 model.setEntityID(targetEntity.getModel().getEntityID()); in getModelInstance()
94 ModeledPermissions<? extends EntityModel> targetEntity, in canAlterPermissions() argument
129 ModeledPermissions<? extends EntityModel> targetEntity, in createPermissions() argument
134 if (canAlterPermissions(user, targetEntity, permissions)) { in createPermissions()
147 ModeledPermissions<? extends EntityModel> targetEntity, in deletePermissions() argument
152 if (canAlterPermissions(user, targetEntity, permissions)) { in deletePermissions()
165 ModeledPermissions<? extends EntityModel> targetEntity, in hasPermission() argument
170 if (canReadPermissions(user, targetEntity)) in hasPermission()
181 ModeledPermissions<? extends EntityModel> targetEntity, in retrieveAccessibleIdentifiers() argument
[all …]
H A DSystemPermissionService.java66 final ModeledPermissions<? extends EntityModel> targetEntity, in getModelInstance() argument
72 model.setEntityID(targetEntity.getModel().getEntityID()); in getModelInstance()
81 ModeledPermissions<? extends EntityModel> targetEntity, in getPermissionSet() argument
86 permissionSet.init(user, targetEntity, effectiveGroups); in getPermissionSet()
94 ModeledPermissions<? extends EntityModel> targetEntity, in createPermissions() argument
100 Collection<SystemPermissionModel> models = getModelInstances(targetEntity, permissions); in createPermissions()
112 ModeledPermissions<? extends EntityModel> targetEntity, in deletePermissions() argument
120 if (user.getUser().getIdentifier().equals(targetEntity.getIdentifier())) in deletePermissions()
123 Collection<SystemPermissionModel> models = getModelInstances(targetEntity, permissions); in deletePermissions()
161 ModeledPermissions<? extends EntityModel> targetEntity, in hasPermission() argument
[all …]
H A DAbstractPermissionService.java66 ModeledPermissions<? extends EntityModel> targetEntity) in getRelevantPermissionSet() argument
69 if (targetEntity.isUser()) in getRelevantPermissionSet()
72 if (targetEntity.isUserGroup()) in getRelevantPermissionSet()
100 ModeledPermissions<? extends EntityModel> targetEntity) in canReadPermissions() argument
104 if (targetEntity.isUser(user.getUser().getIdentifier())) in canReadPermissions()
112 ObjectPermissionSet permissionSet = getRelevantPermissionSet(user.getUser(), targetEntity); in canReadPermissions()
113 … return permissionSet.hasPermission(ObjectPermission.Type.READ, targetEntity.getIdentifier()); in canReadPermissions()
H A DModeledPermissionService.java114 ModeledPermissions<? extends EntityModel> targetEntity, in getModelInstance() argument
132 ModeledPermissions<? extends EntityModel> targetEntity, in getModelInstances() argument
138 models.add(getModelInstance(targetEntity, permission)); in getModelInstances()
146 ModeledPermissions<? extends EntityModel> targetEntity, in retrievePermissions() argument
150 if (canReadPermissions(user, targetEntity)) in retrievePermissions()
151 …return getPermissionInstances(getPermissionMapper().select(targetEntity.getModel(), effectiveGroup… in retrievePermissions()
H A DPermissionService.java75 ModeledPermissions<? extends EntityModel> targetEntity, in getPermissionSet() argument
100 ModeledPermissions<? extends EntityModel> targetEntity, in retrievePermissions() argument
121 ModeledPermissions<? extends EntityModel> targetEntity, in createPermissions() argument
143 ModeledPermissions<? extends EntityModel> targetEntity, in deletePermissions() argument
/dports/www/guacamole-client/guacamole-client-1.3.0/extensions/guacamole-auth-jdbc/modules/guacamole-auth-jdbc-base/src/main/java/org/apache/guacamole/auth/jdbc/activeconnection/
H A DActiveConnectionPermissionService.java62 ModeledPermissions<? extends EntityModel> targetEntity, in hasPermission() argument
68 targetEntity, effectiveGroups); in hasPermission()
79 ModeledPermissions<? extends EntityModel> targetEntity, in retrievePermissions() argument
83 if (canReadPermissions(user, targetEntity)) { in retrievePermissions()
87 boolean isPrivileged = targetEntity.isPrivileged(); in retrievePermissions()
102 if (isPrivileged || targetEntity.isUser(record.getUsername())) in retrievePermissions()
117 ModeledPermissions<? extends EntityModel> targetEntity, in retrieveAccessibleIdentifiers() argument
145 ModeledPermissions<? extends EntityModel> targetEntity, in getPermissionSet() argument
150 permissionSet.init(user, targetEntity, effectiveGroups); in getPermissionSet()
158 ModeledPermissions<? extends EntityModel> targetEntity, in createPermissions() argument
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/Persister/Collection/
H A DAbstractCollectionPersister.php63 protected $targetEntity; variable in Doctrine\\ORM\\Cache\\Persister\\Collection\\AbstractCollectionPersister
116 $this->targetEntity = $em->getClassMetadata($association['targetEntity']);
140 return $this->targetEntity;
169 $targetPersister = $this->uow->getEntityPersister($this->targetEntity->rootEntityName);
179 $entry = $this->hydrator->buildCacheEntry($this->targetEntity, $key, $elements);
186 $class = $this->targetEntity;
189 if ($className !== $this->targetEntity->name) {
254 $this->evictElementCache($this->targetEntity->rootEntityName, $element);
297 * @param string $targetEntity
300 protected function evictElementCache($targetEntity, $element) argument
[all …]
/dports/finance/prestashop/prestashop/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/Persister/Collection/
H A DAbstractCollectionPersister.php63 protected $targetEntity; variable in Doctrine\\ORM\\Cache\\Persister\\Collection\\AbstractCollectionPersister
116 $this->targetEntity = $em->getClassMetadata($association['targetEntity']);
140 return $this->targetEntity;
169 $targetPersister = $this->uow->getEntityPersister($this->targetEntity->rootEntityName);
179 $entry = $this->hydrator->buildCacheEntry($this->targetEntity, $key, $elements);
186 $class = $this->targetEntity;
189 if ($className !== $this->targetEntity->name) {
283 * @param string $targetEntity
286 protected function evictElementCache($targetEntity, $element) argument
289 $targetPersister = $this->uow->getEntityPersister($targetEntity);
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/jms/serializer/src/JMS/Serializer/Metadata/Driver/
H A DDoctrinePHPCRTypeDriver.php37 $targetEntity = $doctrineMetadata->getAssociationTargetClass($propertyName);
42 if (null === $this->tryLoadingDoctrineMetadata($targetEntity)) {
47 $targetEntity = "ArrayCollection<{$targetEntity}>";
50 $propertyMetadata->setType($targetEntity);
H A DDoctrineTypeDriver.php33 $targetEntity = $doctrineMetadata->getAssociationTargetClass($propertyName);
35 if (null === $targetMetadata = $this->tryLoadingDoctrineMetadata($targetEntity)) {
47 $targetEntity = "ArrayCollection<{$targetEntity}>";
50 $propertyMetadata->setType($targetEntity);
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Data.Services.Client/Client/System/Data/Services/Client/Binding/
H A DEntityCollectionChangedParams.cs35 private readonly object targetEntity; field in System.Data.Services.Client.EntityCollectionChangedParams
51 object targetEntity, in EntityCollectionChangedParams() argument
60 this.targetEntity = targetEntity; in EntityCollectionChangedParams()
91 get { return this.targetEntity; }
/dports/games/legend-of-edgar/edgar-1.34/src/world/
H A Dtarget.c29 static Entity targetEntity; variable
42 targetEntity.inUse = TRUE; in addTarget()
44 loadProperties("lift/lift_target", &targetEntity); in addTarget()
46 setEntityAnimation(&targetEntity, "STAND"); in addTarget()
48 targetEntity.draw = &drawLoopingAnimationToMap; in addTarget()
86 self = &targetEntity; in drawTargets()
/dports/www/drupal9/drupal-9.2.10/core/modules/rdf/tests/src/Kernel/Field/
H A DEntityReferenceRdfaTest.php42 protected $targetEntity; variable in Drupal\\Tests\\rdf\\Kernel\\Field\\EntityReferenceRdfaTest
69 $this->targetEntity = $this->container->get('entity_type.manager')
72 $this->targetEntity->save();
79 $this->entity->{$this->fieldName}->entity = $this->targetEntity;
87 $entity_uri = $this->getAbsoluteUri($this->targetEntity);
/dports/www/drupal8/drupal-8.9.20/core/modules/rdf/tests/src/Kernel/Field/
H A DEntityReferenceRdfaTest.php42 protected $targetEntity; variable in Drupal\\Tests\\rdf\\Kernel\\Field\\EntityReferenceRdfaTest
69 $this->targetEntity = $this->container->get('entity_type.manager')
72 $this->targetEntity->save();
79 $this->entity->{$this->fieldName}->entity = $this->targetEntity;
87 $entity_uri = $this->getAbsoluteUri($this->targetEntity);
/dports/games/legend-of-edgar/edgar-1.34/src/
H A Dmap.c916 if (map.targetEntity == NULL) in centerEntityOnMap()
921 …if (map.targetEntity->standingOn != NULL && fabs(map.targetEntity->standingOn->speed) > fabs(map.t… in centerEntityOnMap()
927 speed = fabs(map.targetEntity->dirX); in centerEntityOnMap()
938 …speed = map.targetEntity->originalSpeed > map.targetEntity->speed ? map.targetEntity->originalSpee… in centerEntityOnMap()
942 speed = fabs(map.targetEntity->dirX); in centerEntityOnMap()
973 map.startY = map.targetEntity->y + map.targetEntity->h - SCREEN_HEIGHT / 1.5; in centerEntityOnMap()
1004 map.cameraY += (map.targetEntity->dirY > speed ? map.targetEntity->dirY : speed); in centerEntityOnMap()
1009 map.cameraY += (map.targetEntity->dirY < -speed ? map.targetEntity->dirY : -speed); in centerEntityOnMap()
1290 if (map.targetEntity == NULL) in cameraSnapToTargetEntity()
1312 map.startY = map.targetEntity->y + map.targetEntity->h - SCREEN_HEIGHT / 1.5; in cameraSnapToTargetEntity()
[all …]
/dports/games/jvgs/jvgs-0.5.1-src/src/game/
H A DBullController.cpp53 Entity *targetEntity = level->getEntityById(target); in affect() local
54 if(targetEntity) { in affect()
56 targetEntity->getPosition()); in affect()
58 Vector2D toTarget = targetEntity->getPosition() - in affect()
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/orm/docs/en/reference/
H A Dassociation-mapping.rst66 targetEntity: Address
144 targetEntity: Shipping
225 targetEntity: Cart
230 targetEntity: Customer
360 targetEntity: Feature
366 targetEntity: Product
625 targetEntity: Group
736 targetEntity: Group
751 targetEntity: User
970 targetEntity: Group
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Objects/DataClasses/
H A DEntityReference.cs396 …internal EntityKey ValidateOwnerWithRIConstraints(IEntityWrapper targetEntity, EntityKey targetEnt… in ValidateOwnerWithRIConstraints() argument
406 ValidateSettingRIConstraints(targetEntity, in ValidateOwnerWithRIConstraints()
410 else if (checkBothEnds && targetEntity != null && targetEntity.Entity != null) in ValidateOwnerWithRIConstraints()
412 … EntityReference otherEnd = GetOtherEndOfRelationship(targetEntity) as EntityReference; in ValidateOwnerWithRIConstraints()
423 …internal void ValidateSettingRIConstraints(IEntityWrapper targetEntity, bool settingToNull, bool c… in ValidateSettingRIConstraints() argument
425 … bool isNoTracking = targetEntity != null && targetEntity.MergeOption == MergeOption.NoTracking; in ValidateSettingRIConstraints()
429 (targetEntity != null && in ValidateSettingRIConstraints()
431 … (targetEntity.ObjectStateEntry == null || // setting to a detached principle in ValidateSettingRIConstraints()
432 …(EntityKey == null && targetEntity.ObjectStateEntry.State == EntityState.Deleted || // setting to … in ValidateSettingRIConstraints()
433 …(CachedForeignKey == null && targetEntity.ObjectStateEntry.State == EntityState.Added))))) // s… in ValidateSettingRIConstraints()
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/actions/
H A DChallengePlayerAction.java32 Entity targetEntity = EntityHelper.entityFromTargetName(target, player); in onAction() local
35 if (targetEntity == null) { in onAction()
40 if (!(targetEntity instanceof Player)){ in onAction()
45 Player targetPlayer = (Player) targetEntity; in onAction()
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/
H A DIdentityFunction.php60 $targetEntity = $sqlWalker->getEntityManager()->getClassMetadata($assoc['targetEntity']);
64 if ( ! isset($targetEntity->fieldMappings[$this->fieldMapping])) {
68 $field = $targetEntity->fieldMappings[$this->fieldMapping];
89 $columnName = $quoteStrategy->getJoinColumnName($joinColumn, $targetEntity, $platform);
/dports/finance/prestashop/prestashop/vendor/doctrine/orm/lib/Doctrine/ORM/Query/AST/Functions/
H A DIdentityFunction.php60 $targetEntity = $sqlWalker->getEntityManager()->getClassMetadata($assoc['targetEntity']);
64 if ( ! isset($targetEntity->fieldMappings[$this->fieldMapping])) {
68 $field = $targetEntity->fieldMappings[$this->fieldMapping];
89 $columnName = $quoteStrategy->getJoinColumnName($joinColumn, $targetEntity, $platform);

12345