Eclipse SUMO - Simulation of Urban MObility
ToString.h File Reference
#include <sstream>
#include <string>
#include <iomanip>
#include <algorithm>
#include <list>
#include <utils/xml/SUMOXMLDefinitions.h>
#include <utils/common/SUMOVehicleClass.h>
#include <utils/common/Named.h>
#include <utils/distribution/Distribution_Parameterized.h>
#include "StdDefs.h"
Include dependency graph for ToString.h:

Go to the source code of this file.

Functions

template<typename T , typename C , typename T_BETWEEN >
std::string joinNamedToString (const std::set< T *, C > &ns, const T_BETWEEN &between)
 
template<typename T , typename T_BETWEEN >
std::string joinNamedToStringSorting (const std::set< T * > &ns, const T_BETWEEN &between)
 
template<typename KEY , typename VAL , typename T_BETWEEN , typename T_BETWEEN_KEYVAL >
std::string joinToString (const std::map< KEY, VAL > &s, const T_BETWEEN &between, const T_BETWEEN_KEYVAL &between_keyval, std::streamsize accuracy=gPrecision)
 
template<typename T , typename T_BETWEEN >
std::string joinToString (const std::set< T > &s, const T_BETWEEN &between, std::streamsize accuracy=gPrecision)
 
template<typename T , typename T_BETWEEN >
std::string joinToString (const std::vector< T > &v, const T_BETWEEN &between, std::streamsize accuracy=gPrecision)
 
template<typename T , typename T_BETWEEN >
std::string joinToStringSorting (const std::vector< T > &v, const T_BETWEEN &between, std::streamsize accuracy=gPrecision)
 
template<typename T >
std::string toHex (const T i, std::streamsize numDigits=0)
 
std::string toString (const Named *obj, std::streamsize accuracy)
 
template<typename V >
std::string toString (const std::list< V * > &v, std::streamsize accuracy=gPrecision)
 
template<>
std::string toString (const std::map< std::string, std::string > &v, std::streamsize)
 
template<>
std::string toString (const std::set< std::string > &v, std::streamsize)
 
template<typename V >
std::string toString (const std::set< V * > &v, std::streamsize accuracy=gPrecision)
 
template<>
std::string toString (const std::vector< double > &v, std::streamsize accuracy)
 
template<>
std::string toString (const std::vector< int > &v, std::streamsize accuracy)
 
template<>
std::string toString (const std::vector< long long int > &v, std::streamsize accuracy)
 
template<>
std::string toString (const std::vector< std::string > &v, std::streamsize)
 
template<typename V >
std::string toString (const std::vector< V * > &v, std::streamsize accuracy=gPrecision)
 
template<class T >
std::string toString (const T &t, std::streamsize accuracy=gPrecision)
 
template<typename V >
std::string toString (const typename std::list< V * >::const_iterator &b, const typename std::list< V * >::const_iterator &e, std::streamsize accuracy=gPrecision)
 
template<typename V >
std::string toString (const typename std::vector< V * >::const_iterator &b, const typename std::vector< V * >::const_iterator &e, std::streamsize accuracy=gPrecision)
 
template<>
std::string toString< Distribution_Parameterized > (const Distribution_Parameterized &dist, std::streamsize accuracy)
 
template<>
std::string toString< FringeType > (const FringeType &fringeType, std::streamsize accuracy)
 
template<>
std::string toString< LaneChangeAction > (const LaneChangeAction &action, std::streamsize accuracy)
 
template<>
std::string toString< LaneChangeModel > (const LaneChangeModel &model, std::streamsize accuracy)
 
template<>
std::string toString< LaneSpreadFunction > (const LaneSpreadFunction &lsf, std::streamsize accuracy)
 
template<>
std::string toString< LateralAlignment > (const LateralAlignment &latA, std::streamsize accuracy)
 
template<>
std::string toString< LinkDirection > (const LinkDirection &linkDir, std::streamsize accuracy)
 
template<>
std::string toString< LinkState > (const LinkState &linkState, std::streamsize accuracy)
 
template<>
std::string toString< PersonMode > (const PersonMode &personMode, std::streamsize accuracy)
 
template<>
std::string toString< RightOfWay > (const RightOfWay &row, std::streamsize accuracy)
 
template<>
std::string toString< SUMOVehicleClass > (const SUMOVehicleClass &vClass, std::streamsize accuracy)
 
template<>
std::string toString< SumoXMLAttr > (const SumoXMLAttr &attr, std::streamsize accuracy)
 
template<>
std::string toString< SumoXMLEdgeFunc > (const SumoXMLEdgeFunc &edgeFunc, std::streamsize accuracy)
 
template<>
std::string toString< SumoXMLNodeType > (const SumoXMLNodeType &nodeType, std::streamsize accuracy)
 
template<>
std::string toString< SumoXMLTag > (const SumoXMLTag &tag, std::streamsize accuracy)
 
template<>
std::string toString< TrafficLightLayout > (const TrafficLightLayout &layout, std::streamsize accuracy)
 
template<>
std::string toString< TrafficLightType > (const TrafficLightType &type, std::streamsize accuracy)
 

Detailed Description

Author
Christian Roessel
Daniel Krajzewicz
Jakob Erdmann
Michael Behrisch
Date
Wed, 23 Sep 2002

Definition in file ToString.h.

Function Documentation

◆ joinNamedToString()

template<typename T , typename C , typename T_BETWEEN >
std::string joinNamedToString ( const std::set< T *, C > &  ns,
const T_BETWEEN &  between 
)
inline

◆ joinNamedToStringSorting()

template<typename T , typename T_BETWEEN >
std::string joinNamedToStringSorting ( const std::set< T * > &  ns,
const T_BETWEEN &  between 
)
inline

Definition at line 274 of file ToString.h.

References Named::getIDSecure(), and joinToStringSorting().

Referenced by NBNodeShapeComputer::computeUniqueDirectionList().

Here is the caller graph for this function:

◆ joinToString() [1/3]

template<typename KEY , typename VAL , typename T_BETWEEN , typename T_BETWEEN_KEYVAL >
std::string joinToString ( const std::map< KEY, VAL > &  s,
const T_BETWEEN &  between,
const T_BETWEEN_KEYVAL &  between_keyval,
std::streamsize  accuracy = gPrecision 
)
inline

Definition at line 351 of file ToString.h.

References toString().

◆ joinToString() [2/3]

template<typename T , typename T_BETWEEN >
std::string joinToString ( const std::set< T > &  s,
const T_BETWEEN &  between,
std::streamsize  accuracy = gPrecision 
)
inline

Definition at line 323 of file ToString.h.

References toString().

◆ joinToString() [3/3]

template<typename T , typename T_BETWEEN >
std::string joinToString ( const std::vector< T > &  v,
const T_BETWEEN &  between,
std::streamsize  accuracy = gPrecision 
)
inline

Definition at line 250 of file ToString.h.

References toString().

Referenced by NBRailwayTopologyAnalyzer::addBidiEdgesBetweenSwitches(), NIXMLNodesHandler::addJoinCluster(), NBRailwayTopologyAnalyzer::assignDirectionPriority(), NIImporter_OpenDrive::OpenDriveLaneSection::buildLaneMapping(), NIImporter_OpenDrive::OpenDriveLaneSection::buildSpeedChanges(), GUISUMOAbstractView::checkSnapshots(), GNEAdditionalFrame::E2MultilaneLaneSelector::createPath(), NBNodeCont::feasibleCluster(), MSNet::generateStatistics(), GNEBusStop::getAttribute(), GNEContainerStop::getAttribute(), GNEPersonTrip::getAttribute(), GNERide::getAttribute(), GUIBaseVehicle::getDeviceDescription(), GNEAdditionalFrame::SelectorChildEdges::getEdgeIdsSelected(), GNEAdditionalFrame::SelectorChildLanes::getLaneIdsSelected(), GUIBusStop::getParameterWindow(), MSStageDriving::getStageDescription(), MSStageDriving::getStageSummary(), Option_IntVector::getValueString(), Option_StringVector::getValueString(), getVehicleClassNames(), MSStageDriving::getWaitingDescription(), MSActuatedTrafficLightLogic::init(), GNECrossingFrame::CrossingParameters::invertEdges(), joinNamedToString(), joinToStringSorting(), GNECrossingFrame::CrossingParameters::markEdge(), MSDevice_SSM::MSDevice_SSM(), GNEAllowDisallow::onCmdAccept(), GNEAttributeCarrier::parseIDs(), OptionsCont::relocateFiles(), GNEJunction::removeEdgeFromCrossings(), NBEdge::replaceInConnections(), MSTriggeredRerouter::rerouteParkingArea(), NBRailwayTopologyAnalyzer::reverseEdges(), NIImporter_OpenDrive::setEdgeLinks2(), GNEAdditionalFrame::SelectorParentLanes::stopConsecutiveLaneSelector(), Distribution_Parameterized::toStr(), toString(), GNETAZFrame::TAZSelectionStatistics::updateStatistics(), NIImporter_OpenStreetMap::usableType(), GNECrossingFrame::CrossingParameters::useSelectedEdges(), MSRailSignal::DriveWay::writeBlocks(), NWWriter_SUMO::writeInternalNodes(), NWWriter_XML::writeNodes(), and NWWriter_SUMO::writeRoundabout().

Here is the caller graph for this function:

◆ joinToStringSorting()

template<typename T , typename T_BETWEEN >
std::string joinToStringSorting ( const std::vector< T > &  v,
const T_BETWEEN &  between,
std::streamsize  accuracy = gPrecision 
)
inline

Definition at line 266 of file ToString.h.

References joinToString().

Referenced by joinNamedToStringSorting(), NIImporter_OpenStreetMap::EdgesHandler::myStartElement(), and toString().

Here is the caller graph for this function:

◆ toHex()

template<typename T >
std::string toHex ( const T  i,
std::streamsize  numDigits = 0 
)
inline

Definition at line 54 of file ToString.h.

Referenced by TraCIServerAPI_GUI::processGet(), TraCIServerAPI_BusStop::processGet(), TraCIServerAPI_Calibrator::processGet(), TraCIServerAPI_ChargingStation::processGet(), TraCIServerAPI_Edge::processGet(), TraCIServerAPI_InductionLoop::processGet(), TraCIServerAPI_Junction::processGet(), TraCIServerAPI_Lane::processGet(), TraCIServerAPI_LaneArea::processGet(), TraCIServerAPI_MeanData::processGet(), TraCIServerAPI_MultiEntryExit::processGet(), TraCIServerAPI_OverheadWire::processGet(), TraCIServerAPI_ParkingArea::processGet(), TraCIServerAPI_Person::processGet(), TraCIServerAPI_POI::processGet(), TraCIServerAPI_Polygon::processGet(), TraCIServerAPI_Rerouter::processGet(), TraCIServerAPI_Route::processGet(), TraCIServerAPI_RouteProbe::processGet(), TraCIServerAPI_Simulation::processGet(), TraCIServerAPI_TrafficLight::processGet(), TraCIServerAPI_VariableSpeedSign::processGet(), TraCIServerAPI_Vehicle::processGet(), TraCIServerAPI_VehicleType::processGet(), TraCIServerAPI_GUI::processSet(), TraCIServerAPI_BusStop::processSet(), TraCIServerAPI_Calibrator::processSet(), TraCIServerAPI_ChargingStation::processSet(), TraCIServerAPI_Edge::processSet(), TraCIServerAPI_Lane::processSet(), TraCIServerAPI_OverheadWire::processSet(), TraCIServerAPI_ParkingArea::processSet(), TraCIServerAPI_Person::processSet(), TraCIServerAPI_POI::processSet(), TraCIServerAPI_Polygon::processSet(), TraCIServerAPI_Rerouter::processSet(), TraCIServerAPI_Route::processSet(), TraCIServerAPI_RouteProbe::processSet(), TraCIServerAPI_Simulation::processSet(), TraCIServerAPI_TrafficLight::processSet(), TraCIServerAPI_VariableSpeedSign::processSet(), TraCIServerAPI_Vehicle::processSet(), TraCIServerAPI_VehicleType::processSet(), and TraCIServer::writeStatusCmd().

Here is the caller graph for this function:

◆ toString() [1/13]

std::string toString ( const Named obj,
std::streamsize  accuracy 
)
inline

Definition at line 62 of file ToString.h.

References Named::getIDSecure(), and UNUSED_PARAMETER.

◆ toString() [2/13]

template<typename V >
std::string toString ( const std::list< V * > &  v,
std::streamsize  accuracy = gPrecision 
)
inline

Definition at line 210 of file ToString.h.

◆ toString() [3/13]

template<>
std::string toString ( const std::map< std::string, std::string > &  v,
std::streamsize   
)
inline

Definition at line 367 of file ToString.h.

References joinToString().

◆ toString() [4/13]

template<>
std::string toString ( const std::set< std::string > &  v,
std::streamsize   
)
inline

Definition at line 345 of file ToString.h.

References joinToString().

◆ toString() [5/13]

template<typename V >
std::string toString ( const std::set< V * > &  v,
std::streamsize  accuracy = gPrecision 
)
inline

Definition at line 294 of file ToString.h.

References joinToStringSorting(), and UNUSED_PARAMETER.

◆ toString() [6/13]

template<>
std::string toString ( const std::vector< double > &  v,
std::streamsize  accuracy 
)
inline

Definition at line 317 of file ToString.h.

References joinToString().

◆ toString() [7/13]

template<>
std::string toString ( const std::vector< int > &  v,
std::streamsize  accuracy 
)
inline

Definition at line 305 of file ToString.h.

References joinToString().

◆ toString() [8/13]

template<>
std::string toString ( const std::vector< long long int > &  v,
std::streamsize  accuracy 
)
inline

Definition at line 311 of file ToString.h.

References joinToString().

◆ toString() [9/13]

template<>
std::string toString ( const std::vector< std::string > &  v,
std::streamsize   
)
inline

Definition at line 339 of file ToString.h.

References joinToString().

◆ toString() [10/13]

template<typename V >
std::string toString ( const std::vector< V * > &  v,
std::streamsize  accuracy = gPrecision 
)
inline

Definition at line 192 of file ToString.h.

◆ toString() [11/13]

template<class T >
std::string toString ( const T &  t,
std::streamsize  accuracy = gPrecision 
)
inline

Template for conversions from origin format to string representation (when supplied by c++/the stl)

Definition at line 44 of file ToString.h.

Referenced by MSDevice_ToC::_2string(), NIImporter_SUMO::_loadNetwork(), MSLCM_LC2013::_patchSpeed(), MSLCM_LC2013::_wantsChange(), MSLCM_SL2015::_wantsChangeSublane(), MSLaneChangerSublane::abortLCManeuver(), LIBSUMO_NAMESPACE::Person::add(), MSDevice_SSM::Encounter::add(), ODMatrix::add(), MSDetectorControl::add(), IntermodalNetwork< E, L, N, V >::addAccess(), NLTriggerBuilder::addAccess(), SUMORTree::addAdditionalGLObject(), NBRailwayTopologyAnalyzer::addBidiEdgesBetweenSwitches(), NBRailwayTopologyAnalyzer::addBidiEdgesForBufferStops(), NBRailwayTopologyAnalyzer::addBidiEdgesForStops(), NBRailwayTopologyAnalyzer::addBidiEdgesForStraightConnectivity(), NIImporter_SUMO::addConnection(), NLHandler::addConnection(), NBLoadedSUMOTLDef::addConnection(), NIXMLConnectionsHandler::addCrossing(), GNETagProperties::addDeprecatedAttribute(), NLHandler::addDistrict(), RORouteHandler::addFlowPerson(), MSRouteHandler::addFlowPerson(), GNEJunction::addIncomingGNEEdge(), GNEFixAdditionalElements::AdditionalList::AdditionalList(), NIImporter_SUMO::addLane(), NIXMLEdgesHandler::addLane(), GNEEdgeType::addLaneType(), NLJunctionControlBuilder::addLogicItem(), MSLane::addNeigh(), GNEJunction::addOutgoingGNEEdge(), MSTractionSubstation::addOverheadWireClampToCircuit(), NLHandler::addPhase(), PCLoaderOSM::addPOI(), GNEPolygonFrame::addPOI(), ShapeHandler::addPOI(), GNEPolygonFrame::addPOILane(), PCLoaderOSM::addPolygon(), GNEPolygonFrame::addPolygon(), GNENetHelper::AttributeCarriers::addPolygon(), NIXMLPTHandler::addPTLineStop(), MSDispatch_TraCI::addReservation(), NBEdge::addRestrictedLane(), GNEViewNet::addRestrictedLane(), GNENet::addReversedEdge(), NBEdgeCont::addRoundabout(), NIXMLPTHandler::addRouteStop(), NIXMLEdgesHandler::addSplit(), NBTrafficLightLogic::addStep(), MSRouteHandler::addStop(), GNERouteHandler::addStop(), RONet::addStoppingPlace(), TraCIServer::addSubscriptionFilter(), TraCIServer::addSubscriptionFilterDownstreamDistance(), TraCIServer::addSubscriptionFilterFieldOfVision(), TraCIServer::addSubscriptionFilterLanes(), TraCIServer::addSubscriptionFilterLateralDistance(), LIBSUMO_NAMESPACE::Vehicle::addSubscriptionFilterLCManeuver(), TraCIServer::addSubscriptionFilterUpstreamDistance(), TraCIServer::addSubscriptionFilterVClass(), TraCIServer::addSubscriptionFilterVType(), NIXMLTrafficLightsHandler::addTlConnection(), NIVissimTL::NIVissimTLSignal::addTo(), ROPerson::addTrip(), GNEVehicleFrame::addVehicle(), RailEdge< E, V >::addVirtualTurns(), NBPTLine::addWayNode(), NBNodeCont::analyzeCluster(), MSTransportable::appendStage(), NIImporter_OpenStreetMap::RelationHandler::applyRestriction(), libsumo::Helper::applySubscriptionFilterFieldOfVision(), libsumo::Helper::applySubscriptionFilterLateralDistanceSinglePass(), libsumo::Helper::applySubscriptionFilters(), GNEFrameAttributesModuls::AttributesCreatorFlow::AttributesCreatorFlow(), GNEFrameAttributesModuls::AttributesEditorFlow::AttributesEditorFlow(), NBNodeShapeComputer::badIntersection(), SUMOVehicleParserHelper::beginVTypeParsing(), NLEdgeControlBuilder::build(), MSAbstractLaneChangeModel::build(), MSVehicleType::build(), GNEAdditionalHandler::buildAccess(), GNEAdditionalFrame::buildAdditionalCommonAttributes(), GNEAdditionalFrame::buildAdditionalOverEdge(), GNEAdditionalFrame::buildAdditionalOverLane(), GNEAdditionalFrame::buildAdditionalOverView(), GNEVehicleTypeDialog::VTypeAtributes::buildAttributesA(), GNEAdditionalHandler::buildBusStop(), GNEAdditionalHandler::buildCalibrator(), GNEAdditionalHandler::buildChargingStation(), GNEConnectorFrame::buildConnection(), NIImporter_OpenDrive::buildConnectionsToOuter(), GNEAdditionalHandler::buildContainerStop(), CHBuilder< E, V >::buildContractionHierarchy(), NBNode::buildCrossings(), NBNode::buildCrossingsAndWalkingAreas(), GNEDataHandler::buildDataInterval(), GNEDataHandler::buildDataSet(), GNEAdditionalHandler::buildDetectorE1(), GNEAdditionalHandler::buildDetectorE1Instant(), GNEAdditionalHandler::buildDetectorE3(), GNEAdditionalHandler::buildDetectorEntry(), GNEAdditionalHandler::buildDetectorExit(), MSRailSignal::LinkInfo::buildDriveWay(), NIVissimConnection::buildEdgeConnections(), GNEDataHandler::buildEdgeData(), RODFNet::buildEdgeFlowMap(), GNELane::buildEdgeOperations(), GNEDataHandler::buildEdgeRelationData(), GNERouteHandler::buildFlow(), GNERouteHandler::buildFlowEmbeddedRoute(), GNERouteHandler::buildFlowOverRoute(), NBEdge::buildInnerEdges(), GNETLSEditorFrame::buildInternalLanes(), GNELane::buildLaneOperations(), GNEAdditionalHandler::buildMultiLaneDetectorE2(), NIVissimEdge::buildNBEdge(), GNEAdditionalHandler::buildParkingArea(), GNEAdditionalHandler::buildParkingSpace(), GNEPersonFrame::buildPerson(), GNERouteHandler::buildPerson(), GNERouteHandler::buildPersonFlow(), GNERouteHandler::buildPersonStop(), GNERouteHandler::buildPersonTrip(), GNEAdditionalHandler::buildRerouter(), GNEAdditionalHandler::buildRerouterInterval(), GNERouteHandler::buildRide(), MSRailSignal::DriveWay::buildRoute(), NLDetectorBuilder::buildRouteProbe(), GNEAdditionalHandler::buildRouteProbe(), MELoop::buildSegmentsFor(), GNEAdditionalHandler::buildSingleLaneDetectorE2(), GNEAdditionalFrame::buildSlaveAdditional(), LIBSUMO_NAMESPACE::Vehicle::buildStopParameters(), GUITriggerBuilder::buildStoppingPlace(), NLTriggerBuilder::buildStoppingPlace(), MSFrame::buildStreams(), GNEAdditionalHandler::buildTAZ(), GNEDataHandler::buildTAZRelationData(), GNEAdditionalHandler::buildTAZSink(), GNEAdditionalHandler::buildTAZSource(), GNERouteHandler::buildTrip(), GNEAdditionalHandler::buildVaporizer(), GNEAdditionalHandler::buildVariableSpeedSign(), GNEAllowDisallow::buildVClass(), MSDevice_Battery::buildVehicleDevices(), MSDevice_ElecHybrid::buildVehicleDevices(), MSDevice_Taxi::buildVehicleDevices(), GNERouteHandler::buildVehicleEmbeddedRoute(), GNERouteHandler::buildVehicleOverRoute(), GNERouteHandler::buildWalk(), NBNode::buildWalkingAreas(), MSBaseVehicle::calculateArrivalParams(), GNEVehicleTypeDialog::CarFollowingModelParameters::CarFollowingModelRow::CarFollowingModelRow(), MSLaneChangerSublane::change(), GNEPoly::changeFirstGeometryPoint(), MSLaneChanger::changeOpposite(), MELoop::changeSegment(), GNEConnection::changeTLIndex(), MSLCM_SL2015::checkBlockingVehicles(), MSLaneChanger::checkChange(), MSLaneChangerSublane::checkChangeSublane(), GNEDetectorE3::checkChildAdditionalRestriction(), Circuit::checkCircuit(), NBNode::checkCrossing(), NIImporter_OpenStreetMap::RelationHandler::checkEdgeRef(), MSRailSignal::DriveWay::checkFlanks(), RONet::checkFlows(), GUIApplicationWindow::checkGamingEventsDRT(), NBEdge::checkGeometry(), NBEdgeCont::checkGrade(), NWWriter_OpenDrive::checkLaneGeometries(), MSFrame::checkOptions(), NBFrame::checkOptions(), NGFrame::checkOptions(), NBEdgeCont::checkOverlap(), MSDevice_Battery::checkParam(), MSDevice_ElecHybrid::checkParam(), GNEAttributeCarrier::checkParsedAttribute(), MSSOTLTrafficLightLogic::checkPhases(), MSE2Collector::checkPositioning(), MSVehicle::checkReversal(), NLDetectorBuilder::checkSampleInterval(), GUISUMOAbstractView::checkSnapshots(), MSAbstractLaneChangeModel::checkTraCICommands(), MSLaneChanger::checkTraCICommands(), GNENet::cleanInvalidCrossings(), MsgHandler::clear(), GNERouteHandler::closePerson(), GNERouteHandler::closeRoute(), NLJunctionControlBuilder::closeTrafficLightLogic(), MSRouteHandler::closeVehicle(), GNERouteHandler::closeVType(), NBTrafficLightDefinition::collectAllLinks(), NBLoadedSUMOTLDef::collectEdgeVectors(), GNEInternalLane::colorForLinksState(), GNEPersonStop::commitGeometryMoving(), GNEPersonTrip::commitGeometryMoving(), GNERide::commitGeometryMoving(), GNEStop::commitGeometryMoving(), GNEWalk::commitGeometryMoving(), GNEAccess::commitMoveShape(), GNEDetector::commitMoveShape(), GNEDetectorE3::commitMoveShape(), GNEParkingSpace::commitMoveShape(), GNEPOI::commitMoveShape(), GNEPoly::commitMoveShape(), GNERerouter::commitMoveShape(), GNEStoppingPlace::commitMoveShape(), GNETAZ::commitMoveShape(), GNEVariableSpeedSign::commitMoveShape(), GNEConnection::commitMoveShape(), GNECrossing::commitMoveShape(), GNEEdge::commitMoveShape(), GNEJunction::commitMoveShape(), NBNodeShapeComputer::compute(), IntermodalRouter< E, L, N, V >::compute(), AStarRouter< E, V >::compute(), CHRouter< E, V >::compute(), DijkstraRouter< E, V >::compute(), RailwayRouter< E, V >::compute(), PedestrianRouter< E, L, N, V >::compute(), NBNetBuilder::compute(), ODMatrix::computeDeparts(), MSDispatch::computeDetourTime(), MSDispatch_Greedy::computeDispatch(), MSDispatch_GreedyClosest::computeDispatch(), MSLink::computeDistToDivergence(), MSDevice_SSM::computeDRAC(), NBNode::computeLogic(), NBOwnTLDef::computeLogicAndConts(), ROMAAssignments::computePath(), computeRoutes(), NIImporter_OpenDrive::computeShapes(), MSDevice_SSM::computeSSMs(), RODFNet::computeTypes(), MSRailSignal::DriveWay::conflictLaneOccupied(), GNEAllowDisallow::constructor(), NBPTLineCont::constructRoute(), GNESelectorFrame::LockGLObjectTypes::ObjectTypeEntry::counterDown(), GNESelectorFrame::LockGLObjectTypes::ObjectTypeEntry::counterUp(), NGNet::createChequerBoard(), GNENet::createEdge(), GNEVehicleFrame::createPath(), GNEAdditionalFrame::E2MultilaneLaneSelector::createPath(), GNENet::createRoundabout(), GNECrossingFrame::CrossingParameters::CrossingParameters(), GLHelper::debugVertices(), MSAbstractLaneChangeModel::decideDirection(), MSLCM_SL2015::decideDirection(), MSActuatedTrafficLightLogic::decideNextPhase(), GNEReferenceCounter::decRef(), GNENet::deleteConnection(), NIXMLEdgesHandler::deleteEdge(), GNENet::deleteEdge(), GNEPoly::deleteGeometryPoint(), GNENet::deleteJunction(), GNENet::deleteLane(), NIXMLNodesHandler::deleteNode(), NBTrafficLightLogic::deletePhase(), GNEViewNet::deleteSelectedConnections(), GNEViewNet::deleteSelectedCrossings(), GNEViewNet::deleteSelectedEdges(), GNEViewNet::deleteSelectedJunctions(), GNEViewNet::deleteSelectedLanes(), GNEFixDemandElements::DemandList::DemandList(), GUISelectedStorage::deselect(), MSLane::detectCollisions(), MSInsertionControl::determineCandidates(), MSDevice_SSM::determineTTCandDRAC(), MSDispatch_Greedy::dispatch(), MSDispatch_GreedyShared::dispatch(), MSDispatch_RouteExtension::dispatch(), TraCIServer::dispatchCommand(), MSDevice_Taxi::dispatchShared(), GUISUMOAbstractView::displayColorLegend(), NBEdge::divideOnEdges(), NBEdge::divideSelectedLanesOnEdges(), GNEEdge::drawEdgeGeometryPoints(), GNEEdge::drawEdgeName(), GUISUMOAbstractView::drawFPS(), GNEGeometry::drawGeometryPoints(), GUICalibrator::drawGL(), GUIChargingStation::drawGL(), GUIEdge::drawGL(), GUIJunctionWrapper::drawGL(), GUIOverheadWire::drawGL(), GUIPerson::drawGL(), GUITriggeredRerouter::GUITriggeredRerouterEdge::drawGL(), GNEChargingStation::drawGL(), GNERerouterSymbol::drawGL(), GNEPerson::drawGL(), GNEJunction::drawGL(), GNELane::drawLane2LaneConnections(), GUIBaseVehicle::drawLinkItem(), GUILane::drawLinkNo(), GNELane::drawLinkNo(), GUIBaseVehicle::drawOnPos(), GUIVehicle::drawRouteHelper(), GNEVehicle::drawStackLabel(), GNEViewNetHelper::TestingMode::drawTestingElements(), GNELane::drawTLSLinkNo(), GUILane::drawTLSLinkNo(), GNECrossing::drawTLSLinkNo(), GUIParameterTracker::GUIParameterTrackerPanel::drawValue(), GUITLLogicPhasesTrackerWindow::drawValues(), GNENet::duplicateLane(), GNECrossingFrame::EdgesSelector::EdgesSelector(), GNECreateEdgeFrame::EdgeTypeParameters::EdgeTypeParameters(), GNEEdge::editEndpoint(), elapsedMs2string(), GNEPersonStop::enableAttribute(), GNEStop::enableAttribute(), GNESelectorFrame::MatchGenericDataAttribute::enableMatchGenericDataAttribute(), NLDetectorBuilder::endE3Detector(), MSE3Collector::enter(), MSVehicle::enterLaneAtLaneChange(), OptionsLoader::error(), MSDevice_SSM::estimateConflictTimes(), NBNode::ApproachingDivider::execute(), MSVehicle::executeMove(), NBEdge::expandableBy(), NBRailwayTopologyAnalyzer::extendBidiEdges(), NIImporter_OpenStreetMap::extendRailwayDistances(), OptionsLoader::fatalError(), NBNodeCont::feasibleCluster(), GNEAttributeCarrier::fillAdditionals(), GNEAttributeCarrier::fillCommonFlowAttributes(), GNEAttributeCarrier::fillCommonPersonAttributes(), GNEAttributeCarrier::fillCommonVehicleAttributes(), GNEAttributeCarrier::fillDataElements(), GNEAttributeCarrier::fillDemandElements(), GNEAttributeCarrier::fillNetworkElements(), GNEAttributeCarrier::fillPersonElements(), GNEAttributeCarrier::fillPersonPlanBusStopBusStop(), GNEAttributeCarrier::fillPersonPlanBusStopEdge(), GNEAttributeCarrier::fillPersonPlanBusStopStop(), GNEAttributeCarrier::fillPersonPlanEdgeBusStop(), GNEAttributeCarrier::fillPersonPlanEdgeEdge(), GNEAttributeCarrier::fillPersonPlanEdgeStop(), GNEAttributeCarrier::fillPersonPlanStopBusStop(), GNEAttributeCarrier::fillPersonPlanStopEdge(), GNEAttributeCarrier::fillPersonPlanStopStop(), GNEAttributeCarrier::fillRideAttributes(), GNEAttributeCarrier::fillShapes(), GNEAttributeCarrier::fillVehicleElements(), GNEVehicleTypeDialog::VTypeAtributes::VTypeAttributeRow::filterAttributeName(), MSCFModel_Daniel1::finalizeSpeed(), NIImporter_OpenStreetMap::RelationHandler::findEdgeRef(), MSRailSignal::DriveWay::findFlankProtection(), MSDevice_SSM::findFoeConflictLane(), LIBSUMO_NAMESPACE::Simulation::findIntermodalRoute(), MSRailSignal::DriveWay::findProtection(), MSDevice_SSM::findSurroundingVehicles(), NBPTLineCont::findWay(), GNEDetectorE1::fixAdditionalProblem(), GNEDetectorE1Instant::fixAdditionalProblem(), GNEDetectorE2::fixAdditionalProblem(), GNEDetectorEntryExit::fixAdditionalProblem(), GNEStoppingPlace::fixAdditionalProblem(), NBPTLineCont::fixBidiStops(), MSDevice_SSM::flushGlobalMeasures(), MSRailSignal::formatVisitedMap(), GNENet::generateAdditionalID(), NBPTStopCont::generateBidiStops(), GNEPOI::generateChildID(), GNEPoly::generateChildID(), GNETAZElement::generateChildID(), GNENet::generateDataSetID(), GNENet::generateDemandElementID(), GNENet::generateEdgeTypeID(), GNEAdditionalFrame::generateID(), MSDevice_Example::generateOutput(), MSDevice_Taxi::generateOutput(), MSDevice_Tripinfo::generateOutput(), GNENet::generateShapeID(), MSNet::generateStatistics(), GNENet::generateTAZElementID(), GNEInspectorFrame::GEOAttributesEditor::GEOAttributesEditor(), NIImporter_OpenDrive::geomFromSpiral(), GNEAdditionalHandler::LastInsertedElement::getAdditionalParent(), GNEDetectorE1::getAdditionalProblem(), GNEDetectorE1Instant::getAdditionalProblem(), GNEDetectorE2::getAdditionalProblem(), GNEDetectorEntryExit::getAdditionalProblem(), GNEStoppingPlace::getAdditionalProblem(), GNEAttributeCarrier::getAllowedTagsByCategory(), SUMOVehicleParameter::getArrivalLane(), SUMOVehicleParameter::getArrivalPos(), SUMOVehicleParameter::getArrivalPosLat(), SUMOVehicleParameter::getArrivalSpeed(), MSAbstractLaneChangeModel::getAssumedDecelForLaneChangeDuration(), GNEAccess::getAttribute(), GNEBusStop::getAttribute(), GNECalibrator::getAttribute(), GNECalibratorFlow::getAttribute(), GNEChargingStation::getAttribute(), GNEClosingLaneReroute::getAttribute(), GNEClosingReroute::getAttribute(), GNEContainerStop::getAttribute(), GNEDestProbReroute::getAttribute(), GNEDetectorE1::getAttribute(), GNEDetectorE1Instant::getAttribute(), GNEDetectorE2::getAttribute(), GNEDetectorE3::getAttribute(), GNEDetectorEntryExit::getAttribute(), GNEParkingArea::getAttribute(), GNEParkingAreaReroute::getAttribute(), GNEParkingSpace::getAttribute(), GNEPOI::getAttribute(), GNEPoly::getAttribute(), GNERerouter::getAttribute(), GNERerouterInterval::getAttribute(), GNERerouterSymbol::getAttribute(), GNERouteProbe::getAttribute(), GNERouteProbReroute::getAttribute(), GNETAZ::getAttribute(), GNETAZSourceSink::getAttribute(), GNEVaporizer::getAttribute(), GNEVariableSpeedSign::getAttribute(), GNEVariableSpeedSignStep::getAttribute(), GNEVariableSpeedSignSymbol::getAttribute(), GNEDataInterval::getAttribute(), GNEDataSet::getAttribute(), GNEEdgeData::getAttribute(), GNEEdgeRelData::getAttribute(), GNETAZRelData::getAttribute(), GNEPerson::getAttribute(), GNEPersonStop::getAttribute(), GNEPersonTrip::getAttribute(), GNERide::getAttribute(), GNERoute::getAttribute(), GNEStop::getAttribute(), GNEVehicle::getAttribute(), GNEVehicleType::getAttribute(), GNEWalk::getAttribute(), GNEConnection::getAttribute(), GNECrossing::getAttribute(), GNEEdge::getAttribute(), GNEEdgeType::getAttribute(), GNEInternalLane::getAttribute(), GNEJunction::getAttribute(), GNELane::getAttribute(), GNELaneType::getAttribute(), GNEAccess::getAttributeDouble(), GNECalibrator::getAttributeDouble(), GNECalibratorFlow::getAttributeDouble(), GNEClosingLaneReroute::getAttributeDouble(), GNEClosingReroute::getAttributeDouble(), GNEDestProbReroute::getAttributeDouble(), GNEDetector::getAttributeDouble(), GNEDetectorE3::getAttributeDouble(), GNEParkingAreaReroute::getAttributeDouble(), GNEParkingSpace::getAttributeDouble(), GNERerouter::getAttributeDouble(), GNERerouterInterval::getAttributeDouble(), GNERouteProbe::getAttributeDouble(), GNERouteProbReroute::getAttributeDouble(), GNEStoppingPlace::getAttributeDouble(), GNETAZ::getAttributeDouble(), GNETAZSourceSink::getAttributeDouble(), GNEVaporizer::getAttributeDouble(), GNEVariableSpeedSign::getAttributeDouble(), GNEVariableSpeedSignStep::getAttributeDouble(), GNEDataInterval::getAttributeDouble(), GNEDataSet::getAttributeDouble(), GNEEdgeData::getAttributeDouble(), GNEEdgeRelData::getAttributeDouble(), GNETAZRelData::getAttributeDouble(), GNEPerson::getAttributeDouble(), GNEPersonStop::getAttributeDouble(), GNEPersonTrip::getAttributeDouble(), GNERide::getAttributeDouble(), GNEStop::getAttributeDouble(), GNEVehicle::getAttributeDouble(), GNEVehicleType::getAttributeDouble(), GNEWalk::getAttributeDouble(), GNETagProperties::getAttributeProperties(), MSVehicle::getBackPosition(), MSVehicle::getBackPositionOnLane(), GNEPerson::getBegin(), NBOwnTLDef::getBestPair(), MSRailSignal::getBlockingVehicleIDs(), LIBSUMO_NAMESPACE::TrafficLight::getBlockingVehicles(), MSDevice::getBoolParam(), NBRailwayTopologyAnalyzer::getBrokenRailNodes(), MSRailSignal::getClickableTLLinkID(), NIImporter_DlrNavteq::EdgesHandler::getColumn(), NBEdge::getConnection(), NBEdge::getConnectionRef(), MSRailSignal::getConstraintInfo(), GNETagProperties::getDefaultValue(), GNEPersonStop::getDemandElementProblem(), GNEStop::getDemandElementProblem(), IntermodalNetwork< E, L, N, V >::getDepartConnector(), SUMOVehicleParameter::getDepartEdge(), SUMOVehicleParameter::getDepartLane(), SUMOVehicleParameter::getDepartPos(), SUMOVehicleParameter::getDepartPosLat(), SUMOVehicleParameter::getDepartSpeed(), MSStop::getDescription(), MSRailSignalConstraint_Predecessor::getDescription(), NBTrafficLightDefinition::getDescription(), NIImporter_OpenDrive::Connection::getDescription(), NBEdge::Connection::getDescription(), MSRoute::getDistanceBetween(), MSDevice_ToC::getDynamicMRMProbability(), GUINet::DiscoverAttributes::getEdgeAttrs(), NLDetectorBuilder::getEdgeChecking(), MSMeanData_Amitran::getEdgeID(), NBNode::getEdgesSortedByAngleAtNodeCenter(), MSDevice_SSM::getExtraTime(), MSDevice::getFloatParam(), GNESelectorFrame::getGenericMatches(), GNENetworkElement::getHierarchyName(), Reservation::getID(), MSRailSignal::LinkInfo::getID(), PublicTransportEdge< E, L, N, V >::getIntended(), NBEdge::Connection::getInternalLaneID(), MSRailSignal::getJunctionLinkID(), RORouteHandler::getJunctionTaz(), NLDetectorBuilder::getLaneChecking(), NBEdge::getLaneID(), GNEAdditionalHandler::getLanePos(), NIXMLShapeHandler::getLanePos(), NLShapeHandler::getLanePos(), MSVehicle::getLatOffset(), GUIVehicle::getLCStateCenter(), GUIVehicle::getLCStateLeft(), GUIVehicle::getLCStateRight(), MSLane::getLeader(), MSLink::getLeaderInfo(), MSLane::getLeaderOnConsecutive(), GNEViewNetHelper::LockIcon::getLockIcon(), SUMOVTypeParameter::getManoeuverAngleTimesS(), LIBSUMO_NAMESPACE::MeanData::getMeanData(), NIVissimDistrictConnection::getMeanSpeed(), GNEFrameAttributesModuls::NeteditAttributes::getNeteditAttributesAndValues(), GNEHierarchicalElement::getNewListOfParents(), MSCalibrator::getNewVehicleID(), MSPModel_Striping::getNextLane(), GUISUMOAbstractView::getObjectsInBoundary(), NBRampsComputer::getOffRampEdges(), MSDevice_SSM::getOutputFilename(), MSOverheadWire::getOverheadWireSegmentName(), MSCFModel_CACC::getParameter(), MSDevice_Battery::getParameter(), MSDevice_Bluelight::getParameter(), MSDevice_DriverState::getParameter(), MSDevice_ElecHybrid::getParameter(), MSDevice_Example::getParameter(), MSDevice_Routing::getParameter(), MSDevice_SSM::getParameter(), MSDevice_Taxi::getParameter(), MSDevice_Transportable::getParameter(), MSAbstractLaneChangeModel::getParameter(), MSLCM_LC2013::getParameter(), MSLCM_SL2015::getParameter(), MSDevice_ToC::getParameter(), LIBSUMO_NAMESPACE::Simulation::getParameter(), MSDevice_ElecHybrid::getParameterDouble(), GUIContainer::getParameterWindow(), GUIJunctionWrapper::getParameterWindow(), GUITrafficLightLogicWrapper::getParameterWindow(), GNEPoly::getParameterWindow(), GUIPolygon::getParameterWindow(), GUINet::getParameterWindow(), MSLane::getPartialBehind(), MSSimpleDriverState::getPerceivedHeadway(), MSSimpleDriverState::getPerceivedSpeedDifference(), NBEdge::getPermissionVariants(), PollutantsInterface::getPollutantName(), GUIEdge::getPopUpMenu(), GUILane::getPopUpMenu(), GUITrafficLightLogicWrapper::getPopUpMenu(), GNEAdditional::getPopUpMenu(), GNEPOI::getPopUpMenu(), GNEGenericData::getPopUpMenu(), GNEDemandElement::getPopUpMenu(), GNEPersonTrip::getPopUpMenu(), GNERide::getPopUpMenu(), GNERoute::getPopUpMenu(), GNEWalk::getPopUpMenu(), GNEJunction::getPopUpMenu(), GNELane::getPopUpMenu(), MSRailSignal::getPriorityVehicleIDs(), LIBSUMO_NAMESPACE::TrafficLight::getPriorityVehicles(), NBRailwayTopologyAnalyzer::getRailNodes(), MSRailSignal::getRivalVehicleIDs(), LIBSUMO_NAMESPACE::TrafficLight::getRivalVehicles(), MSLCHelper::getRoundaboutDistBonus(), GNEGenericDataFrame::AttributeSelector::getScaledColor(), LIBSUMO_NAMESPACE::TrafficLight::getServedPersonCount(), GNEAdditionalHandler::LastInsertedElement::getShapeParent(), LIBSUMO_NAMESPACE::Person::getStage(), GUIPerson::getStageIndexDescription(), GNEStopFrame::getStopParameter(), MSNet::getStoppingPlaces(), ROEdge::getStoredEffort(), GUIPropertyScheme< T >::getTagName(), GNEAttributeCarrier::getTagProperties(), MSActuatedTrafficLightLogic::getTarget(), GNEAdditionalHandler::LastInsertedElement::getTAZElementParent(), MSRailSignal::getTLLinkID(), libsumo::Helper::getTrafficObject(), ROEdge::getTravelTime(), GUIVehicle::getTypeParameterWindow(), MSEdge::getWaitingVehicle(), NBHeightMapper::getZ(), GNEAttributeProperties::GNEAttributeProperties(), GNECalibratorDialog::GNECalibratorDialog(), GNECalibratorFlowDialog::GNECalibratorFlowDialog(), GNEChange_Attribute::GNEChange_Attribute(), GNERerouterDialog::GNERerouterDialog(), GNERerouterIntervalDialog::GNERerouterIntervalDialog(), GNERouteDialog::GNERouteDialog(), GNEVariableSpeedSignDialog::GNEVariableSpeedSignDialog(), NBNode::guessCrossings(), NBEdgeCont::guessRoundabouts(), NBNodeCont::guessTLs(), MSLane::handleCollisionBetween(), GNEApplicationWindow::handleEvent_NetworkLoaded(), GUIApplicationWindow::handleEvent_SimulationStep(), MSBaseVehicle::haveValidStopEdges(), HelpersHBEFA::HelpersHBEFA(), libsumo::POI::highlight(), LIBSUMO_NAMESPACE::Vehicle::highlight(), MSIdling_Stop::idle(), MSVehicle::ignoreRed(), GNEDataLoadDialog::increase(), GNEReferenceCounter::incRef(), ROMAAssignments::incremental(), MSVehicle::Influencer::influenceChangeDecision(), GUICompleteSchemeStorage::init(), MSActuatedTrafficLightLogic::init(), MSRailSignal::init(), MSTrafficLightLogic::init(), GNETLSEditorFrame::TLSPhases::initPhaseTable(), GNEViewNetHelper::TestingMode::initTestingMode(), NLHandler::initTrafficLightLogic(), GUIDialog_Options::InputFloat::InputFloat(), GUIDialog_Options::InputInt::InputInt(), NIImporter_OpenStreetMap::insertEdge(), NIImporter_OpenStreetMap::insertNodeChecking(), MSDevice_SSM::insertOptions(), MSEdge::insertVehicle(), GNEInspectorFrame::inspectMultisection(), MSLane::integrateNewVehicles(), NIImporter_OpenStreetMap::interpretDistance(), SUMOVehicleParameter::interpretEdgePos(), NIImporter_OpenStreetMap::EdgesHandler::interpretSpeed(), GNEGenericDataFrame::IntervalSelector::IntervalSelector(), GNEJunction::invalidateTLS(), GNEInternalLane::isAttributeEnabled(), MSLane::isInsertionSuccess(), MSVehicle::isLeader(), GNERouteHandler::isPersonIdDuplicated(), Distribution_Parameterized::isValid(), GNEAccess::isValid(), GNEBusStop::isValid(), GNECalibrator::isValid(), GNECalibratorFlow::isValid(), GNEChargingStation::isValid(), GNEClosingLaneReroute::isValid(), GNEClosingReroute::isValid(), GNEContainerStop::isValid(), GNEDestProbReroute::isValid(), GNEDetectorE1::isValid(), GNEDetectorE1Instant::isValid(), GNEDetectorE2::isValid(), GNEDetectorE3::isValid(), GNEDetectorEntryExit::isValid(), GNEParkingArea::isValid(), GNEParkingAreaReroute::isValid(), GNEParkingSpace::isValid(), GNEPOI::isValid(), GNEPoly::isValid(), GNERerouter::isValid(), GNERerouterInterval::isValid(), GNERouteProbe::isValid(), GNERouteProbReroute::isValid(), GNETAZ::isValid(), GNETAZSourceSink::isValid(), GNEVaporizer::isValid(), GNEVariableSpeedSign::isValid(), GNEVariableSpeedSignStep::isValid(), GNEDataInterval::isValid(), GNEDataSet::isValid(), GNEEdgeData::isValid(), GNEEdgeRelData::isValid(), GNETAZRelData::isValid(), GNEPerson::isValid(), GNEPersonStop::isValid(), GNEPersonTrip::isValid(), GNERide::isValid(), GNERoute::isValid(), GNEStop::isValid(), GNEVehicle::isValid(), GNEVehicleType::isValid(), GNEWalk::isValid(), GNEConnection::isValid(), GNECrossing::isValid(), GNEEdge::isValid(), GNEEdgeType::isValid(), GNEInternalLane::isValid(), GNEJunction::isValid(), GNELane::isValid(), GNELaneType::isValid(), GNERouteHandler::isVehicleIdDuplicated(), NBNodeCont::joinNodeCluster(), GNENet::joinSelectedJunctions(), joinToString(), NBEdgeCont::joinTramEdges(), MSLCM_SL2015::keepLatGap(), MSAbstractLaneChangeModel::laneChangeOutput(), GNECreateEdgeFrame::LaneTypeParameters::LaneTypeParameters(), MSE3Collector::leave(), MSE3Collector::leaveFront(), NIImporter_ArcView::load(), NIImporter_OpenStreetMap::load(), PCLoaderArcView::load(), PCLoaderVisum::load(), NILoader::load(), GUISettingsHandler::loadBreakpoints(), GUINet::loadEdgeData(), GUISelectedStorage::loadIDs(), NBHeightMapper::loadIfSet(), PCLoaderOSM::loadIfSet(), MFXImageHelper::loadImage(), loadNet(), ROLoader::loadNet(), NIImporter_OpenDrive::loadNetwork(), PCLoaderDlrNavteq::loadPOIFile(), PCLoaderDlrNavteq::loadPolyFile(), MSLane::loadRNGState(), NILoader::loadXML(), main(), NBEdge::MainDirections::MainDirections(), NBRailwayTopologyAnalyzer::makeAllBidi(), MSDevice_SSM::makeStringWithNAs(), GNENet::mergeJunctions(), PositionVector::move2side(), GNEViewNetHelper::SelectingArea::moveRectangleSelection(), LIBSUMO_NAMESPACE::Vehicle::moveTo(), LIBSUMO_NAMESPACE::Person::moveToXY(), LIBSUMO_NAMESPACE::Vehicle::moveToXY(), MSPModel_Striping::PState::moveToXY(), libsumo::Helper::moveToXYMap(), libsumo::Helper::moveToXYMap_matchingRoutePosition(), MSActuatedTrafficLightLogic::MSActuatedTrafficLightLogic(), MSChargingStation::MSChargingStation(), MSDelayBasedTrafficLightLogic::MSDelayBasedTrafficLightLogic(), MSDevice_Battery::MSDevice_Battery(), MSDevice_ElecHybrid::MSDevice_ElecHybrid(), MSDevice_Taxi::MSDevice_Taxi(), MSStateHandler::myEndElement(), GNEAdditionalHandler::myEndElement(), NIImporter_OpenStreetMap::RelationHandler::myEndElement(), ROJTRTurnDefLoader::myStartElement(), NIImporter_MATSim::EdgesHandler::myStartElement(), NIImporter_OpenDrive::myStartElement(), NIXMLConnectionsHandler::myStartElement(), NIXMLTypesHandler::myStartElement(), ODAmitranHandler::myStartElement(), PCLoaderOSM::NodesHandler::myStartElement(), PCLoaderOSM::RelationsHandler::myStartElement(), PCLoaderOSM::EdgesHandler::myStartElement(), GUISettingsHandler::myStartElement(), NIImporter_OpenStreetMap::NodesHandler::myStartElement(), NIImporter_OpenStreetMap::EdgesHandler::myStartElement(), NIImporter_OpenStreetMap::RelationHandler::myStartElement(), GNEFrameAttributesModuls::NeteditAttributes::NeteditAttributes(), NIVissimAbstractEdge::NIVissimAbstractEdge(), MSTriggeredRerouter::notifyEnter(), MSE3Collector::MSE3EntryReminder::notifyLeave(), MSE3Collector::MSE3LeaveReminder::notifyLeave(), MSDevice_Bluelight::notifyMove(), GNECalibratorFlowDialog::onCmdAccept(), GNEFixAdditionalElements::onCmdAccept(), GNEFixDemandElements::onCmdAccept(), GNERerouterIntervalDialog::onCmdAccept(), GNERouteDialog::onCmdAccept(), GNEVariableSpeedSignDialog::onCmdAccept(), GNEVehicleTypeDialog::onCmdAccept(), GNEViewNet::onCmdAddReversedEdge(), GNERoute::GNERoutePopupMenu::onCmdApplyDistance(), GNEConnectorFrame::ConnectionOperations::onCmdClearSelectedConnections(), GNECalibratorDialog::onCmdClickedRoute(), GNECalibratorDialog::onCmdClickedVehicleType(), GUIDialog_ViewSettings::onCmdColorChange(), GUIGLObjectPopupMenu::onCmdCopyCursorGeoPosition(), GUIGLObjectPopupMenu::onCmdCopyCursorPosition(), GNEPolygonFrame::GEOPOICreator::onCmdCreateGEOPOI(), GNETLSEditorFrame::onCmdDefCreate(), GNETLSEditorFrame::onCmdDefDelete(), GNEPersonTypeFrame::PersonTypeEditor::onCmdDeletePersonType(), GNEVehicleTypeFrame::VehicleTypeEditor::onCmdDeleteVehicleType(), GNEViewNet::onCmdDuplicateLane(), GNEVariableSpeedSignDialog::onCmdEditStep(), GNEFrameModuls::OverlappedInspection::onCmdListItemSelected(), GNEMultipleParametersDialog::ParametersOperations::onCmdLoadParameters(), GNESingleParametersDialog::ParametersOperations::onCmdLoadParameters(), GNETLSEditorFrame::TLSFile::onCmdLoadTLSProgram(), GNEFrameModuls::OverlappedInspection::onCmdNextElement(), GUIDialog_EditViewport::onCmdOk(), GNEFrameAttributesModuls::AttributesEditorRow::onCmdOpenAttributeDialog(), GNEApplicationWindow::onCmdOpenEdgeTypes(), GNETLSEditorFrame::onCmdPhaseEdit(), GNEFrameModuls::OverlappedInspection::onCmdPreviousElement(), GNESelectorFrame::MatchGenericDataAttribute::onCmdProcessString(), GNECreateEdgeFrame::EdgeTypeSelector::onCmdResetEdgeType(), GNEPersonTypeFrame::PersonTypeEditor::onCmdResetPersonType(), GNEVehicleTypeFrame::VehicleTypeEditor::onCmdResetVehicleType(), GNEViewNet::onCmdReverseEdge(), GNESelectorFrame::MatchGenericDataAttribute::onCmdSelectAttribute(), GNEGenericDataFrame::IntervalSelector::onCmdSelectCheckButton(), GNEFrameAttributesModuls::AttributesCreatorRow::onCmdSelectColorButton(), GNEFrameAttributesModuls::AttributesCreatorFlow::onCmdSelectFlowRadioButton(), GNEFrameAttributesModuls::AttributesEditorFlow::onCmdSelectFlowRadioButton(), GNESelectorFrame::MatchGenericDataAttribute::onCmdSelectTag(), GNESelectorFrame::MatchAttribute::onCmdSelMBTag(), GNEVehicleTypeDialog::VTypeAtributes::onCmdSetAttribute(), GNEFrameAttributesModuls::AttributesCreatorRow::onCmdSetAttribute(), GNEFrameAttributesModuls::AttributesEditorRow::onCmdSetAttribute(), GNETAZFrame::TAZParameters::onCmdSetColorAttribute(), GNEPolygonFrame::GEOPOICreator::onCmdSetCoordinates(), GNEFrameAttributesModuls::AttributesEditorFlow::onCmdSetFlowAttribute(), GNESelectorFrame::MatchGenericDataAttribute::onCmdSetInterval(), GUIContainer::GUIContainerPopupMenu::onCmdShowPlan(), GUIPerson::GUIPersonPopupMenu::onCmdShowPlan(), GNEViewNet::onCmdSmoothEdges(), GNEViewNet::onCmdSmoothEdgesElevation(), GUISUMOViewParent::onCmdSpeedFactor(), GNEViewNet::onCmdStraightenEdges(), GNEViewNet::onCmdStraightenEdgesElevation(), GNEViewNet::onCmdTransformPOI(), MSVehicle::onRemovalFromNet(), GNEVehicleTypeDialog::VTypeAtributes::VTypeAttributeRow::openColorDialog(), GNEFrame::openHelpAttributesDialog(), GUIApplicationWindow::openNewView(), MSRouteHandler::openRoute(), MSRouteHandler::openRouteDistribution(), PlainXMLFormatter::openTag(), GNEDeleteFrame::SubordinatedElements::openWarningDialog(), OutputDevice_Network::OutputDevice_Network(), MSLaneChangerSublane::outputLCStarted(), GNEVehicleType::overwriteVType(), GNEAttributeCarrier::parse(), NIImporter_VISUM::parse_Lanes(), NIImporter_VISUM::parse_Point(), NIImporter_VISUM::parse_Types(), RONetHandler::parseAccess(), GNEAdditionalHandler::parseAndBuildAccess(), GNEAdditionalHandler::parseAndBuildBusStop(), GNEAdditionalHandler::parseAndBuildCalibrator(), GNEAdditionalHandler::parseAndBuildCalibratorFlow(), GNEAdditionalHandler::parseAndBuildChargingStation(), GNEAdditionalHandler::parseAndBuildContainerStop(), GNEAdditionalHandler::parseAndBuildDetectorE1(), GNEAdditionalHandler::parseAndBuildDetectorE1Instant(), GNEAdditionalHandler::parseAndBuildDetectorE2(), GNEAdditionalHandler::parseAndBuildDetectorE3(), GNEAdditionalHandler::parseAndBuildDetectorEntry(), GNEAdditionalHandler::parseAndBuildDetectorExit(), GNEDataHandler::parseAndBuildEdgeData(), GNEDataHandler::parseAndBuildEdgeRelationData(), GNEAdditionalHandler::parseAndBuildParkingArea(), GNEAdditionalHandler::parseAndBuildRerouter(), GNEAdditionalHandler::parseAndBuildRerouterClosingLaneReroute(), GNEAdditionalHandler::parseAndBuildRerouterClosingReroute(), GNEAdditionalHandler::parseAndBuildRerouterDestProbReroute(), GNEAdditionalHandler::parseAndBuildRerouterInterval(), GNEAdditionalHandler::parseAndBuildRerouterParkingAreaReroute(), GNEAdditionalHandler::parseAndBuildRouteProbe(), NLTriggerBuilder::parseAndBuildStoppingPlace(), GNEAdditionalHandler::parseAndBuildTAZ(), GNEDataHandler::parseAndBuildTAZRelationData(), GNEAdditionalHandler::parseAndBuildTAZSink(), GNEAdditionalHandler::parseAndBuildTAZSource(), GNEAdditionalHandler::parseAndBuildVaporizer(), GNEAdditionalHandler::parseAndBuildVariableSpeedSign(), GNEAttributeCarrier::parseAttributeFromXML(), SUMOVehicleParserHelper::parseCommonAttributes(), RONetHandler::parseConnection(), NIXMLConnectionsHandler::parseDeprecatedLaneDefinition(), MSRouteHandler::parseFromViaTo(), RORouteHandler::parseFromViaTo(), RORouteHandler::parseGeoEdges(), SUMOVehicleParserHelper::parseID(), SUMOVehicleParserHelper::parseJMParams(), RONetHandler::parseLane(), NIXMLConnectionsHandler::parseLaneBound(), SUMOVehicleParserHelper::parseLCParams(), GNEAttributeCarrier::parseMaskedPositionAttribute(), GUISettingsHandler::parseSizeSettings(), AGActivityGenHandler::parseStation(), SUMORouteHandler::parseStop(), RONetHandler::parseStoppingPlace(), SUMOVehicleParameter::parseStopTriggers(), GUISettingsHandler::parseTextSettings(), ODMatrix::parseTimeLine(), GNETLSEditorFrame::parseTLSPrograms(), SUMOVehicleParserHelper::parseVehicleAttributes(), SUMOVehicleParserHelper::parseVTypeEmbedded(), SUMOVehicleParserHelper::parseWalkPos(), MSRouteHandler::parseWalkPositions(), MSLCM_LC2013::patchSpeed(), MSLCM_SL2015::patchSpeed(), NBLoadedTLDef::SignalGroup::patchTYellow(), MSVehicle::planMoveInternal(), MSLane::planMovements(), MSRightOfWayJunction::postloadInit(), OutputDevice_Network::postWriteHook(), NBEdge::prepareEdgePriorities(), MSLCM_SL2015::prepareStep(), NBNodeCont::printBuiltNodesStatistics(), GNEPolygonFrame::processClick(), GNECreateEdgeFrame::processClick(), TraCIServerAPI_Vehicle::processSet(), NBEdgeCont::processSplits(), NIXMLNodesHandler::processTrafficLightDefinitions(), NBNodeCont::pruneLongEdges(), NBNodeCont::pruneSlipLaneNodes(), MSPModel_Striping::PState::PState(), RODFDetFlowLoader::read(), ODMatrix::readO(), ODMatrix::readV(), NIImporter_DlrNavteq::readVersion(), MSOffTrafficLightLogic::rebuildPhase(), MSRailSignal::recheckGreen(), NBEdgeCont::recheckLanes(), NIImporter_OpenStreetMap::reconstructLayerElevation(), GNEChange_Attribute::redo(), GNEChange_Connection::redo(), GNEChange_Crossing::redo(), GNEChange_Edge::redo(), GNEChange_EdgeType::redo(), GNEChange_Junction::redo(), GNEChange_Lane::redo(), GNEChange_LaneType::redo(), GNEChange_Connection::redoName(), GNEChange_Crossing::redoName(), GNEChange_Edge::redoName(), GNEChange_Junction::redoName(), GNEChange_Lane::redoName(), GNEChange_TLS::redoName(), GNEGenericDataFrame::AttributeSelector::refreshAttributeSelector(), GNECreateEdgeFrame::LaneTypeParameters::refreshLaneTypeParameters(), GNEInspectorFrame::NeteditAttributesEditor::refreshNeteditAttributesEditor(), GNEFrameAttributesModuls::AttributesEditorFlow::refreshVehsPerHour(), OptionsCont::relocateFiles(), NBNodeCont::remapIDs(), NBEdgeCont::remapIDs(), SUMORTree::removeAdditionalGLObject(), GNEPoly::removeGeometryPoint(), GNETAZ::removeGeometryPoint(), GNEConnection::removeGeometryPoint(), GNECrossing::removeGeometryPoint(), GNEEdge::removeGeometryPoint(), GNEJunction::removeGeometryPoint(), GNEJunction::removeIncomingGNEEdge(), GNEEdge::removeLane(), GNEJunction::removeOutgoingGNEEdge(), GNEViewNet::removeRestrictedLane(), NBNodeCont::removeSelfLoops(), GNENet::removeSolitaryJunctions(), GNENet::replaceIncomingEdge(), NBEdge::replaceInConnections(), GNENet::replaceInListAttribute(), GNENet::replaceJunctionByGeometry(), MSBaseVehicle::replaceRouteEdges(), MSVehicle::replaceStop(), NBRequest::reportWarnings(), MSDevice_SSM::requestsTrajectories(), LIBSUMO_NAMESPACE::Vehicle::requestToC(), MSBaseVehicle::reroute(), MSRailSignal::LinkInfo::reroute(), MSVehicle::rerouteParkingArea(), LIBSUMO_NAMESPACE::Person::rerouteTraveltime(), GNEEdge::resetEndpoint(), NBEdge::restoreRestrictedLane(), GNEViewNet::restrictLane(), GNENet::restrictLane(), MSRailSignal::retrieveDriveWay(), GNENet::retrieveLane(), NIXMLTrafficLightsHandler::retrieveLaneIndex(), GNEDataHandler::HierarchyInsertedDatas::retrieveParentDataInterval(), GNEDataHandler::HierarchyInsertedDatas::retrieveParentGenericData(), GNENet::reverseEdge(), NBRailwayTopologyAnalyzer::reverseEdges(), NIImporter_OpenDrive::revisitLaneSections(), RONet::saveAndRemoveRoutesUntil(), ROPerson::PersonTrip::saveAsXML(), ROVehicle::saveAsXML(), MSLCM_SL2015::saveBlockerLength(), MSLCM_LC2013::saveBlockerLength(), MEVehicle::saveState(), MSVehicle::saveState(), MSRailSignalConstraint_Predecessor::PassedTracker::saveState(), MSDevice_Routing::saveState(), MSDevice_Transportable::saveState(), MSDevice_Vehroutes::saveState(), MSTransportableDevice_Routing::saveState(), GUISelectedStorage::select(), GNEAdditionalFrame::SelectorChildEdges::SelectorChildEdges(), GNEAdditionalFrame::SelectorChildLanes::SelectorChildLanes(), MSVehicleType::setAccel(), MSVehicleType::setApparentDecel(), MSStageTrip::setArrived(), GNEAccess::setAttribute(), GNEBusStop::setAttribute(), GNECalibrator::setAttribute(), GNECalibratorFlow::setAttribute(), GNEChargingStation::setAttribute(), GNEClosingLaneReroute::setAttribute(), GNEClosingReroute::setAttribute(), GNEContainerStop::setAttribute(), GNEDestProbReroute::setAttribute(), GNEDetectorE1::setAttribute(), GNEDetectorE1Instant::setAttribute(), GNEDetectorE2::setAttribute(), GNEDetectorE3::setAttribute(), GNEDetectorEntryExit::setAttribute(), GNEParkingArea::setAttribute(), GNEParkingAreaReroute::setAttribute(), GNEParkingSpace::setAttribute(), GNEPOI::setAttribute(), GNEPoly::setAttribute(), GNERerouter::setAttribute(), GNERerouterInterval::setAttribute(), GNERouteProbe::setAttribute(), GNERouteProbReroute::setAttribute(), GNETAZ::setAttribute(), GNETAZSourceSink::setAttribute(), GNEVaporizer::setAttribute(), GNEVariableSpeedSign::setAttribute(), GNEVariableSpeedSignStep::setAttribute(), GNEDataInterval::setAttribute(), GNEDataSet::setAttribute(), GNEEdgeData::setAttribute(), GNEEdgeRelData::setAttribute(), GNETAZRelData::setAttribute(), GNEPerson::setAttribute(), GNEPersonStop::setAttribute(), GNEPersonTrip::setAttribute(), GNERide::setAttribute(), GNERoute::setAttribute(), GNEStop::setAttribute(), GNEVehicle::setAttribute(), GNEVehicleType::setAttribute(), GNEWalk::setAttribute(), GNEConnection::setAttribute(), GNECrossing::setAttribute(), GNEEdge::setAttribute(), GNEEdgeType::setAttribute(), GNEInternalLane::setAttribute(), GNEJunction::setAttribute(), GNELane::setAttribute(), GNELaneType::setAttribute(), GNECreateEdgeFrame::LaneTypeParameters::setAttributes(), GNEViewNetHelper::IntervalBar::setBegin(), NBRequest::setBlocking(), MSChargingStation::setChargeDelay(), MSChargingStation::setChargingPower(), GNEFrameModuls::TagSelector::setCurrentTag(), GNEFrameModuls::TagSelector::setCurrentTagType(), MSVehicleType::setDecel(), MSChargingStation::setEfficency(), MSVehicleType::setEmergencyDecel(), GNEViewNetHelper::IntervalBar::setEnd(), GNEFrameAttributesModuls::AttributesCreatorFlow::setFlowParameters(), RODFRouteCont::setID(), MSVehicleType::setImperfection(), MFXAddEditTypedTable::setItemFromControl(), MFXAddEditTypedTable::setItemFromControl_NoRelease(), NBEdge::setJunctionPriority(), NIImporter_OpenDrive::setLaneAttributes(), GeoConvHelper::setLoaded(), MSDevice_Battery::setMaximumBatteryCapacity(), GNEEdge::setNumLanes(), GNETLSEditorFrame::TLSAttributes::setOffset(), NBTrafficLightLogicCont::setOpenDriveSignalParameters(), MSLCM_SL2015::setOwnState(), MSDevice_Battery::setParameter(), MSDevice_ElecHybrid::setParameter(), MSAbstractLaneChangeModel::setParameter(), MSLCM_LC2013::setParameter(), MSLCM_SL2015::setParameter(), LIBSUMO_NAMESPACE::TrafficLight::setPhase(), MSDevice_Battery::setPowerMax(), NBEdgePriorityComputer::setPriorityJunctionPriorities(), LIBSUMO_NAMESPACE::TrafficLight::setProgramLogic(), MSLink::setRequestInformation(), MSDevice_Battery::setStoppingTreshold(), MSVehicleType::setTau(), NBLoadedSUMOTLDef::setTLControllingInformation(), GNEVehicleTypeDialog::VTypeAtributes::VClassRow::setVariable(), MSOverheadWire::setVoltage(), GUIMainWindow::setWindowSizeAndPos(), GNEPolygonFrame::shapeDrawed(), GNETAZFrame::shapeDrawed(), GNEFrameModuls::HierarchicalElementTree::showAttributeCarrierParents(), GNEFrameAttributesModuls::AttributesCreatorFlow::showAttributesCreatorFlowModul(), GNEInspectorFrame::GEOAttributesEditor::showGEOAttributesEditor(), GNEInspectorFrame::NeteditAttributesEditor::showNeteditAttributesEditor(), GNEFrameModuls::OverlappedInspection::showOverlappedInspection(), GUISUMOAbstractView::showToolTipFor(), GNEPoly::simplifyShape(), GNEEdge::smooth(), GNEEdge::smoothElevation(), MSTractionSubstation::solveCircuit(), MSLane::sortManeuverReservations(), PositionVector::splitAt(), GNENet::splitEdge(), GNEAccess::splitEdgeGeometry(), GNECalibrator::splitEdgeGeometry(), GNEDetector::splitEdgeGeometry(), GNEStoppingPlace::splitEdgeGeometry(), GNENet::splitEdgesBidi(), NBEdgeCont::splitGeometry(), NIImporter_OpenDrive::splitMinWidths(), MSLaneChangerSublane::startChangeSublane(), GNEAdditionalFrame::SelectorParentLanes::stopConsecutiveLaneSelector(), GNEEdge::straightenElevation(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::stretchLogic(), MSAbstractLaneChangeModel::sublaneChangeCompleted(), SUMOSAXAttributesImpl_Cached::SUMOSAXAttributesImpl_Cached(), GNETAZFrame::TAZParameters::TAZParameters(), MELoop::teleportVehicle(), GUISelectedStorage::toggleSelection(), StringUtils::toInt(), NGNet::toNB(), GNEApplicationWindowHelper::toogleEditOptionsData(), GNEApplicationWindowHelper::toogleEditOptionsDemand(), GNEApplicationWindowHelper::toogleEditOptionsNetwork(), Distribution_Parameterized::toStr(), TraCIServer::TraCIServer(), GNERouteHandler::transformToFlow(), GNERouteHandler::transformToRouteFlow(), GNERouteHandler::transformToTrip(), GNERouteHandler::transformToVehicle(), MSStageWaiting::tripInfoOutput(), MSStageDriving::tripInfoOutput(), NIXMLEdgesHandler::tryGetLaneSpread(), SAXWeightsHandler::tryParse(), GNEChange_Attribute::undo(), GNEChange_Connection::undo(), GNEChange_Crossing::undo(), GNEChange_Edge::undo(), GNEChange_EdgeType::undo(), GNEChange_Junction::undo(), GNEChange_Lane::undo(), GNEChange_LaneType::undo(), GNEChange_Connection::undoName(), GNEChange_Crossing::undoName(), GNEChange_Edge::undoName(), GNEChange_Junction::undoName(), GNEChange_Lane::undoName(), GNEChange_TLS::undoName(), RailEdge< E, V >::update(), MSVehicle::updateBestLanes(), GNEInspectorFrame::TemplateEditor::updateButtons(), GNERerouterIntervalDialog::updateClosingLaneReroutesTable(), GNERerouterIntervalDialog::updateClosingReroutesTable(), MSRailSignal::updateCurrentPhase(), GNETLSEditorFrame::TLSPhases::updateCycleDuration(), GNERerouterIntervalDialog::updateDestProbReroutesTable(), MSAbstractLaneChangeModel::updateExpectedSublaneSpeeds(), GNECalibratorDialog::updateFlowAndLabelButton(), GNECalibratorDialog::updateFlowTable(), MSVehicle::updateFurtherLanes(), GNEDataInterval::updateGenericDataIDs(), GNEFrameModuls::PathCreator::updateInfoRouteLabel(), GNEAdditionalFrame::E2MultilaneLaneSelector::updateInfoRouteLabel(), GNERerouterDialog::updateIntervalTable(), GNERerouterIntervalDialog::updateParkingAreaReroutesTable(), GUISUMOAbstractView::updatePositionInformation(), GNERerouterIntervalDialog::updateRouteProbReroutesTable(), GNECalibratorDialog::updateRouteTable(), GNETAZFrame::TAZChildDefaultParameters::updateSelectEdgesButton(), MSAbstractLaneChangeModel::updateShadowLane(), CHBuilder< E, V >::CHInfo::updateShortcuts(), MSVehicle::updateState(), GNETAZFrame::TAZCommonStatistics::updateStatistics(), GNETAZFrame::TAZSelectionStatistics::updateStatistics(), MSAbstractLaneChangeModel::updateTargetLane(), GNEVehicleTypeDialog::VTypeAtributes::updateValues(), GNECalibratorDialog::updateVehicleTypeTable(), MSDevice_SSM::useGeoCoords(), MSEdge::validateDepartSpeed(), GNETLSEditorFrame::varDurString(), GNEVehicleTypeDialog::VTypeAtributes::VClassRow::VClassRow(), GNEVehicleTypeDialog::VTypeAtributes::VShapeRow::VShapeRow(), FXWorkerThread::Pool::waitAll(), MSPModel_Striping::PState::walk(), MSAbstractLaneChangeModel::wantsChange(), MSLCM_LC2013::wantsChange(), MSLCM_SL2015::wantsChangeSublane(), MSAbstractLaneChangeModel::wantsChangeSublane(), OptionsLoader::warning(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::WAUTSwitchProcedure_Stretch(), MSInstantInductLoop::write(), SUMOVTypeParameter::write(), NBPTStop::write(), NBPTLine::write(), MSFCDExport::write(), GNEAdditional::writeAdditional(), MSLink::writeApproaching(), NBSign::writeAsPOI(), PlainXMLFormatter::writeAttr(), MSRailSignal::DriveWay::writeBlocks(), NWWriter_SUMO::writeConnection(), GNERoute::writeDemandElement(), NWWriter_XML::writeEdgesAndConnections(), RODFDetector::writeEmitterDefinition(), RODFDetectorCon::writeEmitterPOIs(), ODMatrix::writeFlows(), NWWriter_OpenDrive::writeGeomSmooth(), NWWriter_XML::writeJoinedJunctions(), NWWriter_SUMO::writeJunction(), NWWriter_SUMO::writeLane(), NWWriter_DlrNavteq::writeLinksUnsplitted(), NWWriter_OpenDrive::writeNetwork(), NWWriter_SUMO::writeNetwork(), IntermodalRouter< E, L, N, V >::writeNetwork(), NWWriter_XML::writeNodes(), MSDevice_SSM::writeOutConflict(), MSNet::writeOutput(), NWWriter_OpenDrive::writeRoadObjects(), GUICompleteSchemeStorage::writeSettings(), ROLoader::writeStats(), GNETLSEditorFrame::TLSFile::writeSUMOTime(), NWWriter_SUMO::writeSUMOTime(), NWWriter_XML::writeTrafficLights(), SUMOVehicleParameter::Stop::writeTriggers(), NWWriter_XML::writeTypes(), MSAmitranTrajectories::writeVehicle(), MSRouteProbe::writeXMLOutput(), MSCalibrator::writeXMLOutput(), GeoConvHelper::x2cartesian(), GeoConvHelper::x2cartesian_const(), FXWorkerThread::~FXWorkerThread(), GNEChange_Attribute::~GNEChange_Attribute(), GNEReferenceCounter::~GNEReferenceCounter(), SUMOAbstractRouter< E, V >::~SUMOAbstractRouter(), and SUMORTree::~SUMORTree().

◆ toString() [12/13]

template<typename V >
std::string toString ( const typename std::list< V * >::const_iterator &  b,
const typename std::list< V * >::const_iterator &  e,
std::streamsize  accuracy = gPrecision 
)
inline

Definition at line 215 of file ToString.h.

References Named::getIDSecure(), and UNUSED_PARAMETER.

◆ toString() [13/13]

template<typename V >
std::string toString ( const typename std::vector< V * >::const_iterator &  b,
const typename std::vector< V * >::const_iterator &  e,
std::streamsize  accuracy = gPrecision 
)
inline

Definition at line 197 of file ToString.h.

References Named::getIDSecure(), and UNUSED_PARAMETER.

◆ toString< Distribution_Parameterized >()

template<>
std::string toString< Distribution_Parameterized > ( const Distribution_Parameterized dist,
std::streamsize  accuracy 
)
inline

Definition at line 187 of file ToString.h.

References Distribution_Parameterized::toStr().

◆ toString< FringeType >()

template<>
std::string toString< FringeType > ( const FringeType fringeType,
std::streamsize  accuracy 
)
inline

◆ toString< LaneChangeAction >()

template<>
std::string toString< LaneChangeAction > ( const LaneChangeAction action,
std::streamsize  accuracy 
)
inline

◆ toString< LaneChangeModel >()

template<>
std::string toString< LaneChangeModel > ( const LaneChangeModel model,
std::streamsize  accuracy 
)
inline

◆ toString< LaneSpreadFunction >()

template<>
std::string toString< LaneSpreadFunction > ( const LaneSpreadFunction lsf,
std::streamsize  accuracy 
)
inline

◆ toString< LateralAlignment >()

template<>
std::string toString< LateralAlignment > ( const LateralAlignment latA,
std::streamsize  accuracy 
)
inline

◆ toString< LinkDirection >()

template<>
std::string toString< LinkDirection > ( const LinkDirection linkDir,
std::streamsize  accuracy 
)
inline

◆ toString< LinkState >()

template<>
std::string toString< LinkState > ( const LinkState linkState,
std::streamsize  accuracy 
)
inline

◆ toString< PersonMode >()

template<>
std::string toString< PersonMode > ( const PersonMode personMode,
std::streamsize  accuracy 
)
inline

◆ toString< RightOfWay >()

template<>
std::string toString< RightOfWay > ( const RightOfWay row,
std::streamsize  accuracy 
)
inline

◆ toString< SUMOVehicleClass >()

template<>
std::string toString< SUMOVehicleClass > ( const SUMOVehicleClass vClass,
std::streamsize  accuracy 
)
inline

Definition at line 97 of file ToString.h.

References SumoVehicleClassStrings, and UNUSED_PARAMETER.

◆ toString< SumoXMLAttr >()

template<>
std::string toString< SumoXMLAttr > ( const SumoXMLAttr attr,
std::streamsize  accuracy 
)
inline

◆ toString< SumoXMLEdgeFunc >()

template<>
std::string toString< SumoXMLEdgeFunc > ( const SumoXMLEdgeFunc edgeFunc,
std::streamsize  accuracy 
)
inline

◆ toString< SumoXMLNodeType >()

template<>
std::string toString< SumoXMLNodeType > ( const SumoXMLNodeType nodeType,
std::streamsize  accuracy 
)
inline

◆ toString< SumoXMLTag >()

template<>
std::string toString< SumoXMLTag > ( const SumoXMLTag tag,
std::streamsize  accuracy 
)
inline

◆ toString< TrafficLightLayout >()

template<>
std::string toString< TrafficLightLayout > ( const TrafficLightLayout layout,
std::streamsize  accuracy 
)
inline

◆ toString< TrafficLightType >()

template<>
std::string toString< TrafficLightType > ( const TrafficLightType type,
std::streamsize  accuracy 
)
inline