Home
last modified time | relevance | path

Searched refs:idValue (Results 26 – 50 of 227) sorted by relevance

12345678910

/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/core/Classes/DataHandling/Localization/
H A DDataMapItem.php404 * @param int|string $idValue
407 protected function extractId($idValue) argument
409 if (MathUtility::canBeInterpretedAsInteger($idValue)) {
410 return $idValue;
412 if (strpos($idValue, 'NEW') === 0) {
413 return $idValue;
416 list($tableName, $id) = BackendUtility::splitTable_Uid($idValue);
/dports/www/grails/grails-1.3.6/src/java/org/codehaus/groovy/grails/web/converters/marshaller/json/
H A DDomainClassMarshaller.java86 Object idValue = extractValue(value, id); in marshalObject() local
88 json.property("id", idValue); in marshalObject()
178 Object idValue; in asShortObject() local
181 idValue = ((EntityProxyHandler) proxyHandler).getProxyIdentifier(refObj); in asShortObject()
182 if(idValue == null) { in asShortObject()
183 idValue = extractValue(refObj, idProperty); in asShortObject()
188 idValue = extractValue(refObj, idProperty); in asShortObject()
193 writer.key("id").value(idValue); in asShortObject()
/dports/net/concourse-fly/concourse-6.7.1/vendor/github.com/google/jsonapi/
H A Drequest.go199 var idValue reflect.Value
203 idValue = reflect.ValueOf(&n)
206 idValue = reflect.ValueOf(&n)
209 idValue = reflect.ValueOf(&n)
212 idValue = reflect.ValueOf(&n)
215 idValue = reflect.ValueOf(&n)
218 idValue = reflect.ValueOf(&n)
221 idValue = reflect.ValueOf(&n)
224 idValue = reflect.ValueOf(&n)
227 idValue = reflect.ValueOf(&n)
[all …]
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/google/jsonapi/
H A Drequest.go199 var idValue reflect.Value
203 idValue = reflect.ValueOf(&n)
206 idValue = reflect.ValueOf(&n)
209 idValue = reflect.ValueOf(&n)
212 idValue = reflect.ValueOf(&n)
215 idValue = reflect.ValueOf(&n)
218 idValue = reflect.ValueOf(&n)
221 idValue = reflect.ValueOf(&n)
224 idValue = reflect.ValueOf(&n)
227 idValue = reflect.ValueOf(&n)
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Security/System.Security.Cryptography.Xml/
H A DSignedXml.cs717 public virtual XmlElement GetIdElement (XmlDocument document, string idValue) in GetIdElement() argument
719 if ((document == null) || (idValue == null)) in GetIdElement()
723 XmlElement xel = document.GetElementById (idValue); in GetIdElement()
744 XmlConvert.VerifyNCName(idValue); in DefaultGetIdElement()
756 XmlElement elem = document.GetElementById(idValue); in DefaultGetIdElement()
763 XmlElement cloneElem = docClone.GetElementById(idValue); in DefaultGetIdElement()
775 XmlElement cloneElem2 = docClone.GetElementById(idValue); in DefaultGetIdElement()
787 elem = GetSingleReferenceTarget(document, "Id", idValue); in DefaultGetIdElement()
790 elem = GetSingleReferenceTarget(document, "id", idValue); in DefaultGetIdElement()
793 elem = GetSingleReferenceTarget(document, "ID", idValue); in DefaultGetIdElement()
[all …]
/dports/databases/pear-Horde_Db/Horde_Db-2.4.0/lib/Horde/Db/Adapter/Pdo/
H A DBase.php303 * @param integer $idValue The primary key value. This parameter is
310 public function insertBlob($table, $fields, $pk = null, $idValue = null) argument
335 return $idValue
336 ? $idValue
343 return $this->insert($query, $fields, null, $pk, $idValue);
405 * @param integer $idValue The primary key value. This parameter is
414 $idValue = null, $sequenceName = null) argument
419 return $idValue
420 ? $idValue
H A DPgsql.php114 * @param integer $idValue The primary key value. This parameter is
123 $idValue = null, $sequenceName = null) argument
146 if ($idValue) {
147 return $idValue;
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Bridge/Doctrine/Form/ChoiceList/
H A DIdReader.php109 $idValue = current($this->classMetadata->getIdentifierValues($object));
112 $idValue = $this->associationIdReader->getIdValue($idValue);
115 return $idValue;
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Bridge/Doctrine/Form/ChoiceList/
H A DIdReader.php109 $idValue = current($this->classMetadata->getIdentifierValues($object));
112 $idValue = $this->associationIdReader->getIdValue($idValue);
115 return $idValue;
/dports/databases/pear-Horde_Db/Horde_Db-2.4.0/lib/Horde/Db/Adapter/
H A DOci8.php349 * @param integer $idValue The primary key value. This parameter is
358 $idValue = null, $sequenceName = null) argument
361 return $idValue
362 ? $idValue
376 * @param integer $idValue The primary key value. This parameter is
383 public function insertBlob($table, $fields, $pk = null, $idValue = null) argument
402 return $idValue
403 ? $idValue
H A DSplitRead.php346 * @param integer $idValue TODO
353 $idValue = null, $sequenceName = null) argument
355 $result = $this->_write->insert($sql, $arg1, $arg2, $pk, $idValue, $sequenceName);
375 * @param integer $idValue The primary key value. This parameter is
382 public function insertBlob($table, $fields, $pk = null, $idValue = null) argument
384 $result = $this->_write->insertBlob($table, $fields, $pk, $idValue);
/dports/sysutils/terraform/terraform-1.0.11/internal/command/views/json/
H A Dhook.go39 func NewApplyStart(addr addrs.AbsResourceInstance, action plans.Action, idKey string, idValue strin…
44 IDValue: idValue,
106 func NewApplyComplete(addr addrs.AbsResourceInstance, action plans.Action, idKey, idValue string, e…
111 IDValue: idValue,
264 func NewRefreshStart(addr addrs.AbsResourceInstance, idKey, idValue string) Hook {
268 IDValue: idValue,
293 func NewRefreshComplete(addr addrs.AbsResourceInstance, idKey, idValue string) Hook {
297 IDValue: idValue,
/dports/databases/pear-Horde_Db/Horde_Db-2.4.0/lib/Horde/Db/
H A DAdapter.php230 * @param integer $idValue The primary key value. This parameter is
239 $idValue = null, $sequenceName = null); argument
251 * @param integer $idValue The primary key value. This parameter is
258 public function insertBlob($table, $fields, $pk = null, $idValue = null); argument
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Lang/src/library/script/
H A DScriptEngineUtils.cpp54 QScriptValue idValue = value; in getDbiId() local
58 idValue = getIdFun.call(value); in getDbiId()
62 if (idValue.isVariant()) { in getDbiId()
63 QVariant var = idValue.toVariant(); in getDbiId()
/dports/lang/fpc-utils/fpc-3.2.2/utils/javapp/src/fpc/tools/javapp/
H A DTables.java224 public static int keyword(String idValue) { in keyword() argument
225 Integer Val=(Integer)(keywords.get(idValue)); in keyword()
307 public static int tagValue(String idValue) { in tagValue() argument
308 Integer Val=(Integer)(Tags.get(idValue)); in tagValue()
336 public static int typeValue(String idValue) { in typeValue() argument
337 Integer Val=(Integer)(Types.get(idValue)); in typeValue()
370 public static int mapTypeValue(String idValue) { in mapTypeValue() argument
371 Integer Val=(Integer)(MapTypes.get(idValue)); in mapTypeValue()
/dports/lang/fpc-source/fpc-3.2.2/utils/javapp/src/fpc/tools/javapp/
H A DTables.java224 public static int keyword(String idValue) { in keyword() argument
225 Integer Val=(Integer)(keywords.get(idValue)); in keyword()
307 public static int tagValue(String idValue) { in tagValue() argument
308 Integer Val=(Integer)(Tags.get(idValue)); in tagValue()
336 public static int typeValue(String idValue) { in typeValue() argument
337 Integer Val=(Integer)(Types.get(idValue)); in typeValue()
370 public static int mapTypeValue(String idValue) { in mapTypeValue() argument
371 Integer Val=(Integer)(MapTypes.get(idValue)); in mapTypeValue()
/dports/security/vault/vault-1.8.2/vendor/github.com/svanharmelen/jsonapi/
H A Drequest.go220 var idValue reflect.Value
224 idValue = reflect.ValueOf(&n)
227 idValue = reflect.ValueOf(&n)
230 idValue = reflect.ValueOf(&n)
233 idValue = reflect.ValueOf(&n)
236 idValue = reflect.ValueOf(&n)
239 idValue = reflect.ValueOf(&n)
242 idValue = reflect.ValueOf(&n)
245 idValue = reflect.ValueOf(&n)
248 idValue = reflect.ValueOf(&n)
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vault-plugin-secrets-terraform/vendor/github.com/svanharmelen/jsonapi/
H A Drequest.go220 var idValue reflect.Value
224 idValue = reflect.ValueOf(&n)
227 idValue = reflect.ValueOf(&n)
230 idValue = reflect.ValueOf(&n)
233 idValue = reflect.ValueOf(&n)
236 idValue = reflect.ValueOf(&n)
239 idValue = reflect.ValueOf(&n)
242 idValue = reflect.ValueOf(&n)
245 idValue = reflect.ValueOf(&n)
248 idValue = reflect.ValueOf(&n)
[all …]
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/pysidetest/
H A Dtestobject.h60 TestObject(int idValue, QObject* parent = 0) : QObject(parent), m_idValue(idValue) {} in QObject()
61 int idValue() const { return m_idValue; } in idValue() function
74 void idValue(int newValue);
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/pysidetest/
H A Dtestobject.h60 TestObject(int idValue, QObject* parent = 0) : QObject(parent), m_idValue(idValue) {} in QObject()
61 int idValue() const { return m_idValue; } in idValue() function
74 void idValue(int newValue);
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/pysidetest/
H A Dtestobject.h60 TestObject(int idValue, QObject* parent = 0) : QObject(parent), m_idValue(idValue) {} in QObject()
61 int idValue() const { return m_idValue; } in idValue() function
74 void idValue(int newValue);
/dports/graphics/openexr/openexr-3.1.4/src/lib/OpenEXR/
H A DImfIDManifest.h160 Iterator insert(uint64_t idValue, const std::vector<std::string>& text);
164 Iterator insert(uint64_t idValue, const std::string& text);
175 Iterator find(uint64_t idValue);
178 ConstIterator find(uint64_t idValue) const;
181 void erase(uint64_t idValue);
185 std::vector<std::string>& operator[](uint64_t idValue);
191 ChannelGroupManifest& operator<<(uint64_t idValue);
/dports/www/firefox-esr/firefox-91.8.0/js/src/wasm/
H A DWasmBinary.cpp99 uint8_t idValue; in startSection() local
100 if (!readFixedU8(&idValue)) { in startSection()
104 while (idValue != uint8_t(id)) { in startSection()
105 if (idValue != uint8_t(SectionId::Custom)) { in startSection()
119 if (!readFixedU8(&idValue)) { in startSection()
/dports/www/firefox/firefox-99.0/js/src/wasm/
H A DWasmBinary.cpp99 uint8_t idValue; in startSection() local
100 if (!readFixedU8(&idValue)) { in startSection()
104 while (idValue != uint8_t(id)) { in startSection()
105 if (idValue != uint8_t(SectionId::Custom)) { in startSection()
119 if (!readFixedU8(&idValue)) { in startSection()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/wasm/
H A DWasmBinary.cpp99 uint8_t idValue; in startSection() local
100 if (!readFixedU8(&idValue)) { in startSection()
104 while (idValue != uint8_t(id)) { in startSection()
105 if (idValue != uint8_t(SectionId::Custom)) { in startSection()
119 if (!readFixedU8(&idValue)) { in startSection()

12345678910