Home
last modified time | relevance | path

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

/dports/cad/sumo/sumo-1.2.0/src/netedit/additionals/
H A DGNEContainerStop.cpp196 case SUMO_ATTR_STARTPOS: in getAttribute()
226 case SUMO_ATTR_STARTPOS: in setAttribute()
253 case SUMO_ATTR_STARTPOS: in isValid()
299 case SUMO_ATTR_STARTPOS: in setAttribute()
H A DGNEParkingArea.cpp186 case SUMO_ATTR_STARTPOS: in getAttribute()
232 case SUMO_ATTR_STARTPOS: in setAttribute()
263 case SUMO_ATTR_STARTPOS: in isValid()
321 case SUMO_ATTR_STARTPOS: in setAttribute()
H A DGNEChargingStation.cpp195 case SUMO_ATTR_STARTPOS: in getAttribute()
231 case SUMO_ATTR_STARTPOS: in setAttribute()
261 case SUMO_ATTR_STARTPOS: in isValid()
313 case SUMO_ATTR_STARTPOS: in setAttribute()
H A DGNEBusStop.cpp211 case SUMO_ATTR_STARTPOS: in getAttribute()
251 case SUMO_ATTR_STARTPOS: in setAttribute()
279 case SUMO_ATTR_STARTPOS: in isValid()
327 case SUMO_ATTR_STARTPOS: in setAttribute()
H A DGNEStoppingPlace.cpp107 errorStart = (toString(SUMO_ATTR_STARTPOS) + " < 0"); in getAdditionalProblem()
109 errorStart = (toString(SUMO_ATTR_STARTPOS) + " > lanes's length"); in getAdditionalProblem()
132 setAttribute(SUMO_ATTR_STARTPOS, newStartPos, myViewNet->getUndoList()); in fixAdditionalProblem()
276 …undoList->p_add(new GNEChange_Attribute(this, myViewNet->getNet(), SUMO_ATTR_STARTPOS, myStartPosi… in commitGeometryMoving()
H A DGNEAdditional.cpp333 myMove.firstOriginalLanePosition = getAttribute(SUMO_ATTR_STARTPOS); in startGeometryMoving()
H A DGNEAdditionalHandler.cpp1704 …rrier::parseAttributeFromXML<std::string>(attrs, id, SUMO_TAG_BUS_STOP, SUMO_ATTR_STARTPOS, abort); in parseAndBuildBusStop()
1748 …:parseAttributeFromXML<std::string>(attrs, id, SUMO_TAG_CONTAINER_STOP, SUMO_ATTR_STARTPOS, abort); in parseAndBuildContainerStop()
1840 …arseAttributeFromXML<std::string>(attrs, id, SUMO_TAG_CHARGING_STATION, SUMO_ATTR_STARTPOS, abort); in parseAndBuildChargingStation()
1887 …r::parseAttributeFromXML<std::string>(attrs, id, SUMO_TAG_PARKING_AREA, SUMO_ATTR_STARTPOS, abort); in parseAndBuildParkingArea()
/dports/cad/sumo/sumo-1.2.0/src/netedit/demandelements/
H A DGNEStop.cpp133 …undoList->p_add(new GNEChange_Attribute(this, myViewNet->getNet(), SUMO_ATTR_STARTPOS, toString(st… in commitGeometryMoving()
392 case SUMO_ATTR_STARTPOS: in getAttribute()
441 case SUMO_ATTR_STARTPOS: in setAttribute()
510 case SUMO_ATTR_STARTPOS: in isValid()
684 case SUMO_ATTR_STARTPOS: in setAttribute()
H A DGNEDemandElement.cpp228 myMove.firstOriginalLanePosition = getAttribute(SUMO_ATTR_STARTPOS); in startGeometryMoving()
H A DGNERouteHandler.cpp471 …stop.startPos = attrs.getOpt<double>(SUMO_ATTR_STARTPOS, nullptr, ok, MAX2(0., stop.endPos - 2 * P… in addStop()
/dports/cad/sumo/sumo-1.2.0/src/netbuild/
H A DNBParking.cpp65 device.writeAttr(SUMO_ATTR_STARTPOS, cornerDistance); in write()
H A DNBPTStop.cpp100 device.writeAttr(SUMO_ATTR_STARTPOS, myStartPos); in write()
/dports/cad/sumo/sumo-1.2.0/src/netedit/frames/
H A DGNEStopFrame.cpp417 if (GNEAttributeCarrier::canParse<double>(valuesMap[SUMO_ATTR_STARTPOS])) { in addStop()
418 … stopParameter.startPos = GNEAttributeCarrier::parse<double>(valuesMap[SUMO_ATTR_STARTPOS]); in addStop()
H A DGNEFrame.cpp2599 … valuesMap[SUMO_ATTR_STARTPOS] = toString(setStartPosition(mousePositionOverLane, lenght)); in getNeteditAttributesAndValues()
/dports/cad/sumo/sumo-1.2.0/src/netload/
H A DNLTriggerBuilder.cpp157 double frompos = attrs.getOpt<double>(SUMO_ATTR_STARTPOS, id.c_str(), ok, 0); in parseAndBuildChargingStation()
188 double frompos = attrs.getOpt<double>(SUMO_ATTR_STARTPOS, id.c_str(), ok, 0); in parseAndBuildStoppingPlace()
235 double frompos = attrs.getOpt<double>(SUMO_ATTR_STARTPOS, id.c_str(), ok, 0); in parseAndBeginParkingArea()
/dports/cad/sumo/sumo-1.2.0/src/netimport/
H A DNIXMLPTHandler.cpp118 const double startPos = attrs.get<double>(SUMO_ATTR_STARTPOS, id.c_str(), ok); in addPTStop()
/dports/cad/sumo/sumo-1.2.0/src/utils/vehicle/
H A DSUMORouteHandler.cpp304 if (attrs.hasAttribute(SUMO_ATTR_STARTPOS)) { in parseStop()
H A DSUMOVehicleParameter.cpp165 dev.writeAttr(SUMO_ATTR_STARTPOS, startPos); in write()
/dports/cad/sumo/sumo-1.2.0/src/router/
H A DRONetHandler.cpp318 myCurrentStoppingPlace->startPos = attrs.getOpt<double>(SUMO_ATTR_STARTPOS, id.c_str(), ok, 0.); in parseStoppingPlace()
H A DRORouteHandler.cpp716 …stop.startPos = attrs.getOpt<double>(SUMO_ATTR_STARTPOS, nullptr, ok, stop.endPos - 2 * POSITION_E… in addStop()
/dports/cad/sumo/sumo-1.2.0/src/utils/xml/
H A DSUMOXMLDefinitions.h764 SUMO_ATTR_STARTPOS, enumerator
H A DSUMOXMLDefinitions.cpp517 { "startPos", SUMO_ATTR_STARTPOS },
/dports/cad/sumo/sumo-1.2.0/src/netedit/
H A DGNEAttributeCarrier.cpp508 …if (canMaskStartEndPos() && (!hasAttribute(SUMO_ATTR_STARTPOS) || !hasAttribute(SUMO_ATTR_ENDPOS))… in checkTagIntegrity()
1704 attrProperty = AttributeProperties(SUMO_ATTR_STARTPOS, in fillAdditionals()
1779 attrProperty = AttributeProperties(SUMO_ATTR_STARTPOS, in fillAdditionals()
1820 attrProperty = AttributeProperties(SUMO_ATTR_STARTPOS, in fillAdditionals()
1881 attrProperty = AttributeProperties(SUMO_ATTR_STARTPOS, in fillAdditionals()
3620 attrProperty = AttributeProperties(SUMO_ATTR_STARTPOS, in fillDemandElements()
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSRouteHandler.cpp999 …stop.startPos = attrs.getOpt<double>(SUMO_ATTR_STARTPOS, nullptr, ok, MAX2(0., stop.endPos - 2 * P… in addStop()
H A DMSVehicle.cpp949 dev.writeAttr(SUMO_ATTR_STARTPOS, pars.startPos); in write()