Home
last modified time | relevance | path

Searched refs:entityName (Results 1 – 25 of 1557) sorted by relevance

12345678910>>...63

/dports/www/groupoffice/groupoffice-6.4.231-php-71/go/modules/business/studio/tpl/
H A DMainPanel.js.tpl25 this.create{entityName}Grid();
27 this.{entityName}Detail = new {namespace}.{entityName}Detail({
102 entity: '{entityName}'
116 entity: "{entityName}"
120 entity: "{entityName}"
126 this.{entityName}Grid = new {namespace}.{entityName}Grid({
135 entityStore: "{entityName}"
161 var {entityName}Form = new {namespace}.{entityName}Dialog();
162 {entityName}Form.show();
195 '{entityName}',
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/
H A DCacheException.php44 * @param string $entityName
48 public static function updateReadOnlyEntity($entityName) argument
50 return new self(sprintf('Cannot update a readonly entity "%s"', $entityName));
54 * @param string $entityName
58 public static function nonCacheableEntity($entityName) argument
60 …rn new self(sprintf('Entity "%s" not configured as part of the second-level cache.', $entityName));
64 * @param string $entityName
68 public static function nonCacheableEntityAssociation($entityName, $field) argument
70 …ssociation field "%s#%s" not configured as part of the second-level cache.', $entityName, $field));
/dports/finance/prestashop/prestashop/vendor/doctrine/orm/lib/Doctrine/ORM/Cache/
H A DCacheException.php44 * @param string $entityName
48 public static function updateReadOnlyEntity($entityName) argument
50 return new self(sprintf('Cannot update a readonly entity "%s"', $entityName));
54 * @param string $entityName
58 public static function nonCacheableEntity($entityName) argument
60 …rn new self(sprintf('Entity "%s" not configured as part of the second-level cache.', $entityName));
64 * @param string $entityName
69 public static function nonCacheableEntityAssociation($entityName, $field) argument
71 …ssociation field "%s#%s" not configured as part of the second-level cache.', $entityName, $field));
/dports/games/stendhal/stendhal-1.35/src/games/stendhal/server/core/rp/searchindex/
H A DSearchIndexEntry.java26 private final String entityName; field in SearchIndexEntry
41 public SearchIndexEntry(String searchTerm, char entityType, String entityName, int searchScore) { in SearchIndexEntry() argument
44 this.entityName = entityName; in SearchIndexEntry()
61 …public SearchIndexEntry(String searchTerm, char entityType, String entityName, int searchScore, in… in SearchIndexEntry() argument
64 this.entityName = entityName; in SearchIndexEntry()
93 return entityName; in getEntityName()
118 result = prime * result + entityName.hashCode(); in hashCode()
132 if (!entityName.equals(other.entityName)) { in equals()
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/bouncycastle/asn1/x509/
H A DHolder.java49 GeneralNames entityName; field in Holder
86 entityName = GeneralNames.getInstance(tagObj, false); in Holder()
162 public Holder(GeneralNames entityName) in Holder() argument
164 this.entityName = entityName; in Holder()
174 public Holder(GeneralNames entityName, int version) in Holder() argument
176 this.entityName = entityName; in Holder()
203 return entityName; in getEntityName()
222 if (entityName != null) in toASN1Object()
224 v.add(new DERTaggedObject(false, 1, entityName)); in toASN1Object()
236 if (entityName != null) in toASN1Object()
[all …]
/dports/java/bouncycastle15/crypto-169/core/src/main/java/org/bouncycastle/asn1/x509/
H A DHolder.java48 GeneralNames entityName; field in Holder
85 entityName = GeneralNames.getInstance(tagObj, true); in Holder()
161 public Holder(GeneralNames entityName) in Holder() argument
163 this(entityName, V2_CERTIFICATE_HOLDER); in Holder()
173 public Holder(GeneralNames entityName, int version) in Holder() argument
175 this.entityName = entityName; in Holder()
202 return entityName; in getEntityName()
221 if (entityName != null) in toASN1Primitive()
223 v.add(new DERTaggedObject(false, 1, entityName)); in toASN1Primitive()
235 if (entityName != null) in toASN1Primitive()
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Bridge/Doctrine/Test/
H A DTestRepositoryFactory.php35 public function getRepository(EntityManagerInterface $entityManager, $entityName) argument
37 $repositoryHash = $this->getRepositoryHash($entityManager, $entityName);
43 …turn $this->repositoryList[$repositoryHash] = $this->createRepository($entityManager, $entityName);
46 …public function setRepository(EntityManagerInterface $entityManager, $entityName, LegacyObjectRepo… argument
48 $repositoryHash = $this->getRepositoryHash($entityManager, $entityName);
56 private function createRepository(EntityManagerInterface $entityManager, $entityName) argument
59 $metadata = $entityManager->getClassMetadata($entityName);
65 private function getRepositoryHash(EntityManagerInterface $entityManager, $entityName) argument
67 … return $entityManager->getClassMetadata($entityName)->getName().spl_object_hash($entityManager);
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Bridge/Doctrine/Test/
H A DTestRepositoryFactory.php35 public function getRepository(EntityManagerInterface $entityManager, $entityName) argument
37 $repositoryHash = $this->getRepositoryHash($entityManager, $entityName);
43 …turn $this->repositoryList[$repositoryHash] = $this->createRepository($entityManager, $entityName);
46 …public function setRepository(EntityManagerInterface $entityManager, $entityName, LegacyObjectRepo… argument
48 $repositoryHash = $this->getRepositoryHash($entityManager, $entityName);
56 private function createRepository(EntityManagerInterface $entityManager, $entityName) argument
59 $metadata = $entityManager->getClassMetadata($entityName);
65 private function getRepositoryHash(EntityManagerInterface $entityManager, $entityName) argument
67 … return $entityManager->getClassMetadata($entityName)->getName().spl_object_hash($entityManager);
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/friendsofsymfony/rest-bundle/Form/Transformer/
H A DEntityToIdObjectTransformer.php33 private $entityName; variable in FOS\\RestBundle\\Form\\Transformer\\EntityToIdObjectTransformer
37 * @param string $entityName
39 public function __construct(ObjectManager $om, $entityName) argument
41 $this->entityName = $entityName;
58 …return current(array_values($this->om->getClassMetadata($this->entityName)->getIdentifierValues($o…
76 …$identifier = current(array_values($this->om->getClassMetadata($this->entityName)->getIdentifier()…
80 ->getRepository($this->entityName)
/dports/www/groupoffice/groupoffice-6.4.231-php-71/go/core/orm/
H A DRelation.php33 public $entityName; variable in go\\core\\orm\\Relation
84 public function setEntityName ($entityName) { argument
85 if(!is_subclass_of($entityName, Property::class, true)) {
86 throw new Exception($entityName . ' must extend '. Property::class);
89 if(is_subclass_of($entityName, Entity::class, true)) {
90 …throw new Exception($entityName . ' may not be an '. Entity::class .'. Only '. Property::class .' …
93 $this->entityName = $entityName;
/dports/www/elgg/elgg-3.3.23/vendor/fzaninotto/faker/src/Faker/ORM/Spot/
H A DPopulator.php39 $entityName, argument
45 $mapper = $this->locator->mapper($entityName);
47 throw new \InvalidArgumentException("No mapper can be found for entity " . $entityName);
57 $this->entities[$entityName] = $entity;
58 $this->quantities[$entityName] = $number;
78 foreach ($this->quantities as $entityName => $number) {
80 $insertedEntities[$entityName][] = $this->entities[$entityName]->execute(
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.orm/src/main/java/org/springframework/orm/hibernate3/
H A DHibernateOperations.java152 Object get(String entityName, Serializable id) throws DataAccessException; in get() argument
169 Object get(String entityName, Serializable id, LockMode lockMode) in get() argument
221 Object load(String entityName, Serializable id) throws DataAccessException; in load() argument
239 Object load(String entityName, Serializable id, LockMode lockMode) in load() argument
367 Serializable save(String entityName, Object entity) throws DataAccessException; in save() argument
399 void update(String entityName, Object entity) throws DataAccessException; in update() argument
436 void saveOrUpdate(String entityName, Object entity) throws DataAccessException; in saveOrUpdate() argument
493 void persist(String entityName, Object entity) throws DataAccessException; in persist() argument
533 <T> T merge(String entityName, T entity) throws DataAccessException; in merge() argument
562 void delete(String entityName, Object entity) throws DataAccessException; in delete() argument
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/codemaker/source/cppumaker/
H A Ddumputils.cxx32 FileStream & out, OUString const & entityName, bool fullModuleType) in dumpNamespaceOpen() argument
37 OUString id(entityName.getToken(0, '.', i)); in dumpNamespaceOpen()
51 FileStream & out, OUString const & entityName, bool fullModuleType) in dumpNamespaceClose() argument
56 i = entityName.indexOf('.', i); in dumpNamespaceClose()
72 void dumpTypeIdentifier(FileStream & out, OUString const & entityName) { in dumpTypeIdentifier() argument
73 out << entityName.subView(entityName.lastIndexOf('.') + 1); in dumpTypeIdentifier()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/codemaker/source/cppumaker/
H A Ddumputils.cxx32 FileStream & out, OUString const & entityName, bool fullModuleType) in dumpNamespaceOpen() argument
37 OUString id(entityName.getToken(0, '.', i)); in dumpNamespaceOpen()
51 FileStream & out, OUString const & entityName, bool fullModuleType) in dumpNamespaceClose() argument
56 i = entityName.indexOf('.', i); in dumpNamespaceClose()
72 void dumpTypeIdentifier(FileStream & out, OUString const & entityName) { in dumpTypeIdentifier() argument
73 out << entityName.copy(entityName.lastIndexOf('.') + 1); in dumpTypeIdentifier()
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/matrix-org/gomatrixserverlib/
H A Dsigning_test.go34 entityName := "domain"
43 err := VerifyJSON(entityName, keyID, publicKey, []byte(input))
50 err := VerifyJSON(entityName, keyID, publicKey, []byte(input))
101 entityName := "example.com"
110 signed, err := SignJSON(entityName, keyID, privateKey, input)
115 err = VerifyJSON(entityName, keyID, publicKey, signed)
141 entityName := "domain"
150 signed, err := SignJSON(entityName, keyID, privateKey, []byte(input))
187 entityName := "example.com"
203 signed, err := SignJSON(entityName, keyID, privateKey, input)
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Conversion/
H A DOldVSProjectFileReader.cs453 string entityName = xmlAttributeText.Substring(indexOfAmpersand + 1, in ReplaceNonEscapingAmpersands()
466 if (0 == String.Compare(entityName, entities[i], StringComparison.Ordinal)) in ReplaceNonEscapingAmpersands()
479 if (!foundEntity && (entityName.Length > 0) && (entityName[0] == '#')) in ReplaceNonEscapingAmpersands()
485 if ((entityName.Length > 2) && (entityName[1] == 'x')) in ReplaceNonEscapingAmpersands()
491 for (int i = 2; i < entityName.Length; i++) in ReplaceNonEscapingAmpersands()
493 if (!Uri.IsHexDigit(entityName[i])) in ReplaceNonEscapingAmpersands()
500 else if (entityName.Length > 1) in ReplaceNonEscapingAmpersands()
506 for (int i = 1; i < entityName.Length; i++) in ReplaceNonEscapingAmpersands()
508 if (!Char.IsNumber(entityName[i])) in ReplaceNonEscapingAmpersands()
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/
H A DMappingException.php68 * @param string $entityName
73 public static function mappingFileNotFound($entityName, $fileName) argument
75 return new self("No mapping file found named '$fileName' for class '$entityName'.");
79 * @param string $entityName
84 public static function invalidMappingFile($entityName, $fileName) argument
86 return new self("Invalid mapping file '$fileName' for class '$entityName'.");
/dports/databases/pear-DoctrineCommon/DoctrineCommon-2.3.0/Doctrine/Common/Persistence/Mapping/
H A DMappingException.php68 * @param string $entityName
72 public static function mappingFileNotFound($entityName, $fileName) argument
74 return new self("No mapping file found named '$fileName' for class '$entityName'.");
78 * @param string $entityName
82 public static function invalidMappingFile($entityName, $fileName) argument
84 return new self("Invalid mapping file '$fileName' for class '$entityName'.");
/dports/www/bolt/bolt-2.2.24/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/
H A DMappingException.php68 * @param string $entityName
73 public static function mappingFileNotFound($entityName, $fileName) argument
75 return new self("No mapping file found named '$fileName' for class '$entityName'.");
79 * @param string $entityName
84 public static function invalidMappingFile($entityName, $fileName) argument
86 return new self("Invalid mapping file '$fileName' for class '$entityName'.");
/dports/www/drupal8/drupal-8.9.20/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/
H A DMappingException.php68 * @param string $entityName
73 public static function mappingFileNotFound($entityName, $fileName) argument
75 return new self("No mapping file found named '$fileName' for class '$entityName'.");
79 * @param string $entityName
84 public static function invalidMappingFile($entityName, $fileName) argument
86 return new self("Invalid mapping file '$fileName' for class '$entityName'.");
/dports/lang/seed7/seed7/lib/
H A Dxml_ent.s7i57 var string: entityName is "";
64 entityName := stri[succ(new_pos) .. pred(semicol_pos)];
65 if length(entityName) >= 2 and entityName[1] = '#' and
66 isDigitString(entityName[2 ..]) then
67 entityValue := str(chr(integer(entityName[2 ..])));
71 elsif length(entityName) >= 3 and entityName[1 .. 2] = "#x" and
72 isDigitString(entityName[3 ..], 16) then
73 entityValue := str(chr(integer(entityName[3 ..], 16)));
77 elsif entityName in xmlEntityHash then
78 entityValue := xmlEntityHash[entityName];
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/doctrine/orm/lib/Doctrine/ORM/Repository/
H A DDefaultRepositoryFactory.php42 public function getRepository(EntityManagerInterface $entityManager, $entityName) argument
44 …$repositoryHash = $entityManager->getClassMetadata($entityName)->getName() . spl_object_hash($enti…
50 …turn $this->repositoryList[$repositoryHash] = $this->createRepository($entityManager, $entityName);
57 * @param string $entityName The name of the entity.
61 private function createRepository(EntityManagerInterface $entityManager, $entityName) argument
64 $metadata = $entityManager->getClassMetadata($entityName);
/dports/finance/prestashop/prestashop/vendor/doctrine/orm/lib/Doctrine/ORM/
H A DORMException.php178 * @param string $entityName
184 public static function invalidFindByCall($entityName, $fieldName, $method) argument
187 "Entity '".$entityName."' has no field '".$fieldName."'. ".
193 * @param string $entityName
199 public static function invalidMagicCall($entityName, $fieldName, $method) argument
202 "Entity '".$entityName."' has no field '".$fieldName."'. ".
208 * @param string $entityName
213 public static function invalidFindByInverseAssociation($entityName, $associationFieldName) argument
216 … "You cannot search for the association field '".$entityName."#".$associationFieldName."', ".
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DXMLEntityDescriptionImpl.java53 public XMLEntityDescriptionImpl(String entityName, String publicId, String literalSystemId, in XMLEntityDescriptionImpl() argument
55 setDescription(entityName, publicId, literalSystemId, baseSystemId, expandedSystemId); in XMLEntityDescriptionImpl()
68 public XMLEntityDescriptionImpl(String entityName, String publicId, String literalSystemId, in XMLEntityDescriptionImpl() argument
70 … setDescription(entityName, publicId, literalSystemId, baseSystemId, expandedSystemId, namespace); in XMLEntityDescriptionImpl()
111 public void setDescription(String entityName, String publicId, String literalSystemId, in setDescription() argument
113 setDescription(entityName, publicId, literalSystemId, baseSystemId, expandedSystemId, null); in setDescription()
126 public void setDescription(String entityName, String publicId, String literalSystemId, in setDescription() argument
128 fEntityName = entityName; in setDescription()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DXMLEntityDescriptionImpl.java53 public XMLEntityDescriptionImpl(String entityName, String publicId, String literalSystemId, in XMLEntityDescriptionImpl() argument
55 setDescription(entityName, publicId, literalSystemId, baseSystemId, expandedSystemId); in XMLEntityDescriptionImpl()
68 public XMLEntityDescriptionImpl(String entityName, String publicId, String literalSystemId, in XMLEntityDescriptionImpl() argument
70 … setDescription(entityName, publicId, literalSystemId, baseSystemId, expandedSystemId, namespace); in XMLEntityDescriptionImpl()
111 public void setDescription(String entityName, String publicId, String literalSystemId, in setDescription() argument
113 setDescription(entityName, publicId, literalSystemId, baseSystemId, expandedSystemId, null); in setDescription()
126 public void setDescription(String entityName, String publicId, String literalSystemId, in setDescription() argument
128 fEntityName = entityName; in setDescription()

12345678910>>...63