Home
last modified time | relevance | path

Searched refs:tmpObj (Results 1 – 25 of 147) sorted by relevance

123456

/dports/www/ilias/ILIAS-5.4.25/Services/Contact/classes/
H A Dclass.ilMailingLists.php95 $tmpObj = new ilMailingList($this->user, 0);
96 $tmpObj->setId($row->ml_id);
97 $tmpObj->setUserId($row->user_id);
98 $tmpObj->setTitle($row->title);
99 $tmpObj->setDescription($row->description);
100 $tmpObj->setCreatedate($row->createdate);
101 $tmpObj->setChangedate($row->changedae);
102 $tmpObj->setMode($row->lmode);
104 $entries[$counter] = $tmpObj;
106 unset($tmpObj);
/dports/www/ilias6/ILIAS-6.14/Services/Contact/classes/
H A Dclass.ilMailingLists.php95 $tmpObj = new ilMailingList($this->user, 0);
96 $tmpObj->setId($row->ml_id);
97 $tmpObj->setUserId($row->user_id);
98 $tmpObj->setTitle($row->title);
99 $tmpObj->setDescription($row->description);
100 $tmpObj->setCreatedate($row->createdate);
101 $tmpObj->setChangedate($row->changedae);
102 $tmpObj->setMode($row->lmode);
104 $entries[$counter] = $tmpObj;
106 unset($tmpObj);
/dports/games/bzflag-server/bzflag-2.4.22/src/bzfs/
H A DBZWReader.cxx136 WorldFileObject* tmpObj = NULL; in parseNormalObject() local
139 tmpObj = new CustomBox; in parseNormalObject()
143 tmpObj = new CustomBase; in parseNormalObject()
145 tmpObj = new CustomLink(); in parseNormalObject()
147 tmpObj = new CustomMesh; in parseNormalObject()
157 tmpObj = new CustomSphere; in parseNormalObject()
159 tmpObj = new CustomTetra(); in parseNormalObject()
161 tmpObj = new CustomWeapon; in parseNormalObject()
163 tmpObj = new CustomZone; in parseNormalObject()
177 if (tmpObj != NULL) in parseNormalObject()
[all …]
/dports/games/bzflag/bzflag-2.4.22/src/bzfs/
H A DBZWReader.cxx136 WorldFileObject* tmpObj = NULL; in parseNormalObject() local
139 tmpObj = new CustomBox; in parseNormalObject()
143 tmpObj = new CustomBase; in parseNormalObject()
145 tmpObj = new CustomLink(); in parseNormalObject()
147 tmpObj = new CustomMesh; in parseNormalObject()
157 tmpObj = new CustomSphere; in parseNormalObject()
159 tmpObj = new CustomTetra(); in parseNormalObject()
161 tmpObj = new CustomWeapon; in parseNormalObject()
163 tmpObj = new CustomZone; in parseNormalObject()
177 if (tmpObj != NULL) in parseNormalObject()
[all …]
/dports/science/opensim-core/opensim-core-4.1/OpenSim/Actuators/Test/
H A DtestSerializableMuscleCurves.cpp160 Object* tmpObj = Object:: in testActiveForceLengthCurve() local
163 delete tmpObj; in testActiveForceLengthCurve()
299 Object* tmpObj = Object:: in testForceVelocityCurve() local
302 delete tmpObj; in testForceVelocityCurve()
443 Object* tmpObj = Object:: in testForceVelocityInverseCurve() local
446 delete tmpObj; in testForceVelocityInverseCurve()
584 Object* tmpObj = Object:: in testTendonForceLengthCurve() local
587 delete tmpObj; in testTendonForceLengthCurve()
744 delete tmpObj; in testFiberForceLengthCurve()
891 delete tmpObj; in testFiberCompressiveForceLengthCurve()
[all …]
/dports/www/websh/websh-3.6.0b5/src/generic/
H A Durl.c875 Tcl_Obj *tmpObj = NULL; in Web_CmdUrlCfg() local
895 tmpObj = objv[2]; in Web_CmdUrlCfg()
897 tmpObj = NULL; in Web_CmdUrlCfg()
905 if (tmpObj != NULL) { in Web_CmdUrlCfg()
907 urlData->defaultscheme = Tcl_DuplicateObj(tmpObj); in Web_CmdUrlCfg()
914 if (tmpObj != NULL) { in Web_CmdUrlCfg()
915 if (strcmp(Tcl_GetString(tmpObj), "")) { in Web_CmdUrlCfg()
916 urlData->defaultscheme = Tcl_DuplicateObj(tmpObj); in Web_CmdUrlCfg()
925 return handleConfig(interp, &urlData->host, tmpObj, 1); in Web_CmdUrlCfg()
964 if (tmpObj != NULL) { in Web_CmdUrlCfg()
[all …]
H A Dcfg.c339 Tcl_Obj *tmpObj = NULL; in Web_Cfg() local
346 tmpObj = objv[2]; in Web_Cfg()
348 tmpObj = NULL; in Web_Cfg()
350 return handleConfig(interp, &cryptData->encryptChain, tmpObj, in Web_Cfg()
365 Tcl_Obj *tmpObj = NULL; in Web_Cfg() local
372 tmpObj = objv[2]; in Web_Cfg()
374 tmpObj = NULL; in Web_Cfg()
376 return handleConfig(interp, &cryptData->decryptChain, tmpObj, in Web_Cfg()
/dports/editors/libreoffice/libreoffice-7.2.6.2/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_java/
H A DFlatXml.java134 Object tmpObj=m_xServiceFactory.createInstance("com.sun.star.xml.sax.Parser"); in importer() local
135 if (tmpObj == null) return false; in importer()
137 XParser xParser = UnoRuntime.queryInterface(XParser.class , tmpObj); in importer()
173 Object tmpObj = null; in exporter() local
176 tmpObj = m_xServiceFactory.createInstance("com.sun.star.xml.sax.Writer"); in exporter()
177 if (tmpObj != null) in exporter()
178 m_xHandler = UnoRuntime.queryInterface(XExtendedDocumentHandler.class, tmpObj); in exporter()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/FlatXmlFilter_java/
H A DFlatXml.java134 Object tmpObj=m_xServiceFactory.createInstance("com.sun.star.xml.sax.Parser"); in importer() local
135 if (tmpObj == null) return false; in importer()
137 XParser xParser = UnoRuntime.queryInterface(XParser.class , tmpObj); in importer()
173 Object tmpObj = null; in exporter() local
176 tmpObj = m_xServiceFactory.createInstance("com.sun.star.xml.sax.Writer"); in exporter()
177 if (tmpObj != null) in exporter()
178 m_xHandler = UnoRuntime.queryInterface(XExtendedDocumentHandler.class, tmpObj); in exporter()
/dports/science/py-pymol/pymol-open-source-2.4.0/modules/pymol/
H A Dutil.py100 tmpObj = _self.get_unused_name("_tmp")
113 _self.set("dot_density", 3, tmpObj)
124 _self.delete(tmpObj)
145 tmpObj = _self.get_unused_name("__tmp")
152 _self.set("dot_solvent", 1, tmpObj);
162 _self.delete(tmpObj)
188 tmpObj = _self.get_unused_name("_tmp")
197 _self.set("dot_solvent", 1, tmpObj);
205 _self.delete(tmpObj)
230 tmpObj = _self.get_unused_name("_tmp")
[all …]
/dports/net/kamailio/kamailio-5.4.5/src/modules/kazoo/
H A Dkz_amqp.c1581 if(tmpObj != NULL) { in kz_amqp_queue_from_json()
1586 if(tmpObj != NULL) { in kz_amqp_queue_from_json()
1591 if(tmpObj != NULL) { in kz_amqp_queue_from_json()
1596 if(tmpObj != NULL) { in kz_amqp_queue_from_json()
1669 if(tmpObj != NULL) { in kz_amqp_exchange_from_json()
1674 if(tmpObj != NULL) { in kz_amqp_exchange_from_json()
1679 if(tmpObj != NULL) { in kz_amqp_exchange_from_json()
1684 if(tmpObj != NULL) { in kz_amqp_exchange_from_json()
1854 if(tmpObj != NULL) { in ki_kz_amqp_subscribe()
1895 tmpObj = json_obj; in ki_kz_amqp_subscribe()
[all …]
/dports/java/bouncycastle15/crypto-169/util/src/main/java/org/bouncycastle/asn1/eac/
H A DCVCertificate.java49 ASN1Primitive tmpObj; in setPrivateData() local
50 while ((tmpObj = content.readObject()) != null) in setPrivateData()
53 if (tmpObj instanceof ASN1ApplicationSpecific) in setPrivateData()
55 aSpe = (ASN1ApplicationSpecific)tmpObj; in setPrivateData()
/dports/net/wireshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-amp.c373 cborObj tmpObj; in dissect_amp_as_subtree() local
418 tmpObj = cbor_info(tvb, offset); // Should come back a CBOR text string if some length. in dissect_amp_as_subtree()
419 offset += tmpObj.size; in dissect_amp_as_subtree()
421 (int) tmpObj.uint, ENC_ASCII|ENC_NA); in dissect_amp_as_subtree()
422 offset += (int) tmpObj.uint; in dissect_amp_as_subtree()
430tmpObj = cbor_info(tvb, offset); // Should come back a CBOR array of some size (Rx Names) in dissect_amp_as_subtree()
431 if ( tmpObj.type != 0x04 ) { in dissect_amp_as_subtree()
434 offset += tmpObj.size; in dissect_amp_as_subtree()
436 for ( j=0; j<tmpObj.uint; j++ ) { in dissect_amp_as_subtree()
446 offset += tmpObj.size; in dissect_amp_as_subtree()
/dports/net/tshark-lite/wireshark-3.6.1/epan/dissectors/
H A Dpacket-amp.c373 cborObj tmpObj; in dissect_amp_as_subtree() local
418 tmpObj = cbor_info(tvb, offset); // Should come back a CBOR text string if some length. in dissect_amp_as_subtree()
419 offset += tmpObj.size; in dissect_amp_as_subtree()
421 (int) tmpObj.uint, ENC_ASCII|ENC_NA); in dissect_amp_as_subtree()
422 offset += (int) tmpObj.uint; in dissect_amp_as_subtree()
430tmpObj = cbor_info(tvb, offset); // Should come back a CBOR array of some size (Rx Names) in dissect_amp_as_subtree()
431 if ( tmpObj.type != 0x04 ) { in dissect_amp_as_subtree()
434 offset += tmpObj.size; in dissect_amp_as_subtree()
436 for ( j=0; j<tmpObj.uint; j++ ) { in dissect_amp_as_subtree()
446 offset += tmpObj.size; in dissect_amp_as_subtree()
/dports/net/tshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-amp.c373 cborObj tmpObj;
418 tmpObj = cbor_info(tvb, offset); // Should come back a CBOR text string if some length.
419 offset += tmpObj.size;
421 (int) tmpObj.uint, ENC_ASCII|ENC_NA);
422 offset += (int) tmpObj.uint;
430tmpObj = cbor_info(tvb, offset); // Should come back a CBOR array of some size (Rx Names)
431 if ( tmpObj.type != 0x04 ) {
434 offset += tmpObj.size;
436 for ( j=0; j<tmpObj.uint; j++ ) {
446 offset += tmpObj.size;
/dports/net/wireshark/wireshark-3.6.1/epan/dissectors/
H A Dpacket-amp.c373 cborObj tmpObj; in dissect_amp_as_subtree() local
418 tmpObj = cbor_info(tvb, offset); // Should come back a CBOR text string if some length. in dissect_amp_as_subtree()
419 offset += tmpObj.size; in dissect_amp_as_subtree()
421 (int) tmpObj.uint, ENC_ASCII|ENC_NA); in dissect_amp_as_subtree()
422 offset += (int) tmpObj.uint; in dissect_amp_as_subtree()
430tmpObj = cbor_info(tvb, offset); // Should come back a CBOR array of some size (Rx Names) in dissect_amp_as_subtree()
431 if ( tmpObj.type != 0x04 ) { in dissect_amp_as_subtree()
434 offset += tmpObj.size; in dissect_amp_as_subtree()
436 for ( j=0; j<tmpObj.uint; j++ ) { in dissect_amp_as_subtree()
446 offset += tmpObj.size; in dissect_amp_as_subtree()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/
H A DPageParser.cs485 object tmpObj = Util.GetEnumAttribute(name, value, typeof(TraceModeInternal)); in ProcessMainDirectiveAttribute()
486 _traceMode = (TraceMode) tmpObj; in ProcessMainDirectiveAttribute()
618 object tmpObj = Util.GetEnumAttribute(name, value, typeof(TransactionOption)); in ParseTransactionAttribute()
619 if (tmpObj != null) { in ParseTransactionAttribute()
620 _transactionMode = (int) tmpObj; in ParseTransactionAttribute()
658 …object tmpObj = Util.GetAndRemoveEnumAttribute(directive, typeof(OutputCacheLocation), "location"); in ProcessOutputCacheDirective()
659 if (tmpObj != null) { in ProcessOutputCacheDirective()
660 _outputCacheLocation = (OutputCacheLocation) tmpObj; in ProcessOutputCacheDirective()
H A DTemplateControlParser.cs173 object tmpObj = null; in ProcessMainDirective()
176 tmpObj = Util.GetAndRemoveEnumAttribute(mainDirective, in ProcessMainDirective()
185 if (tmpObj != null) { in ProcessMainDirective()
186 CompilationMode = (CompilationMode) tmpObj; in ProcessMainDirective()
/dports/games/solarconquest/SolarConquest/source/
H A DFactory.h129 CFactory* tmpObj; in DeleteAllFactories() local
133 tmpObj = curObj->nextObj; in DeleteAllFactories()
135 curObj = tmpObj; in DeleteAllFactories()
/dports/math/py-pandas/pandas-1.2.5/pandas/_libs/src/ujson/python/
H A DobjToJSON.c1445 PyObject *tmpObj = NULL; in Object_invokeDefaultHandler() local
1448 if (tmpObj == NULL) { in Object_invokeDefaultHandler()
1455 Py_XDECREF(tmpObj); in Object_invokeDefaultHandler()
1712 if (!tmpObj) { in Object_beginTypeContext()
1716 Py_DECREF(tmpObj); in Object_beginTypeContext()
1806 if (!tmpObj) { in Object_beginTypeContext()
1817 Py_DECREF(tmpObj); in Object_beginTypeContext()
1826 if (!tmpObj) { in Object_beginTypeContext()
1837 Py_DECREF(tmpObj); in Object_beginTypeContext()
1841 if (!tmpObj) { in Object_beginTypeContext()
[all …]
/dports/www/phprecipebook/phprecipebook/classes/
H A DRecipe.class.php292 $tmpObj = new Recipe($rc->fields['related_child']);
293 $tmpObj->loadRecipe();
294 $children[] = $tmpObj;
298 $tmpObj = new Recipe($rc->fields['related_child']);
299 $tmpObj->loadRecipe();
300 $children[] = $tmpObj;
/dports/www/thirtybees/thirtybees-1.1.0/classes/
H A DAddressFormat.php630 $tmpObj = new AddressFormat();
631 $tmpObj->id_country = $idCountry;
632 $out = $tmpObj->getFormat($tmpObj->id_country);
633 unset($tmpObj);
/dports/sysutils/libdnf/libdnf-0.64.0/python/hawkey/
H A Diutil-py.hpp59 auto tmpObj = pyObj; in release() local
61 return tmpObj; in release()
/dports/finance/prestashop/prestashop/classes/
H A DAddressFormat.php617 $tmpObj = new AddressFormat();
618 $tmpObj->id_country = $idCountry;
619 $out = $tmpObj->getFormat($tmpObj->id_country);
620 unset($tmpObj);
/dports/science/jstrack/jstrack/extlib/tcllib1.19/rc4/
H A Drc4c.tcl66 tmpObj = Tcl_NewByteArrayObj((unsigned char *)ctx, sizeof(RC4_CTX));
67 Tcl_IncrRefCount(tmpObj);
73 Tcl_DecrRefCount(tmpObj);

123456