Home
last modified time | relevance | path

Searched refs:idValue (Results 1 – 25 of 227) sorted by relevance

12345678910

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Security.Cryptography.Xml/tests/
H A DDataObjectTests.cs37 const string idValue = "testId"; in Constructor_SetsValues()
45 Assert.Equal(idValue, dataObject.Id); in Constructor_SetsValues()
53 const string idValue = "testId"; in Id_GetSet()
57 Id = idValue in Id_GetSet()
60 Assert.Equal(idValue, dataObject.Id); in Id_GetSet()
99 const string idValue = "testId"; in GetXml_CorrectXml()
105 Id = idValue, in GetXml_CorrectXml()
110 … XmlElement testElement = CreateTestElement("Object", idValue, mimeTypeValue, encodingValue, 0); in GetXml_CorrectXml()
128 const string idValue = "testId"; in LoadXml_SetsInstanceValues()
138 Assert.Equal(idValue, dataObject.Id); in LoadXml_SetsInstanceValues()
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack/src/ServiceStack.Common/Utils/
H A DIdUtils.cs137 public static string CreateCacheKeyPath<T>(string idValue) in CreateCacheKeyPath() argument
139 if (idValue.Length < 4) in CreateCacheKeyPath()
141 idValue = idValue.PadLeft(4, '0'); in CreateCacheKeyPath()
143 idValue = idValue.Replace(" ", "-"); in CreateCacheKeyPath()
146 var dir1 = idValue.Substring(0, 2); in CreateCacheKeyPath()
147 var dir2 = idValue.Substring(2, 2); in CreateCacheKeyPath()
150 rootDir, dir1, dir2, idValue); in CreateCacheKeyPath()
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/pysidetest/
H A Dhomonymoussignalandmethod_test.py56 def callback(idValue): argument
57 self.assertEqual(idValue, self.value)
58 self.obj.idValue.connect(callback)
72 self.assertRaises(TypeError, TestObject.idValue, 1)
75 self.assertRaises(TypeError, TestObject.idValue)
78 self.assertEqual(self.obj.idValue(), self.value)
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/pysidetest/
H A Dhomonymoussignalandmethod_test.py56 def callback(idValue): argument
57 self.assertEqual(idValue, self.value)
58 self.obj.idValue.connect(callback)
72 self.assertRaises(TypeError, TestObject.idValue, 1)
75 self.assertRaises(TypeError, TestObject.idValue)
78 self.assertEqual(self.obj.idValue(), self.value)
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/pysidetest/
H A Dhomonymoussignalandmethod_test.py56 def callback(idValue): argument
57 self.assertEqual(idValue, self.value)
58 self.obj.idValue.connect(callback)
72 self.assertRaises(TypeError, TestObject.idValue, 1)
75 self.assertRaises(TypeError, TestObject.idValue)
78 self.assertEqual(self.obj.idValue(), self.value)
/dports/www/gitea/gitea-1.16.5/vendor/xorm.io/xorm/internal/statements/
H A Dpk.go48 idValue := reflect.ValueOf(id)
49 idType := idValue.Type()
53 statement.idParam = schemas.PK{idValue.Convert(stringType).Interface()}
55 statement.idParam = schemas.PK{idValue.Convert(intType).Interface()}
57 statement.idParam = schemas.PK{idValue.Convert(uintType).Interface()}
60 statement.idParam = idValue.Convert(pkType).Interface().(schemas.PK)
64 statement.idParam = idValue.Convert(ptrPkType).Elem().Interface().(schemas.PK)
/dports/finance/prestashop/prestashop/src/Adapter/Product/AttributeGroup/
H A DAbstractAttributeGroupHandler.php50 $idValue = $attributeGroupId->getValue();
53 $attributeGroup = new AttributeGroup($idValue);
55 if ($attributeGroup->id !== $idValue) {
56 … AttributeGroupNotFoundException(sprintf('Attribute group with id "%s" was not found.', $idValue));
59 …oupException(sprintf('An error occurred when trying to get attribute group with id %s', $idValue));
/dports/finance/prestashop/prestashop/src/Adapter/Attribute/
H A DAbstractAttributeHandler.php49 $idValue = $attributeId->getValue();
52 $attribute = new Attribute($idValue);
54 if ($attribute->id !== $idValue) {
55 … throw new AttributeNotFoundException(sprintf('Attribute with id "%s" was not found.', $idValue));
58 …AttributeException(sprintf('An error occurred when trying to get attribute with id %s', $idValue));
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/DataHandling/Localization/
H A DDataMapItem.php406 * @param int|string $idValue
409 protected function extractId($idValue) argument
411 if (MathUtility::canBeInterpretedAsInteger($idValue)) {
412 return $idValue;
414 $idValue = (string)$idValue;
415 if (strpos($idValue, 'NEW') === 0) {
416 return $idValue;
419 $id = BackendUtility::splitTable_Uid($idValue)[1];
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.xml.crypto/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java170 public Element getElementById(String idValue) { in getElementById() argument
171 if (idValue == null) { in getElementById()
174 return idMap.get(idValue); in getElementById()
203 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
204 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
208 idMap.put(idValue, element); in setIdAttributeNS()
/dports/databases/redisdesktopmanager/RedisDesktopManager-2021.8/src/qml/value-editor/editors/
H A DStreamItemEditor.qml22 id: idValue
77 idValue.reset()
81 idValue.validate(function (keyTextValid) {
97 idValue.setValue(rowValue['id'])
103 return textArea.isEdited || idValue.isEdited()
107 return {"value": textArea.value, "id": idValue.text}
112 idValue.reset()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.xml.crypto/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java170 public Element getElementById(String idValue) { in getElementById() argument
171 if (idValue == null) { in getElementById()
174 return idMap.get(idValue); in getElementById()
203 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
204 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
208 idMap.put(idValue, element); in setIdAttributeNS()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.xml.crypto/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java170 public Element getElementById(String idValue) { in getElementById() argument
171 if (idValue == null) { in getElementById()
174 return idMap.get(idValue); in getElementById()
203 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
204 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
208 idMap.put(idValue, element); in setIdAttributeNS()
/dports/security/xml-security/xml-security-1_5_5/src/main/java/javax/xml/crypto/dom/
H A DDOMCryptoContext.java166 public Element getElementById(String idValue) { in getElementById() argument
167 if (idValue == null) { in getElementById()
170 return idMap.get(idValue); in getElementById()
199 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
200 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
204 idMap.put(idValue, element); in setIdAttributeNS()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java169 public Element getElementById(String idValue) { in getElementById() argument
170 if (idValue == null) { in getElementById()
173 return idMap.get(idValue); in getElementById()
202 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
203 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
207 idMap.put(idValue, element); in setIdAttributeNS()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.xml.crypto/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java170 public Element getElementById(String idValue) { in getElementById() argument
171 if (idValue == null) { in getElementById()
174 return idMap.get(idValue); in getElementById()
203 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
204 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
208 idMap.put(idValue, element); in setIdAttributeNS()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.xml.crypto/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java170 public Element getElementById(String idValue) { in getElementById() argument
171 if (idValue == null) { in getElementById()
174 return idMap.get(idValue); in getElementById()
203 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
204 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
208 idMap.put(idValue, element); in setIdAttributeNS()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.xml.crypto/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java170 public Element getElementById(String idValue) { in getElementById() argument
171 if (idValue == null) { in getElementById()
174 return idMap.get(idValue); in getElementById()
203 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
204 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
208 idMap.put(idValue, element); in setIdAttributeNS()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.xml.crypto/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java170 public Element getElementById(String idValue) { in getElementById() argument
171 if (idValue == null) { in getElementById()
174 return idMap.get(idValue); in getElementById()
203 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
204 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
208 idMap.put(idValue, element); in setIdAttributeNS()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.xml.crypto/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java170 public Element getElementById(String idValue) { in getElementById() argument
171 if (idValue == null) { in getElementById()
174 return idMap.get(idValue); in getElementById()
203 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
204 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
208 idMap.put(idValue, element); in setIdAttributeNS()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/javax/xml/crypto/dom/
H A DDOMCryptoContext.java169 public Element getElementById(String idValue) { in getElementById() argument
170 if (idValue == null) { in getElementById()
173 return idMap.get(idValue); in getElementById()
202 String idValue = element.getAttributeNS(namespaceURI, localName); in setIdAttributeNS() local
203 if (idValue == null || idValue.length() == 0) { in setIdAttributeNS()
207 idMap.put(idValue, element); in setIdAttributeNS()
/dports/www/grails/grails-1.3.6/src/java/org/codehaus/groovy/grails/web/converters/marshaller/xml/
H A DDomainClassMarshaller.java75 Object idValue = beanWrapper.getPropertyValue(id.getName()); in marshalObject() local
77 if (idValue != null) xml.attribute("id", String.valueOf(idValue)); in marshalObject()
159 Object idValue; in asShortObject() local
162 idValue = ((EntityProxyHandler) proxyHandler).getProxyIdentifier(refObj); in asShortObject()
163 if(idValue == null) { in asShortObject()
164 idValue = new BeanWrapperImpl(refObj).getPropertyValue(idProperty.getName()); in asShortObject()
169 idValue = new BeanWrapperImpl(refObj).getPropertyValue(idProperty.getName()); in asShortObject()
171 xml.attribute("id",String.valueOf(idValue)); in asShortObject()
/dports/sysutils/terraform/terraform-1.0.11/internal/command/views/
H A Dhook_json.go62 idKey, idValue := format.ObjectValueIDOrName(priorState)
63 h.view.Hook(json.NewApplyStart(addr, action, idKey, idValue))
112 idKey, idValue := format.ObjectValueID(newState)
113 h.view.Hook(json.NewApplyComplete(addr, progress.action, idKey, idValue, elapsed))
147 idKey, idValue := format.ObjectValueID(priorState)
148 h.view.Hook(json.NewRefreshStart(addr, idKey, idValue))
153 idKey, idValue := format.ObjectValueID(newState)
154 h.view.Hook(json.NewRefreshComplete(addr, idKey, idValue))
/dports/science/cdk/cdk-cdk-2.3/storage/io/src/main/java/org/openscience/cdk/io/cml/
H A DPDBConvention.java81 private String idValue = ""; field in PDBConvention
246 if (idValue.equals("pdb:altLoc")) in characterData()
248 else if (idValue.equals("pdb:chainID")) in characterData()
252 else if (idValue.equals("pdb:iCode")) in characterData()
254 else if (idValue.equals("pdb:name")) in characterData()
256 else if (idValue.equals("pdb:oxt")) in characterData()
258 else if (idValue.equals("pdb:record")) in characterData()
262 else if (idValue.equals("pdb:resSeq")) in characterData()
264 else if (idValue.equals("pdb:segID")) in characterData()
266 else if (idValue.equals("pdb:serial")) in characterData()
[all …]
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/core/Classes/DataHandling/Localization/
H A DDataMapItem.php405 * @param int|string $idValue
408 protected function extractId($idValue) argument
410 if (MathUtility::canBeInterpretedAsInteger($idValue)) {
411 return $idValue;
413 if (strpos($idValue, 'NEW') === 0) {
414 return $idValue;
417 [$tableName, $id] = BackendUtility::splitTable_Uid($idValue);

12345678910