Home
last modified time | relevance | path

Searched refs:propertyNode (Results 1 – 25 of 190) sorted by relevance

12345678

/dports/games/manaplus/manaplus-2.1.3.17/src/particle/
H A Dparticleemitter.cpp95 for_each_xml_child_node(propertyNode, emitterNode) in ParticleEmitter()
97 if (xmlNameEqual(propertyNode, "property")) in ParticleEmitter()
100 propertyNode, "name", ""); in ParticleEmitter()
123 propertyNode, "value", ""); in ParticleEmitter()
135 propertyNode, "value", ""); in ParticleEmitter()
212 propertyNode, 0.0F); in ParticleEmitter()
217 propertyNode, 0.0F); in ParticleEmitter()
222 propertyNode, 1.0F); in ParticleEmitter()
250 else if (xmlNameEqual(propertyNode, "emitter")) in ParticleEmitter()
336 if (!XmlHaveChildContent(propertyNode)) in ParticleEmitter()
[all …]
/dports/devel/simgear/simgear-2020.3.11/simgear/hla/
H A DHLAPropertyDataElement.cxx39 _propertyNode(propertyNode) in ScalarDecodeVisitor()
113 _propertyNode(propertyNode) in ScalarEncodeVisitor()
177 _propertyNode(propertyNode) in ScalarDataElement()
239 _propertyNode(propertyNode), in StringDataElement()
265 _propertyNode(propertyNode) in DataElementFactoryVisitor()
320 _propertyNode(propertyNode) in ArrayDataElementFactory()
385 _propertyNode(propertyNode) in VariantRecordDataElementFactory()
425 setPropertyNode(propertyNode); in HLAPropertyDataElement()
431 setPropertyNode(propertyNode); in HLAPropertyDataElement()
529 _propertyNode = propertyNode; in setPropertyNode()
[all …]
H A DHLAPropertyDataElement.hxx29 HLAPropertyDataElement(SGPropertyNode* propertyNode);
30 HLAPropertyDataElement(const HLADataType* dataType, SGPropertyNode* propertyNode);
43 void setPropertyNode(SGPropertyNode* propertyNode);
49 …t(const SGSharedPtr<const HLADataType>& dataType, const SGSharedPtr<SGPropertyNode>& propertyNode);
/dports/devel/simgear/simgear-2020.3.11/simgear/scene/tgdb/
H A Dobj.cxx61 SGPropertyNode* propertyNode = options->getPropertyNode().get(); in SGLoadBTG() local
65 …simplifyNear = propertyNode->getBoolValue("/sim/rendering/terrain/simplifier/enabled-near", simpli… in SGLoadBTG()
66 …simplifyDistant = simplifyNear || propertyNode->getBoolValue("/sim/rendering/terrain/simplifier/en… in SGLoadBTG()
67 ratio = propertyNode->getDoubleValue("/sim/rendering/terrain/simplifier/ratio", ratio); in SGLoadBTG()
68 …maxLength = propertyNode->getDoubleValue("/sim/rendering/terrain/simplifier/max-length", maxLength… in SGLoadBTG()
69 … maxError = propertyNode->getDoubleValue("/sim/rendering/terrain/simplifier/max-error", maxError); in SGLoadBTG()
70 object_range = propertyNode->getDoubleValue("/sim/rendering/static-lod/rough", object_range); in SGLoadBTG()
71 …tile_min_expiry= propertyNode->getDoubleValue("/sim/rendering/plod-minimum-expiry-time-secs", tile… in SGLoadBTG()
/dports/deskutils/freeplane/freeplane-1.9.12/scripts/
H A DinstallScriptAddOn.groovy81 Proxy.Node propertyNode = node.map.root
129 Proxy.Node propertyNode = childNodeMap[property]
136 Proxy.Node propertyNode = childNodeMap[property]
143 Proxy.Node propertyNode = childNodeMap[property]
163 Proxy.Node propertyNode = childNodeMap[property]
164 configMap[property] = propertyNode.isLeaf() ? null : propertyNode.children[0].text
170 Proxy.Node propertyNode = childNodeMap[property]
180 Proxy.Node propertyNode = childNodeMap[property]
188 if (!propertyNode)
200 if (!propertyNode)
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.bundles/bundles/org.eclipse.equinox.useradmin/src/org/eclipse/equinox/internal/useradmin/
H A DUserAdminStore.java105 propertyNode.clear(); in clearProperties()
106 if (propertyNode.nodeExists(typesNode)) in clearProperties()
107 propertyNode.node(typesNode).removeNode(); in clearProperties()
108 propertyNode.flush(); in clearProperties()
125 propertyNode.put(key, (String) value); in addProperty()
129 propertyNode.putByteArray(key, (byte[]) value); in addProperty()
132 propertyNode.flush(); in addProperty()
147 propertyNode.remove(key); in removeProperty()
148 if (propertyNode.nodeExists(typesNode)) in removeProperty()
149 propertyNode.node(typesNode).remove(key); in removeProperty()
[all …]
/dports/deskutils/docear/docear-1.2.0.0_stable_build291/scripts/
H A DinstallScriptAddOn.groovy82 Proxy.Node propertyNode = node.map.root
129 Proxy.Node propertyNode = childNodeMap[property]
136 Proxy.Node propertyNode = childNodeMap[property]
143 Proxy.Node propertyNode = childNodeMap[property]
163 Proxy.Node propertyNode = childNodeMap[property]
164 configMap[property] = propertyNode.isLeaf() ? null : propertyNode.children[0].text
170 Proxy.Node propertyNode = childNodeMap[property]
180 Proxy.Node propertyNode = childNodeMap[property]
188 if (!propertyNode)
259 Proxy.Node propertyNode = childNodeMap[property]
[all …]
/dports/math/rocs/rocs-21.12.3/src/plugins/scriptapi/
H A Dscriptapimanager.cpp173 for (QDomElement propertyNode = root.firstChildElement("properties").firstChildElement(); in loadObjectApi() local
174 !propertyNode.isNull(); in loadObjectApi()
175 propertyNode = propertyNode.nextSiblingElement()) in loadObjectApi()
178 property->setName(propertyNode.firstChildElement("name").text()); in loadObjectApi()
179 property->setType(propertyNode.firstChildElement("type").text()); in loadObjectApi()
182 …for (QDomElement descriptionNode = propertyNode.firstChildElement("description").firstChildElement… in loadObjectApi()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/designercore/model/
H A Dabstractproperty.cpp185 NodeProperty propertyNode(name(), internalNode(), model(), view()); in toNodeProperty() local
187 if (propertyNode.isNodeProperty()) in toNodeProperty()
188 return propertyNode; in toNodeProperty()
198 SignalHandlerProperty propertyNode(name(), internalNode(), model(), view()); in toSignalHandlerProperty() local
200 if (propertyNode.isSignalHandlerProperty()) in toSignalHandlerProperty()
201 return propertyNode; in toSignalHandlerProperty()
/dports/multimedia/shotcut/shotcut-21.03.21/src/qmltypes/
H A Dqmlfilter.cpp719 QDomNode propertyNode = properties.at(j); in updateJob() local
730 QDomNode propertyNode = properties.at(j); in updateJob() local
732 filterNode.removeChild(propertyNode); in updateJob()
738 QDomElement propertyNode = dom.createElement("property"); in updateJob() local
739 propertyNode.setAttribute("name", "results"); in updateJob()
740 propertyNode.appendChild(textNode); in updateJob()
741 filterNode.appendChild(propertyNode); in updateJob()
819 QDomNode propertyNode = properties.at(j); in resultsFromXml() local
821 && propertyNode.toElement().text() == serviceName) { in resultsFromXml()
828 QDomNode propertyNode = properties.at(j); in resultsFromXml() local
[all …]
/dports/devel/kf5-solid/solid-5.89.0/src/solid/devices/backends/fakehw/
H A Dfakemanager.cpp218 QDomNode propertyNode = deviceElement.firstChild(); in parseDeviceElement() local
219 while (!propertyNode.isNull()) { in parseDeviceElement()
220 QDomElement propertyElement = propertyNode.toElement(); in parseDeviceElement()
231 propertyNode = propertyNode.nextSibling(); in parseDeviceElement()
/dports/math/vtk8/VTK-8.2.0/IO/GeoJSON/
H A DvtkGeoJSONReader.cxx302 Json::Value propertyNode = propertiesNode[spec.Name]; in ParseFeatureProperties() local
303 if (propertyNode.isNull()) in ParseFeatureProperties()
314 property.Value = vtkVariant(propertyNode.asBool()); in ParseFeatureProperties()
318 property.Value = vtkVariant(propertyNode.asDouble()); in ParseFeatureProperties()
322 property.Value = vtkVariant(propertyNode.asInt()); in ParseFeatureProperties()
326 property.Value = vtkVariant(propertyNode.asString()); in ParseFeatureProperties()
/dports/print/limereport/LimeReport-1.5.35/limereport/serializators/
H A Dlrxmlreader.cpp236 … QDomElement propertyNode = itemNode.childNodes().at(propertyIndex).toElement(); in readTranslation() local
238 propertyTranslation->propertyName = propertyNode.nodeName(); in readTranslation()
239 propertyTranslation->value = propertyNode.attribute("Value"); in readTranslation()
240 propertyTranslation->sourceValue = propertyNode.attribute("SourceValue"); in readTranslation()
241 … propertyTranslation->checked = propertyNode.attribute("Checked").compare("Y") == 0; in readTranslation()
H A Dlrxmlwriter.cpp237 QDomElement propertyNode = m_doc->createElement(property->propertyName); in saveTranslation() local
238 propertyNode.setAttribute("Value",property->value); in saveTranslation()
239 propertyNode.setAttribute("SourceValue", property->sourceValue); in saveTranslation()
240 propertyNode.setAttribute("Checked", property->checked ? "Y":"N"); in saveTranslation()
241 itemNode.appendChild(propertyNode); in saveTranslation()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity.Design/System/Data/Entity/Design/
H A DEntityDesignerUtils.cs101 foreach (XmlNode propertyNode in connectionProperties) in ExtractConceptualMappingAndStorageNodes()
103 foreach (XmlAttribute a in propertyNode.Attributes) in ExtractConceptualMappingAndStorageNodes()
108 foreach (XmlAttribute a2 in propertyNode.Attributes) in ExtractConceptualMappingAndStorageNodes()
/dports/math/vtk9/VTK-9.1.0/IO/GeoJSON/
H A DvtkGeoJSONReader.cxx284 Json::Value propertyNode = propertiesNode[spec.Name]; in ParseFeatureProperties() local
285 if (propertyNode.isNull()) in ParseFeatureProperties()
296 property.Value = vtkVariant(propertyNode.asBool()); in ParseFeatureProperties()
300 property.Value = vtkVariant(propertyNode.asDouble()); in ParseFeatureProperties()
304 property.Value = vtkVariant(propertyNode.asInt()); in ParseFeatureProperties()
308 property.Value = vtkVariant(propertyNode.asString()); in ParseFeatureProperties()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/nashorn/src/jdk/nashorn/internal/codegen/
H A DOptimisticTypesCalculator.java81 public boolean enterPropertyNode(final PropertyNode propertyNode) { in enterPropertyNode() argument
82 if(propertyNode.getKeyName().equals(ScriptObject.PROTO_PROPERTY_NAME)) { in enterPropertyNode()
83 tagNeverOptimistic(propertyNode.getValue()); in enterPropertyNode()
85 return super.enterPropertyNode(propertyNode); in enterPropertyNode()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/nashorn/src/jdk/nashorn/internal/codegen/
H A DOptimisticTypesCalculator.java81 public boolean enterPropertyNode(final PropertyNode propertyNode) { in enterPropertyNode() argument
82 if(propertyNode.getKeyName().equals(ScriptObject.PROTO_PROPERTY_NAME)) { in enterPropertyNode()
83 tagNeverOptimistic(propertyNode.getValue()); in enterPropertyNode()
85 return super.enterPropertyNode(propertyNode); in enterPropertyNode()
/dports/x11-toolkits/mygui-ogre/mygui-MyGUI3.4.0/Tools/SkinEditor/
H A DSkinExportSerializer.cpp155 pugi::xml_node propertyNode = stateNode.append_child("Property"); in writeRegion() local
156 propertyNode.append_attribute("key").set_value("TileSize"); in writeRegion()
157 propertyNode.append_attribute("value").set_value(coord.size().print().c_str()); in writeRegion()
159 propertyNode = stateNode.append_child("Property"); in writeRegion()
160 propertyNode.append_attribute("key").set_value("TileH"); in writeRegion()
161 propertyNode.append_attribute("value").set_value(MyGUI::utility::toString(tileHorz).c_str()); in writeRegion()
163 propertyNode = stateNode.append_child("Property"); in writeRegion()
164 propertyNode.append_attribute("key").set_value("TileV"); in writeRegion()
165 propertyNode.append_attribute("value").set_value(MyGUI::utility::toString(tileVert).c_str()); in writeRegion()
/dports/x11-toolkits/mygui-opengl/mygui-MyGUI3.4.0/Tools/SkinEditor/
H A DSkinExportSerializer.cpp155 pugi::xml_node propertyNode = stateNode.append_child("Property"); in writeRegion() local
156 propertyNode.append_attribute("key").set_value("TileSize"); in writeRegion()
157 propertyNode.append_attribute("value").set_value(coord.size().print().c_str()); in writeRegion()
159 propertyNode = stateNode.append_child("Property"); in writeRegion()
160 propertyNode.append_attribute("key").set_value("TileH"); in writeRegion()
161 propertyNode.append_attribute("value").set_value(MyGUI::utility::toString(tileHorz).c_str()); in writeRegion()
163 propertyNode = stateNode.append_child("Property"); in writeRegion()
164 propertyNode.append_attribute("key").set_value("TileV"); in writeRegion()
165 propertyNode.append_attribute("value").set_value(MyGUI::utility::toString(tileVert).c_str()); in writeRegion()
/dports/x11-toolkits/mygui-dummy/mygui-MyGUI3.4.0/Tools/SkinEditor/
H A DSkinExportSerializer.cpp155 pugi::xml_node propertyNode = stateNode.append_child("Property"); in writeRegion() local
156 propertyNode.append_attribute("key").set_value("TileSize"); in writeRegion()
157 propertyNode.append_attribute("value").set_value(coord.size().print().c_str()); in writeRegion()
159 propertyNode = stateNode.append_child("Property"); in writeRegion()
160 propertyNode.append_attribute("key").set_value("TileH"); in writeRegion()
161 propertyNode.append_attribute("value").set_value(MyGUI::utility::toString(tileHorz).c_str()); in writeRegion()
163 propertyNode = stateNode.append_child("Property"); in writeRegion()
164 propertyNode.append_attribute("key").set_value("TileV"); in writeRegion()
165 propertyNode.append_attribute("value").set_value(MyGUI::utility::toString(tileVert).c_str()); in writeRegion()
/dports/x11-toolkits/mygui/mygui-MyGUI3.4.0/Tools/SkinEditor/
H A DSkinExportSerializer.cpp155 pugi::xml_node propertyNode = stateNode.append_child("Property"); in writeRegion() local
156 propertyNode.append_attribute("key").set_value("TileSize"); in writeRegion()
157 propertyNode.append_attribute("value").set_value(coord.size().print().c_str()); in writeRegion()
159 propertyNode = stateNode.append_child("Property"); in writeRegion()
160 propertyNode.append_attribute("key").set_value("TileH"); in writeRegion()
161 propertyNode.append_attribute("value").set_value(MyGUI::utility::toString(tileHorz).c_str()); in writeRegion()
163 propertyNode = stateNode.append_child("Property"); in writeRegion()
164 propertyNode.append_attribute("key").set_value("TileV"); in writeRegion()
165 propertyNode.append_attribute("value").set_value(MyGUI::utility::toString(tileVert).c_str()); in writeRegion()
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/
H A DXDebugObjectValue.java26 Node propertyNode = property.item(i); in XDebugObjectValue() local
27 Variables[i] = new XDebugVariable(variable, propertyNode); in XDebugObjectValue()
H A DXDebugArrayValue.java27 Node propertyNode = property.item(i); in XDebugArrayValue() local
28 Variables[i] = new XDebugVariable(variable, propertyNode); in XDebugArrayValue()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DOptimisticTypesCalculator.java83 public boolean enterPropertyNode(final PropertyNode propertyNode) { in enterPropertyNode() argument
84 if(ScriptObject.PROTO_PROPERTY_NAME.equals(propertyNode.getKeyName())) { in enterPropertyNode()
85 tagNeverOptimistic(propertyNode.getValue()); in enterPropertyNode()
87 return super.enterPropertyNode(propertyNode); in enterPropertyNode()

12345678