Eclipse SUMO - Simulation of Urban MObility
ToString.h File Reference
#include <config.h>
#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 <utils/vehicle/SUMOVTypeParameter.h>
#include "StdDefs.h"
Include dependency graph for ToString.h:

Go to the source code of this file.

Functions

template<typename KEY , typename VAL , typename T_BETWEEN , typename T_BETWEEN_KEYVAL >
std::string joinNamedToString (const std::map< KEY, VAL, ComparatorIdLess > &s, const T_BETWEEN &between, const T_BETWEEN_KEYVAL &between_keyval, std::streamsize accuracy=gPrecision)
 
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)
 
template<>
std::string toString (const MMVersion &v, std::streamsize)
 
std::string toString (const Named *obj, std::streamsize accuracy)
 
template<>
std::string toString (const Parameterised::Map &v, std::streamsize)
 
template<typename V >
std::string toString (const std::list< V * > &v, std::streamsize accuracy=gPrecision)
 
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<typename V , typename W >
std::string toString (const std::vector< std::pair< V, W > > &v, std::streamsize accuracy=gPrecision, const std::string &between=";", const std::string &between2=",")
 
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< InsertionCheck > (const InsertionCheck &check, 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< LatAlignmentDefinition > (const LatAlignmentDefinition &lad, 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< ParkingType > (const ParkingType &pt, 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() [1/2]

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

Definition at line 327 of file ToString.h.

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

◆ joinNamedToString() [2/2]

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

Definition at line 317 of file ToString.h.

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

Referenced by NBNodeCont::feasibleCluster(), NBNodeCont::generateNodeClusters(), MSActuatedTrafficLightLogic::init(), NBNodeCont::joinJunctions(), NBNodeCont::joinNodeCluster(), NBNodeCont::pruneClusterFringe(), NBNodeCont::pruneSlipLaneNodes(), and NWWriter_XML::writeEdgesAndConnections().

Here is the caller graph for this function:

◆ joinNamedToStringSorting()

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

Definition at line 307 of file ToString.h.

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

Referenced by NBNodeShapeComputer::computeNodeShapeDefault(), NBNodeShapeComputer::computeUniqueDirectionList(), and MSDevice_Taxi::getParameter().

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 417 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 389 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 283 of file ToString.h.

References toString().

Referenced by NBRailwayTopologyAnalyzer::addBidiEdgesBetweenSwitches(), NIImporter_OpenDrive::OpenDriveLaneSection::buildAttributeChanges(), NIImporter_OpenDrive::OpenDriveLaneSection::buildLaneMapping(), NBOwnTLDef::buildNemaPhases(), GUISUMOAbstractView::checkSnapshots(), NBNodeCont::createClusterId(), MSActuatedTrafficLightLogic::evalCustomFunction(), Command_SaveTLSState::execute(), NBRailwayTopologyAnalyzer::extendDirectionPriority(), FileHelpers::fixRelative(), MSNet::generateStatistics(), GNEBusStop::getAttribute(), GNEContainerStop::getAttribute(), GNEParkingArea::getAttribute(), GNEPersonTrip::getAttribute(), GNERide::getAttribute(), GNETransport::getAttribute(), GNEVType::getAttribute(), GUIBaseVehicle::getDeviceDescription(), GUIBusStop::getParameterWindow(), GUIParkingArea::getParameterWindow(), GUIVehicle::getParameterWindow(), MSStageDriving::getStageDescription(), MSStageDriving::getStageSummary(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), Option_FileName::getString(), getVehicleClassNames(), MSStageDriving::getWaitingDescription(), MSActuatedTrafficLightLogic::init(), GNECrossingFrame::CrossingParameters::invertEdges(), joinNamedToString(), joinToStringSorting(), GNECrossingFrame::CrossingParameters::markEdge(), MSDevice_SSM::MSDevice_SSM(), GNEAllowVClassesDialog::onCmdAccept(), Option_IntVector::Option_IntVector(), Option_StringVector::Option_StringVector(), GNEAttributeCarrier::parseIDs(), OptionsCont::relocateFiles(), GNEJunction::removeEdgeFromCrossings(), NBEdge::replaceInConnections(), MSTriggeredRerouter::rerouteParkingArea(), NBRailwayTopologyAnalyzer::reverseEdges(), NIImporter_OpenDrive::setEdgeLinks2(), Distribution_Parameterized::toStr(), toString(), GNETAZFrame::TAZSelectionStatistics::updateStatistics(), NIImporter_OpenStreetMap::usableType(), GNECrossingFrame::CrossingParameters::useSelectedEdges(), SUMOVehicleParameter::write(), MSRailSignal::DriveWay::writeBlocks(), OptionsCont::writeConfiguration(), NWWriter_SUMO::writeInternalNodes(), NWWriter_XML::writeNodes(), and NWWriter_SUMO::writeRoundabout().

◆ 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 299 of file ToString.h.

References joinToString().

Referenced by MSDevice_Taxi::dispatchShared(), 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 56 of file ToString.h.

Referenced by TraCIServer::addSubscriptionFilter(), libsumo::Helper::addSubscriptionFilter(), libsumo::Helper::applySubscriptionFilterLanes(), libsumo::Helper::applySubscriptionFilterTurn(), 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_InductionLoop::processSet(), TraCIServerAPI_Junction::processSet(), TraCIServerAPI_Lane::processSet(), TraCIServerAPI_LaneArea::processSet(), TraCIServerAPI_MultiEntryExit::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().

◆ toString() [1/15]

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

Definition at line 438 of file ToString.h.

References toString().

◆ toString() [2/15]

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

Definition at line 64 of file ToString.h.

References Named::getIDSecure(), and UNUSED_PARAMETER.

◆ toString() [3/15]

template<>
std::string toString ( const Parameterised::Map v,
std::streamsize   
)
inline

Definition at line 433 of file ToString.h.

References joinToString().

◆ toString() [4/15]

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

Definition at line 243 of file ToString.h.

◆ toString() [5/15]

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

Definition at line 411 of file ToString.h.

References joinToString().

◆ toString() [6/15]

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

Definition at line 343 of file ToString.h.

References joinToStringSorting(), and UNUSED_PARAMETER.

◆ toString() [7/15]

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

Definition at line 366 of file ToString.h.

References joinToString().

◆ toString() [8/15]

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

Definition at line 354 of file ToString.h.

References joinToString().

◆ toString() [9/15]

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

Definition at line 360 of file ToString.h.

References joinToString().

◆ toString() [10/15]

template<typename V , typename W >
std::string toString ( const std::vector< std::pair< V, W > > &  v,
std::streamsize  accuracy = gPrecision,
const std::string &  between = ";",
const std::string &  between2 = "," 
)
inline

Definition at line 372 of file ToString.h.

References toString().

◆ toString() [11/15]

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

Definition at line 405 of file ToString.h.

References joinToString().

◆ toString() [12/15]

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

Definition at line 224 of file ToString.h.

◆ toString() [13/15]

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 46 of file ToString.h.

Referenced by MSDevice_ToC::_2string(), RailwayRouter< E, V >::_compute(), 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(), SUMORTree::addAdditionalGLObject(), NBRailwayTopologyAnalyzer::addBidiEdgesBetweenSwitches(), NBRailwayTopologyAnalyzer::addBidiEdgesForBufferStops(), NBRailwayTopologyAnalyzer::addBidiEdgesForStops(), NBRailwayTopologyAnalyzer::addBidiEdgesForStraightConnectivity(), NLHandler::addConflict(), NIImporter_SUMO::addConnection(), NLHandler::addConnection(), NLNetShapeHandler::addConnection(), NBLoadedSUMOTLDef::addConnection(), NIXMLConnectionsHandler::addCrossing(), NLHandler::addDistrict(), RORouteHandler::addFlowPerson(), MSRouteHandler::addFlowTransportable(), GNEJunction::addIncomingGNEEdge(), GNEFixAdditionalElements::AdditionalList::AdditionalList(), GNEFixElementsDialog::AdditionalList::AdditionalList(), NIImporter_SUMO::addJunction(), NIImporter_SUMO::addLane(), NIXMLEdgesHandler::addLane(), MSLane::addLeaders(), NLJunctionControlBuilder::addLogicItem(), GNEJunction::addOutgoingGNEEdge(), MSTractionSubstation::addOverheadWireClampToCircuit(), MSTriggeredRerouter::addParkValues(), NBOwnTLDef::addPedestrianScramble(), GNETLSEditorFrame::TLSPhases::addPhase(), NLHandler::addPhase(), PCLoaderOSM::addPOI(), ShapeHandler::addPOI(), PCLoaderOSM::addPolygon(), NLHandler::addPredecessorConstraint(), NIXMLPTHandler::addPTLineStop(), MSDispatch::addReservation(), NBEdge::addRestrictedLane(), GNEViewNet::addRestrictedLane(), GNENet::addReversedEdge(), MSRouteHandler::addRideOrTransport(), NBEdgeCont::addRoundabout(), NIXMLPTHandler::addRouteStop(), NIXMLEdgesHandler::addSplit(), NBTrafficLightLogic::addStep(), MSRouteHandler::addStop(), MSBaseVehicle::addStop(), RONet::addStoppingPlace(), TraCIServer::addSubscriptionFilter(), TraCIServer::addSubscriptionFilterDownstreamDistance(), TraCIServer::addSubscriptionFilterFieldOfVision(), TraCIServer::addSubscriptionFilterLanes(), TraCIServer::addSubscriptionFilterLateralDistance(), TraCIServer::addSubscriptionFilterUpstreamDistance(), TraCIServer::addSubscriptionFilterVClass(), TraCIServer::addSubscriptionFilterVType(), NIXMLTrafficLightsHandler::addTlConnection(), ROPerson::addTrip(), RailEdge< E, V >::addVirtualTurns(), NBPTLine::addWayNode(), GNEDemandElementFlow::adjustDecimalValue(), NBNodeCont::analyzeCluster(), MSTransportable::appendStage(), NIImporter_OpenStreetMap::RelationHandler::applyRestriction(), libsumo::Helper::applySubscriptionFilterFieldOfVision(), libsumo::Helper::applySubscriptionFilterLateralDistanceSinglePass(), libsumo::Helper::applySubscriptionFilters(), NBEdge::applyTurnSigns(), NBNodeShapeComputer::badIntersection(), SUMOVehicleParserHelper::beginVTypeParsing(), NLEdgeControlBuilder::build(), MSAbstractLaneChangeModel::build(), MSVehicleType::build(), GNEAdditionalFrame::buildAdditionalCommonAttributes(), GNEAdditionalFrame::buildAdditionalOverLane(), GNEVehicleTypeDialog::VTypeAttributes::buildAttributesA(), NIImporter_OpenDrive::buildConnectionsToOuter(), GNEContainerFrame::buildContainer(), GNERouteHandler::buildContainer(), GNERouteHandler::buildContainerFlow(), CHBuilder< E, V >::buildContractionHierarchy(), NBNode::buildCrossings(), NBNode::buildCrossingsAndWalkingAreas(), MSRailSignal::LinkInfo::buildDriveWay(), NIVissimConnection::buildEdgeConnections(), RODFNet::buildEdgeFlowMap(), GNELane::buildEdgeOperations(), GNERouteHandler::buildEmbeddedRoute(), GNERouteHandler::buildFlow(), GNERouteHandler::buildFlowJunctions(), GNERouteHandler::buildFlowOverRoute(), GNERouteHandler::buildFlowTAZs(), NLDetectorBuilder::buildInductLoop(), NBEdge::buildInnerEdges(), GNETLSEditorFrame::buildInternalLanes(), GNEViewNetHelper::IntervalBar::buildIntervalBarElements(), GNELane::buildLaneOperations(), GNEDemandElement::buildMenuCommandRouteLength(), NIVissimEdge::buildNBEdge(), NBOwnTLDef::buildNemaPhases(), buildNetwork(), GNEPersonFrame::buildPerson(), GNERouteHandler::buildPerson(), GNERouteHandler::buildPersonFlow(), GNEAdditionalHandler::buildRerouterInterval(), GNERouteHandler::buildRoute(), MSRailSignal::DriveWay::buildRoute(), GNERouteHandler::buildRouteDistribution(), NLDetectorBuilder::buildRouteProbe(), MELoop::buildSegmentsFor(), libsumo::Helper::buildStopParameters(), NLTriggerBuilder::buildStoppingPlace(), GUITriggerBuilder::buildStoppingPlace(), MSFrame::buildStreams(), GNETAZRelDataFrame::buildTAZRelationData(), GNEAdditionalHandler::buildTAZSink(), GNEAdditionalHandler::buildTAZSource(), GNELane::buildTemplateOperations(), GNERouteHandler::buildTrip(), GNERouteHandler::buildTripJunctions(), GNERouteHandler::buildTripTAZs(), GNEAllowVClassesDialog::buildVClass(), MSDevice_ElecHybrid::buildVehicleDevices(), MSDevice_Taxi::buildVehicleDevices(), GNERouteHandler::buildVehicleOverRoute(), GNEVehicleFrame::buildVehicleOverRoute(), GNERouteHandler::buildVType(), GNERouteHandler::buildVTypeDistribution(), NBNode::buildWalkingAreas(), MSBaseVehicle::calculateArrivalParams(), NEMALogic::calculateInitialPhases170(), GNEVehicleTypeDialog::CarFollowingModelParameters::CarFollowingModelRow::CarFollowingModelRow(), MSLaneChangerSublane::change(), GNEChange_Attribute::changeAttribute(), GNEPoly::changeFirstGeometryPoint(), MSLaneChanger::changeOpposite(), GNEConnection::changeTLIndex(), MSVehicleType::check(), MSLCM_SL2015::checkBlockingVehicles(), MSLaneChanger::checkChange(), MSLaneChanger::checkChangeOpposite(), MSLaneChangerSublane::checkChangeOpposite(), MSLaneChangerSublane::checkChangeSublane(), Circuit::checkCircuit(), NBNode::checkCrossing(), MSStageMoving::checkDepartLane(), NIImporter_OpenStreetMap::RelationHandler::checkEdgeRef(), MSRailSignal::DriveWay::checkFlanks(), RONet::checkFlows(), GUIApplicationWindow::checkGamingEventsDRT(), NBEdge::checkGeometry(), NWWriter_OpenDrive::checkLaneGeometries(), MSFrame::checkOptions(), NGFrame::checkOptions(), NBFrame::checkOptions(), EnergyParams::checkParam(), AdditionalHandler::checkParent(), RouteHandler::checkParent(), DataHandler::checkParent(), MSSOTLTrafficLightLogic::checkPhases(), MSE2Collector::checkPositioning(), MSVehicle::checkReversal(), NLDetectorBuilder::checkSampleInterval(), GUISUMOAbstractView::checkSnapshots(), MSLCM_SL2015::checkStrategicChange(), MSAbstractLaneChangeModel::checkTraCICommands(), MSLaneChanger::checkTraCICommands(), MsgHandler::clear(), MSRouteHandler::closeFlow(), NLJunctionControlBuilder::closeTrafficLightLogic(), MSRouteHandler::closeTransportable(), MSRouteHandler::closeVehicle(), NBTrafficLightDefinition::collectAllLinks(), NBLoadedSUMOTLDef::collectEdgeVectors(), libsumo::Helper::collectObjectsInRange(), GNEInternalLane::colorForLinksState(), GNEAccess::commitMoveShape(), GNEEntryExitDetector::commitMoveShape(), GNEInductionLoopDetector::commitMoveShape(), GNEInstantInductionLoopDetector::commitMoveShape(), GNELaneAreaDetector::commitMoveShape(), GNEMultiEntryExitDetector::commitMoveShape(), GNEOverheadWire::commitMoveShape(), GNEParkingSpace::commitMoveShape(), GNERerouter::commitMoveShape(), GNEStoppingPlace::commitMoveShape(), GNETAZ::commitMoveShape(), GNETractionSubstation::commitMoveShape(), GNEVariableSpeedSign::commitMoveShape(), GNEContainer::commitMoveShape(), GNEPerson::commitMoveShape(), GNEPersonTrip::commitMoveShape(), GNERide::commitMoveShape(), GNEStop::commitMoveShape(), GNEStopPlan::commitMoveShape(), GNETranship::commitMoveShape(), GNETransport::commitMoveShape(), GNEVehicle::commitMoveShape(), GNEWalk::commitMoveShape(), GNEConnection::commitMoveShape(), GNECrossing::commitMoveShape(), GNEEdge::commitMoveShape(), GNEJunction::commitMoveShape(), GNELane::commitMoveShape(), GNEWalkingArea::commitMoveShape(), GNEPOI::commitMoveShape(), GNEPoly::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(), MSVehicle::computeFurtherLanes(), NBNode::computeLogic(), NBOwnTLDef::computeLogicAndConts(), ROMAAssignments::computePath(), computeRoutes(), MSDevice_SSM::computeSSMs(), RODFNet::computeTypes(), MSRailSignal::DriveWay::conflictLaneOccupied(), GNEAllowVClassesDialog::constructor(), NBPTLineCont::constructRoute(), NEMALogic::constructTimingAndPhaseDefs(), GNEAdditionalFrame::createBaseAdditionalObject(), GNEWireFrame::createBaseWireObject(), NGNet::createChequerBoard(), NBNodeCont::createClusterId(), GNENet::createEdge(), MSPModel_JuPedSim::createGeometryFromShape(), GNENet::createJunction(), GNEVehicleFrame::createPath(), GNEWireFrame::createPath(), GNENet::createRoundabout(), GNETLSEditorFrame::TLSDefinition::createTLS(), GNECrossingFrame::CrossingParameters::CrossingParameters(), GLHelper::debugVertices(), MSAbstractLaneChangeModel::decideDirection(), MSLCM_SL2015::decideDirection(), MSActuatedTrafficLightLogic::decideNextPhase(), GNEReferenceCounter::decRef(), NBPTLine::deleteDuplicateStops(), NIXMLEdgesHandler::deleteEdge(), GNENet::deleteEdge(), GNEPoly::deleteGeometryPoint(), GNENet::deleteJunction(), NIXMLNodesHandler::deleteNode(), NBTrafficLightLogic::deletePhase(), GNETypeFrame::TypeEditor::deleteType(), GUISelectedStorage::deselect(), MSLane::detectCollisions(), MSInsertionControl::determineCandidates(), MSDevice_SSM::determineTTCandDRACandPPETandMDRAC(), GNEStop::disableAttribute(), GNEStopPlan::disableAttribute(), GNEDemandElementFlow::disableFlowAttribute(), GNECreateEdgeFrame::disablePedestrians(), MSDispatch_Greedy::dispatch(), MSDispatch_GreedyShared::dispatch(), MSDispatch_RouteExtension::dispatch(), TraCIServer::dispatchCommand(), MSDevice_Taxi::dispatchShared(), GUISUMOAbstractView::displayColorLegend(), GNEDistributionFrame::DistributionEditor::DistributionEditor(), NBEdge::divideOnEdges(), NBEdge::divideSelectedLanesOnEdges(), GUITLLogicPhasesTrackerWindow::drawAdditionalStates(), GNEEdge::drawEdgeGeometryPoints(), GNEEdge::drawEdgeName(), GNEJunction::drawElevation(), GUISUMOAbstractView::drawFPS(), GUIGeometry::drawGeometryPoints(), GUICalibrator::drawGL(), GUIChargingStation::drawGL(), GUIJunctionWrapper::drawGL(), GUIOverheadWire::drawGL(), GUITriggeredRerouter::GUITriggeredRerouterEdge::drawGL(), GNEChargingStation::drawGL(), GNEContainer::drawGL(), GNEPerson::drawGL(), GUIEdge::drawGL(), GUIPerson::drawGL(), GNELane::drawLane2LaneConnections(), GUIBaseVehicle::drawLinkItem(), GUILane::drawLinkNo(), GNELane::drawLinkNo(), GUIBaseVehicle::drawOnPos(), GNELane::drawOverlappedRoutes(), GNERerouterSymbol::drawRerouterSymbol(), GUIVehicle::drawRouteHelper(), GUIMEVehicle::drawRouteHelper(), GNEDemandElement::drawStackLabel(), GUIBaseVehicle::drawStopLabels(), GNELane::drawTLSLinkNo(), GUILane::drawTLSLinkNo(), GNECrossing::drawTLSLinkNo(), GUIParameterTracker::GUIParameterTrackerPanel::drawValue(), GUITLLogicPhasesTrackerWindow::drawValues(), GNETLSEditorFrame::TLSPhases::duplicatePhase(), GNEEdge::editEndpoint(), elapsedMs2string(), GNEStop::enableAttribute(), GNEStopPlan::enableAttribute(), GNEDemandElementFlow::enableFlowAttribute(), GNEMatchGenericDataAttribute::enableMatchGenericDataAttribute(), NLDetectorBuilder::endE3Detector(), MsgHandler::endProcessMsg2(), EnergyParams::EnergyParams(), MSE3Collector::enter(), MSParkingArea::enter(), MSVehicle::enterLaneAtLaneChange(), TemplateHandler::error(), OptionsLoader::error(), MSDevice_SSM::estimateConflictTimes(), MSActuatedTrafficLightLogic::evalCustomFunction(), MSActuatedTrafficLightLogic::evalExpression(), NBNode::ApproachingDivider::execute(), MSActuatedTrafficLightLogic::executeAssignments(), MSVehicle::executeFractionalMove(), MSVehicle::executeMove(), NBEdge::expandableBy(), NBRailwayTopologyAnalyzer::extendBidiEdges(), NIImporter_OpenStreetMap::extendRailwayDistances(), TemplateHandler::fatalError(), OptionsLoader::fatalError(), NBNodeCont::feasibleCluster(), GNEAttributeCarrier::fillAdditionalElements(), GNEAttributeCarrier::fillDemandElements(), GNEAttributeCarrier::fillNetworkElements(), GNEAttributeCarrier::fillPOIAttributes(), GNEAttributeCarrier::fillShapeElements(), MFXDecalsTable::fillTable(), GNEAttributeCarrier::fillWireElements(), GNEVehicleTypeDialog::VTypeAttributes::VTypeAttributeRow::filterAttributeName(), MSCFModel_Daniel1::finalizeSpeed(), LIBSUMO_NAMESPACE::TrafficLight::findConstraintsDeadLocks(), NIImporter_OpenStreetMap::RelationHandler::findEdgeRef(), MSRailSignal::DriveWay::findFlankProtection(), MSDevice_SSM::findFoeConflictLane(), LIBSUMO_NAMESPACE::Simulation::findIntermodalRoute(), MSRailSignal::DriveWay::findProtection(), MSDevice_SSM::findSurroundingVehicles(), NBPTLineCont::findWay(), GNEAccess::fixAdditionalProblem(), GNEEntryExitDetector::fixAdditionalProblem(), GNEInductionLoopDetector::fixAdditionalProblem(), GNEInstantInductionLoopDetector::fixAdditionalProblem(), GNELaneAreaDetector::fixAdditionalProblem(), GNEOverheadWire::fixAdditionalProblem(), GNEStoppingPlace::fixAdditionalProblem(), GNEPOI::fixAdditionalProblem(), GNEFixDemandElements::FixStopPositionOptions::fixElements(), MSRailSignal::formatVisitedMap(), GNENetHelper::AttributeCarriers::generateAdditionalID(), NBPTStopCont::generateBidiStops(), GNENetHelper::AttributeCarriers::generateDataSetID(), GNENetHelper::AttributeCarriers::generateDemandElementID(), GNENetHelper::AttributeCarriers::generateEdgeTypeID(), GNENetHelper::AttributeCarriers::generateMeanDataID(), MSDevice_Example::generateOutput(), MSDevice_Taxi::generateOutput(), MSDevice_Tripinfo::generateOutput(), MSNet::generateStatistics(), GNEInspectorFrame::GEOAttributesEditor::GEOAttributesEditor(), NIImporter_OpenDrive::geomFromSpiral(), GNEAccess::getAdditionalProblem(), GNEEntryExitDetector::getAdditionalProblem(), GNEInductionLoopDetector::getAdditionalProblem(), GNEInstantInductionLoopDetector::getAdditionalProblem(), GNELaneAreaDetector::getAdditionalProblem(), GNEOverheadWire::getAdditionalProblem(), GNEStoppingPlace::getAdditionalProblem(), GNEPOI::getAdditionalProblem(), CommonXMLStructure::SumoBaseObject::getAllAttributes(), SUMOVehicleParameter::getArrivalEdge(), SUMOVehicleParameter::getArrivalLane(), SUMOVehicleParameter::getArrivalPos(), SUMOVehicleParameter::getArrivalPosLat(), SUMOVehicleParameter::getArrivalSpeed(), GNEAccess::getAttribute(), GNEBusStop::getAttribute(), GNECalibrator::getAttribute(), GNECalibratorFlow::getAttribute(), GNEChargingStation::getAttribute(), GNEClosingLaneReroute::getAttribute(), GNEClosingReroute::getAttribute(), GNEContainerStop::getAttribute(), GNEDestProbReroute::getAttribute(), GNEEntryExitDetector::getAttribute(), GNEInductionLoopDetector::getAttribute(), GNEInstantInductionLoopDetector::getAttribute(), GNELaneAreaDetector::getAttribute(), GNEMultiEntryExitDetector::getAttribute(), GNEOverheadWire::getAttribute(), GNEParkingArea::getAttribute(), GNEParkingAreaReroute::getAttribute(), GNEParkingSpace::getAttribute(), GNERerouter::getAttribute(), GNERerouterInterval::getAttribute(), GNERerouterSymbol::getAttribute(), GNERouteProbe::getAttribute(), GNERouteProbReroute::getAttribute(), GNETAZ::getAttribute(), GNETAZSourceSink::getAttribute(), GNETractionSubstation::getAttribute(), GNEVaporizer::getAttribute(), GNEVariableSpeedSign::getAttribute(), GNEVariableSpeedSignStep::getAttribute(), GNEVariableSpeedSignSymbol::getAttribute(), GNEDataInterval::getAttribute(), GNEDataSet::getAttribute(), GNEEdgeData::getAttribute(), GNEEdgeRelData::getAttribute(), GNEMeanData::getAttribute(), GNETAZRelData::getAttribute(), GNEContainer::getAttribute(), GNEDistribution::getAttribute(), GNEPerson::getAttribute(), GNERoute::getAttribute(), GNEStop::getAttribute(), GNEStopPlan::getAttribute(), GNETranship::getAttribute(), GNEVehicle::getAttribute(), GNEVType::getAttribute(), GNEConnection::getAttribute(), GNECrossing::getAttribute(), GNEEdge::getAttribute(), GNEEdgeType::getAttribute(), GNEInternalLane::getAttribute(), GNEJunction::getAttribute(), GNELane::getAttribute(), GNELaneType::getAttribute(), GNEWalkingArea::getAttribute(), GNEPOI::getAttribute(), GNEPoly::getAttribute(), GNEDemandElementDistribution::getAttributeDistributionKeys(), GNEDemandElementDistribution::getAttributeDistributionValues(), GNEAccess::getAttributeDouble(), GNECalibrator::getAttributeDouble(), GNECalibratorFlow::getAttributeDouble(), GNEClosingLaneReroute::getAttributeDouble(), GNEClosingReroute::getAttributeDouble(), GNEDestProbReroute::getAttributeDouble(), GNEEntryExitDetector::getAttributeDouble(), GNEInductionLoopDetector::getAttributeDouble(), GNEInstantInductionLoopDetector::getAttributeDouble(), GNELaneAreaDetector::getAttributeDouble(), GNEMultiEntryExitDetector::getAttributeDouble(), GNEOverheadWire::getAttributeDouble(), GNEParkingArea::getAttributeDouble(), GNEParkingAreaReroute::getAttributeDouble(), GNEParkingSpace::getAttributeDouble(), GNERerouter::getAttributeDouble(), GNERerouterInterval::getAttributeDouble(), GNERouteProbe::getAttributeDouble(), GNERouteProbReroute::getAttributeDouble(), GNEStoppingPlace::getAttributeDouble(), GNETAZ::getAttributeDouble(), GNETAZSourceSink::getAttributeDouble(), GNETractionSubstation::getAttributeDouble(), GNEVaporizer::getAttributeDouble(), GNEVariableSpeedSign::getAttributeDouble(), GNEVariableSpeedSignStep::getAttributeDouble(), GNEDataInterval::getAttributeDouble(), GNEDataSet::getAttributeDouble(), GNEEdgeData::getAttributeDouble(), GNEEdgeRelData::getAttributeDouble(), GNEMeanData::getAttributeDouble(), GNETAZRelData::getAttributeDouble(), GNERoute::getAttributeDouble(), GNEStop::getAttributeDouble(), GNEVType::getAttributeDouble(), GNEPOI::getAttributeDouble(), GNEPoly::getAttributeDouble(), MSMeanData_Net::getAttributeNames(), GNEAdditional::getAttributePosition(), GNETAZ::getAttributePosition(), GNETAZSourceSink::getAttributePosition(), GNEContainer::getAttributePosition(), GNEDistribution::getAttributePosition(), GNEPerson::getAttributePosition(), GNERoute::getAttributePosition(), GNEStop::getAttributePosition(), GNEVehicle::getAttributePosition(), GNEVType::getAttributePosition(), GNETagProperties::getAttributeProperties(), DataHandler::getAttributes(), GUIVehicle::getBackLaneIDs(), MSVehicle::getBackPosition(), MSVehicle::getBackPositionOnLane(), NBOwnTLDef::getBestPair(), MSRailSignal::getBlockingVehicleIDs(), LIBSUMO_NAMESPACE::TrafficLight::getBlockingVehicles(), MSDevice::getBoolParam(), NBRailwayTopologyAnalyzer::getBrokenRailNodes(), LIBSUMO_NAMESPACE::Lane::getChangePermissions(), EnergyParams::getCharacteristicMap(), MSRailSignal::getClickableTLLinkID(), NIImporter_DlrNavteq::EdgesHandler::getColumn(), MSLaneChanger::getColumnleader(), NBEdge::getConnection(), NBEdge::getConnectionRef(), MSRailSignal::getConstraintInfo(), Circuit::getCurrentsOfCircuitSource(), GNETagProperties::getDefaultValue(), GNERoute::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(), MSStageTrip::getDestinationDescription(), MSDevice_SSM::getDetectionRange(), GNERouteHandler::getDistributionElements(), GNEDemandElement::getDistributionParents(), EnergyParams::getDouble(), EnergyParams::getDoubles(), MSRailSignal::LinkInfo::getDriveWay(), GUIVehicle::getDynamicAlignment(), MSDevice_ToC::getDynamicMRMProbability(), MSActuatedTrafficLightLogic::getEarliestEnd(), GUINet::DiscoverAttributes::getEdgeAttrs(), NLDetectorBuilder::getEdgeChecking(), MSMeanData_Amitran::getEdgeID(), NBNode::getEdgesSortedByAngleAtNodeCenter(), MSDevice_SSM::getExtraTime(), MSDevice::getFloatParam(), GNEDemandElementFlow::getFlowAttribute(), GNEDemandElementFlow::getFlowAttributeDouble(), GNEFlowEditor::getFlowAttributes(), GNEViewNetHelper::IntervalBar::getGenericDataType(), GNESelectorFrame::getGenericMatches(), MSDevice_Tripinfo::getGlobalParameter(), GNENetworkElement::getHierarchyName(), Reservation::getID(), MSRailSignal::LinkInfo::getID(), SUMOVehicleParameter::getInsertionChecks(), PublicTransportEdge< E, L, N, V >::getIntended(), NBEdge::Connection::getInternalLaneID(), MSRailSignal::getJunctionLinkID(), MapMatcher< E, L, N >::getJunctionTaz(), NLDetectorBuilder::getLaneChecking(), NBEdge::getLaneID(), NIXMLShapeHandler::getLanePos(), NLShapeHandler::getLanePos(), MSInsertionControl::getLastFlowVehicle(), MSActuatedTrafficLightLogic::getLatestEnd(), MSVehicle::getLatOffset(), GUIVehicle::getLCStateCenter(), GUIVehicle::getLCStateLeft(), GUIVehicle::getLCStateRight(), MSLane::getLeader(), MSLink::getLeaderInfo(), MSLane::getLeaderOnConsecutive(), MSLaneChangerSublane::getLeaders(), SUMOVTypeParameter::getManoeuverAngleTimesS(), MSActuatedTrafficLightLogic::getMaxDur(), MSDevice_SSM::getMDRAC_PRT(), LIBSUMO_NAMESPACE::MeanData::getMeanData(), NIVissimDistrictConnection::getMeanSpeed(), MSActuatedTrafficLightLogic::getMinDur(), GNEEdge::getNetworkElementProblem(), GNEHierarchicalElement::getNewListOfParents(), MSCalibrator::getNewVehicleID(), MSPModel_Striping::getNextLane(), GUISUMOAbstractView::getObjectsInBoundary(), NBRampsComputer::getOffRampEdges(), MSStageTrip::getOriginDescription(), MSDevice_SSM::getOutputFilename(), MSOverheadWire::getOverheadWireSegmentName(), MSCFModel_CACC::getParameter(), MSDevice_Battery::getParameter(), MSDevice_Bluelight::getParameter(), MSDevice_DriverState::getParameter(), MSDevice_ElecHybrid::getParameter(), MSDevice_Example::getParameter(), MSDevice_Friction::getParameter(), MSDevice_GLOSA::getParameter(), MSDevice_Routing::getParameter(), MSDevice_SSM::getParameter(), MSDevice_Taxi::getParameter(), MSDevice_Transportable::getParameter(), MSDevice_Tripinfo::getParameter(), MSAbstractLaneChangeModel::getParameter(), MSDevice_ToC::getParameter(), MSLCM_LC2013::getParameter(), MSLCM_SL2015::getParameter(), MSActuatedTrafficLightLogic::getParameter(), MSSimpleTrafficLightLogic::getParameter(), LIBSUMO_NAMESPACE::Simulation::getParameter(), MSDevice_ElecHybrid::getParameterDouble(), GUIBusStop::getParameterWindow(), GUIE3Collector::MyWrapper::getParameterWindow(), GUIInstantInductLoop::MyWrapper::getParameterWindow(), GUIJunctionWrapper::getParameterWindow(), GUITrafficLightLogicWrapper::getParameterWindow(), GUIContainer::getParameterWindow(), GUIE2Collector::MyWrapper::getParameterWindow(), GUIEdge::getParameterWindow(), GUIInductLoop::MyWrapper::getParameterWindow(), GUILane::getParameterWindow(), GUINet::getParameterWindow(), GUIPolygon::getParameterWindow(), MSLane::getPartialBehind(), MSSimpleDriverState::getPerceivedHeadway(), MSSimpleDriverState::getPerceivedSpeedDifference(), NBEdge::getPermissionVariants(), GNEDemandElementPlan::getPlanAttribute(), GNEDemandElementPlan::getPlanAttributeDouble(), GNEDemandElementPlan::getPlanAttributePosition(), GNEDemandElementPlan::getPlanPopUpMenu(), PollutantsInterface::getPollutantName(), GUITrafficLightLogicWrapper::getPopUpMenu(), GNEAdditional::getPopUpMenu(), GNEGenericData::getPopUpMenu(), GNEDemandElement::getPopUpMenu(), GNERoute::getPopUpMenu(), GNEJunction::getPopUpMenu(), GNELane::getPopUpMenu(), GUIEdge::getPopUpMenu(), GUILane::getPopUpMenu(), NLDetectorBuilder::getPositionChecking(), MSBaseVehicle::getPrefixedParameter(), MSRailSignal::getPriorityVehicleIDs(), LIBSUMO_NAMESPACE::TrafficLight::getPriorityVehicles(), NBRailwayTopologyAnalyzer::getRailNodes(), MSRailSignal::getRivalVehicleIDs(), LIBSUMO_NAMESPACE::TrafficLight::getRivalVehicles(), MSLCHelper::getRoundaboutDistBonus(), GNEGenericDataFrame::AttributeSelector::getScaledColor(), MSCFModel_CC::getSecureGap(), LIBSUMO_NAMESPACE::TrafficLight::getServedPersonCount(), LIBSUMO_NAMESPACE::Person::getStage(), GUIPerson::getStageIndexDescription(), GNETLSEditorFrame::getSteps2Time(), MSBaseVehicle::getStop(), LIBSUMO_NAMESPACE::Vehicle::getStopParameter(), GNEStopFrame::getStopParameter(), libsumo::Helper::getStoppingPlace(), RONet::getStoppingPlaceElement(), GUIPropertyScheme< T >::getTagName(), GNEAttributeCarrier::getTagProperty(), MSActuatedTrafficLightLogic::getTarget(), MSDevice::getTimeParam(), MSRailSignal::getTLLinkID(), libsumo::Helper::getTrafficObject(), SUMOVehicleParameter::Stop::getTriggers(), GUIVehicle::getTypeParameterWindow(), NBRampsComputer::getUnusedID(), MSEdge::getWaitingVehicle(), NBHeightMapper::getZ(), GNEAttributeProperties::GNEAttributeProperties(), GNEAttributesCreatorRow::GNEAttributesCreatorRow(), GNECalibratorDialog::GNECalibratorDialog(), GNECalibratorFlowDialog::GNECalibratorFlowDialog(), GNEChange_Attribute::GNEChange_Attribute(), GNEChangeGroup::GNEChangeGroup(), GNEFlowEditor::GNEFlowEditor(), GNEGeometryPointDialog::GNEGeometryPointDialog(), GNENeteditAttributes::GNENeteditAttributes(), GNERerouterDialog::GNERerouterDialog(), GNERerouterIntervalDialog::GNERerouterIntervalDialog(), GNERouteDialog::GNERouteDialog(), GNEVehicle::GNESelectedVehiclesPopupMenu::GNESelectedVehiclesPopupMenu(), GNEVariableSpeedSignDialog::GNEVariableSpeedSignDialog(), NBNode::guessCrossings(), NBEdgeCont::guessRoundabouts(), CommonXMLStructure::SumoBaseObject::handleAttributeError(), MSLane::handleCollisionBetween(), GUIApplicationWindow::handleEvent_SimulationStep(), MSBaseVehicle::haveValidStopEdges(), HelpersHBEFA::HelpersHBEFA(), LIBSUMO_NAMESPACE::POI::highlight(), LIBSUMO_NAMESPACE::Vehicle::highlight(), MSIdling_Stop::idle(), MSLink::ignoreFoe(), MSVehicle::ignoreFoe(), MSVehicle::ignoreRed(), GNEReferenceCounter::incRef(), ROMAAssignments::incremental(), MSVehicle::Influencer::influenceChangeDecision(), GUICompleteSchemeStorage::init(), MSTrafficLightLogic::init(), MSActuatedTrafficLightLogic::init(), MSRailSignal::init(), NEMALogic::init(), GNETLSEditorFrame::TLSPhases::initActuatedPhaseTable(), MSActuatedTrafficLightLogic::initAttributeOverride(), GNETLSEditorFrame::TLSPhases::initDelayBasePhaseTable(), GNETLSEditorFrame::TLSPhases::initNEMAPhaseTable(), MSLane::initRNGs(), GNETLSEditorFrame::TLSPhases::initStaticPhaseTable(), GNEViewNetHelper::TestingMode::initTestingMode(), NLHandler::initTrafficLightLogic(), GNEOptionsDialogElements::InputFloat::InputFloat(), GNEOptionsDialogElements::InputIntVector::InputIntVector(), NIImporter_MATSim::EdgesHandler::insertEdge(), NIImporter_OpenStreetMap::insertEdge(), NIImporter_OpenStreetMap::insertNodeChecking(), MSBaseVehicle::insertStop(), MSEdge::insertVehicle(), GNEInspectorFrame::inspectMultisection(), MSLane::integrateNewVehicles(), NIImporter_OpenStreetMap::interpretDistance(), SUMOVehicleParameter::interpretEdgePos(), NIImporter_OpenStreetMap::EdgesHandler::interpretSpeed(), GNEGenericDataFrame::IntervalSelector::IntervalSelector(), GNEJunction::invalidateTLS(), GNEInternalLane::isAttributeEnabled(), GNERouteHandler::isContainerIdDuplicated(), MSLane::isInsertionSuccess(), MSVehicle::isLeader(), GNERouteHandler::isPersonIdDuplicated(), GNEDemandElementPlan::isPlanValid(), Distribution_Parameterized::isValid(), GNEAccess::isValid(), GNEBusStop::isValid(), GNECalibrator::isValid(), GNECalibratorFlow::isValid(), GNEChargingStation::isValid(), GNEClosingLaneReroute::isValid(), GNEClosingReroute::isValid(), GNEContainerStop::isValid(), GNEDestProbReroute::isValid(), GNEEntryExitDetector::isValid(), GNEInductionLoopDetector::isValid(), GNEInstantInductionLoopDetector::isValid(), GNELaneAreaDetector::isValid(), GNEMultiEntryExitDetector::isValid(), GNEOverheadWire::isValid(), GNEParkingArea::isValid(), GNEParkingAreaReroute::isValid(), GNEParkingSpace::isValid(), GNERerouter::isValid(), GNERerouterInterval::isValid(), GNERouteProbe::isValid(), GNERouteProbReroute::isValid(), GNETAZ::isValid(), GNETAZSourceSink::isValid(), GNETractionSubstation::isValid(), GNEVaporizer::isValid(), GNEVariableSpeedSign::isValid(), GNEVariableSpeedSignStep::isValid(), GNEDataInterval::isValid(), GNEDataSet::isValid(), GNEEdgeData::isValid(), GNEEdgeRelData::isValid(), GNEMeanData::isValid(), GNETAZRelData::isValid(), GNEDistribution::isValid(), GNEPerson::isValid(), GNERoute::isValid(), GNEStop::isValid(), GNEVType::isValid(), GNEConnection::isValid(), GNECrossing::isValid(), GNEEdge::isValid(), GNEEdgeType::isValid(), GNEInternalLane::isValid(), GNEJunction::isValid(), GNELane::isValid(), GNELaneType::isValid(), GNEWalkingArea::isValid(), GNEPOI::isValid(), GNEPoly::isValid(), GNEDemandElementFlow::isValidFlowAttribute(), GNERouteHandler::isVehicleIdDuplicated(), joinNamedToString(), NBNodeCont::joinNodeCluster(), GNENet::joinSelectedJunctions(), joinToString(), NBEdgeCont::joinTramEdges(), MSLCM_SL2015::keepLatGap(), MSAbstractLaneChangeModel::laneChangeOutput(), MSE3Collector::leave(), MSE3Collector::leaveFront(), NIImporter_ArcView::load(), NIImporter_OpenStreetMap::load(), PCLoaderArcView::load(), PCLoaderVisum::load(), NILoader::load(), GNEApplicationWindow::loadAdditionalElements(), GUISettingsHandler::loadBreakpoints(), GNEApplicationWindow::loadDataElements(), GNEApplicationWindow::loadDemandElements(), GUINet::loadEdgeData(), GUISelectedStorage::loadIDs(), NBHeightMapper::loadIfSet(), PCLoaderOSM::loadIfSet(), MFXImageHelper::loadImage(), GNEApplicationWindow::loadMeanDataElements(), loadNet(), ROLoader::loadNet(), NIImporter_OpenDrive::loadNetwork(), PCLoaderDlrNavteq::loadPOIFile(), PCLoaderDlrNavteq::loadPolyFile(), MSLane::loadRNGState(), NBHeightMapper::loadTiff(), NILoader::loadXML(), main(), NBEdge::MainDirections::MainDirections(), NBRailwayTopologyAnalyzer::makeAllBidi(), MSDevice_SSM::makeStringWithNAs(), PositionVector::move2sideCustom(), GNETLSEditorFrame::TLSPhases::movePhaseDown(), GNETLSEditorFrame::TLSPhases::movePhaseUp(), GNEViewNetHelper::SelectingArea::moveRectangleSelection(), LIBSUMO_NAMESPACE::Person::moveTo(), LIBSUMO_NAMESPACE::Vehicle::moveTo(), MSPModel_Striping::PState::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(), MSParkingArea::MSParkingArea(), MSSimpleTrafficLightLogic::MSSimpleTrafficLightLogic(), ROMARouteHandler::myEndElement(), MSStateHandler::myEndElement(), NIImporter_OpenStreetMap::RelationHandler::myEndElement(), ROJTRTurnDefLoader::myStartElement(), VehicleEngineHandler::myStartElement(), MSStateHandler::myStartElement(), NIImporter_OpenDrive::myStartElement(), NIXMLConnectionsHandler::myStartElement(), NIXMLTypesHandler::myStartElement(), ODAmitranHandler::myStartElement(), PCLoaderOSM::NodesHandler::myStartElement(), PCLoaderOSM::RelationsHandler::myStartElement(), PCLoaderOSM::EdgesHandler::myStartElement(), GUISettingsHandler::myStartElement(), SAXWeightsHandler::myStartElement(), MSRouteHandler::myStartElement(), NIImporter_OpenStreetMap::NodesHandler::myStartElement(), NIImporter_OpenStreetMap::EdgesHandler::myStartElement(), NIImporter_OpenStreetMap::RelationHandler::myStartElement(), RORouteHandler::myStartElement(), NEMALogic::NEMALogic(), NIVissimAbstractEdge::NIVissimAbstractEdge(), MSDevice_Bluelight::notifyEnter(), MSDevice_Bluelight::notifyLeave(), MSE3Collector::MSE3EntryReminder::notifyLeave(), MSE3Collector::MSE3LeaveReminder::notifyLeave(), MSDevice_Bluelight::notifyMove(), GNECalibratorFlowDialog::onCmdAccept(), GNEFixAdditionalElements::onCmdAccept(), GNEFixElementsDialog::onCmdAccept(), GNERerouterIntervalDialog::onCmdAccept(), GNERouteDialog::onCmdAccept(), GNEVariableSpeedSignDialog::onCmdAccept(), GNEVehicleTypeDialog::onCmdAccept(), GNERoute::GNERoutePopupMenu::onCmdApplyDistance(), GNEMoveFrame::ChangeZInSelection::onCmdApplyZ(), GNEGeometryPointDialog::onCmdChangeGeometryPoint(), GNETLSEditorFrame::TLSJunction::onCmdChangeType(), GNECalibratorDialog::onCmdClickedRoute(), GNECalibratorDialog::onCmdClickedVehicleType(), GUIDialog_ViewSettings::onCmdColorChange(), GUIGLObjectPopupMenu::onCmdCopyCursorGeoPosition(), GUIGLObjectPopupMenu::onCmdCopyCursorPosition(), GUIGLObjectPopupMenu::onCmdCopyViewGeoBoundary(), GNETLSEditorFrame::TLSDefinition::onCmdDelete(), GNETLSEditorFrame::TLSJunction::onCmdDisjoinTLS(), GNEVariableSpeedSignDialog::onCmdEditStep(), GNEOverlappedInspection::onCmdListItemSelected(), GNEMultipleParametersDialog::ParametersOperations::onCmdLoadParameters(), GNESingleParametersDialog::ParametersOperations::onCmdLoadParameters(), GNEVTypeDistributionsDialog::ParametersOperations::onCmdLoadParameters(), GNETLSEditorFrame::TLSFile::onCmdLoadTLSProgram(), GNEFrameAttributeModules::AttributesEditorRow::onCmdMoveElementLaneDown(), GNEFrameAttributeModules::AttributesEditorRow::onCmdMoveElementLaneUp(), GNEOverlappedInspection::onCmdNextElement(), GUIDialog_EditViewport::onCmdOk(), GNEAttributesCreatorRow::onCmdOpenColorDialog(), GNEFrameAttributeModules::AttributesEditorRow::onCmdOpenColorDialog(), GNEApplicationWindow::onCmdOpenEdgeTypes(), GNEOverlappedInspection::onCmdPreviousElement(), GNEMatchGenericDataAttribute::onCmdProcessString(), GNEApplicationWindow::onCmdReloadEdgeTypes(), GNEGeometryPointDialog::onCmdReset(), GNETLSEditorFrame::TLSDefinition::onCmdResetAll(), GNEMatchGenericDataAttribute::onCmdSelectAttribute(), GNEGenericDataFrame::IntervalSelector::onCmdSelectCheckButton(), GNEMatchGenericDataAttribute::onCmdSelectTag(), GNEVehicleTypeDialog::VTypeAttributes::onCmdSetAttribute(), GNEFrameAttributeModules::AttributesEditorRow::onCmdSetAttribute(), GNEMatchGenericDataAttribute::onCmdSetBegin(), GNETAZFrame::TAZParameters::onCmdSetColorAttribute(), GNEShapeFrame::GEOPOICreator::onCmdSetCoordinates(), GNEViewNet::onCmdSetCustomGeometryPoint(), GNEMatchGenericDataAttribute::onCmdSetEnd(), GNEFlowEditor::onCmdSetFlowAttribute(), GNEMatchGenericDataAttribute::onCmdSetInterval(), GNEInspectorFrame::NeteditAttributesEditor::onCmdSetNeteditAttribute(), GNETAZFrame::TAZChildDefaultParameters::onCmdSetZeroFringeProbabilities(), GNEMoveFrame::ShiftEdgeSelectedGeometry::onCmdShiftEdgeGeometry(), GNEMoveFrame::ShiftShapeGeometry::onCmdShiftShapeGeometry(), GUIGLObjectPopupMenu::onCmdShowCursorGeoPositionOnline(), GUIContainer::GUIContainerPopupMenu::onCmdShowPlan(), GUIPerson::GUIPersonPopupMenu::onCmdShowPlan(), GUISUMOViewParent::onCmdSpeedFactor(), GNEViewNet::onCmdTransformPOI(), MSVehicle::onRemovalFromNet(), GNEVehicleTypeDialog::VTypeAttributes::VTypeAttributeRow::openColorDialog(), GNEFrame::openHelpAttributesDialog(), GUIApplicationWindow::openNewView(), MSRouteHandler::openRoute(), MSRouteHandler::openRouteDistribution(), PlainXMLFormatter::openTag(), MSRouteHandler::openVehicleTypeDistribution(), RORouteHandler::openVehicleTypeDistribution(), GNEDeleteFrame::SubordinatedElements::openWarningDialog(), Option_Integer::Option_Integer(), OutputDevice_Network::OutputDevice_Network(), MSLaneChangerSublane::outputLCStarted(), GNEVType::overwriteVType(), GNEAttributeCarrier::parse(), NIImporter_VISUM::parse_Lanes(), NIImporter_VISUM::parse_Point(), NIImporter_VISUM::parse_Types(), RONetHandler::parseAccess(), NLTriggerBuilder::parseAndBuildStoppingPlace(), GNEMeanDataHandler::parseAttributes(), SUMOVehicleParserHelper::parseCFMParams(), GUISettingsHandler::parseColor(), SUMOVehicleParserHelper::parseCommonAttributes(), RONetHandler::parseConnection(), NIXMLConnectionsHandler::parseDeprecatedLaneDefinition(), AdditionalHandler::parseDestProbRerouteAttributes(), GNERouteHandler::parseEdge(), GNEAdditionalHandler::parseEdges(), GNEMeanDataHandler::parseEdges(), GNERouteHandler::parseEdges(), GNEOptionsDialogElements::InputFloat::parseFloat(), SUMOVehicleParserHelper::parseFlowAttributes(), MSRouteHandler::parseFromViaTo(), RORouteHandler::parseFromViaTo(), MapMatcher< E, L, N >::parseGeoEdges(), SUMOVehicleParserHelper::parseID(), SUMOVehicleParserHelper::parseJMParams(), GNERouteHandler::parseJunction(), RONetHandler::parseLane(), NIXMLConnectionsHandler::parseLaneBound(), GNEAdditionalHandler::parseLanes(), SUMOVehicleParserHelper::parseLCParams(), AdditionalHandler::parseParameters(), RouteHandler::parseParameters(), AdditionalHandler::parseParkingAreaRerouteAttributes(), SUMOVehicleParameter::parseParkingType(), RouteHandler::parsePersonTrip(), RouteHandler::parseRoute(), SUMOVehicleParameter::parseRouteIndex(), AdditionalHandler::parseRouteProbRerouteAttributes(), GUISettingsHandler::parseSizeSettings(), SUMORouteHandler::parseStop(), RouteHandler::parseStopParameters(), RONetHandler::parseStoppingPlace(), SUMOVehicleParameter::parseStopTriggers(), GNERouteHandler::parseTAZ(), GUISettingsHandler::parseTextSettings(), ODMatrix::parseTimeLine(), GNETLSEditorFrame::parseTLSPrograms(), SUMOVehicleParserHelper::parseVehicleAttributes(), SUMOVehicleParserHelper::parseWalkPos(), MSRouteHandler::parseWalkPositions(), MSLCM_LC2013::patchSpeed(), MSLCM_SL2015::patchSpeed(), NBLoadedTLDef::SignalGroup::patchTYellow(), MSVehicle::planMoveInternal(), MSLane::planMovements(), MSRightOfWayJunction::postloadInit(), MSVehicle::Influencer::postProcessRemoteControl(), NBEdge::prepareEdgePriorities(), MSLCM_SL2015::prepareStep(), NBNodeCont::printBuiltNodesStatistics(), SUMOVehicleParserHelper::processActionStepLength(), TraCIServerAPI_Vehicle::processSet(), NBEdgeCont::processSplits(), NIXMLNodesHandler::processTrafficLightDefinitions(), RailwayRouter< E, V >::prohibit(), NBNodeCont::pruneLongEdges(), NBNodeCont::pruneSlipLaneNodes(), MSPModel_Striping::PState::PState(), RODFDetFlowLoader::read(), ODMatrix::readO(), MSDevice_Battery::readParameterValue(), ODMatrix::readV(), NIImporter_DlrNavteq::readVersion(), MSOffTrafficLightLogic::rebuildPhase(), MSRailSignalControl::recheckGreen(), NBEdgeCont::recheckLanes(), NIImporter_OpenStreetMap::reconstructLayerElevation(), GNEChange_Connection::redo(), GNEChange_Crossing::redo(), GNEChange_Edge::redo(), GNEChange_EdgeType::redo(), GNEChange_Junction::redo(), GNEChange_Lane::redo(), GNEChange_Connection::redoName(), GNEGenericDataFrame::AttributeSelector::refreshAttributeSelector(), GUIDialog_ChooserAbstract::refreshList(), GNEFlowEditor::refreshMultipleFlows(), GNEInspectorFrame::NeteditAttributesEditor::refreshNeteditAttributesEditor(), GNEDistributionFrame::DistributionRow::refreshRow(), GNEFlowEditor::refreshSingleFlow(), OptionsCont::relocateFiles(), NBEdgeCont::remapIDs(), NBNodeCont::remapIDs(), SUMORTree::removeAdditionalGLObject(), NBNodeCont::removeComponents(), GNETAZ::removeGeometryPoint(), GNEConnection::removeGeometryPoint(), GNECrossing::removeGeometryPoint(), GNEEdge::removeGeometryPoint(), GNEJunction::removeGeometryPoint(), GNELane::removeGeometryPoint(), GNEPoly::removeGeometryPoint(), GNEJunction::removeIncomingGNEEdge(), GNEEdge::removeLane(), GNEJunction::removeOutgoingGNEEdge(), GNETLSEditorFrame::TLSPhases::removePhase(), NBNodeCont::removeRailComponents(), GNEViewNet::removeRestrictedLane(), NBNodeCont::removeSelfLoops(), NBEdge::replaceInConnections(), GNENet::replaceInListAttribute(), GNENet::replaceJunctionByGeometry(), MSBaseVehicle::replaceRoute(), MSBaseVehicle::replaceRouteEdges(), MSBaseVehicle::replaceStop(), MSTransportable::replaceVehicleType(), NBRequest::reportWarnings(), MSDevice_SSM::requestsTrajectories(), LIBSUMO_NAMESPACE::Vehicle::requestToC(), MSBaseVehicle::reroute(), MSRailSignal::LinkInfo::reroute(), MSBaseVehicle::rerouteBetweenStops(), MSTriggeredRerouter::rerouteParkingArea(), MSVehicle::rerouteParkingArea(), LIBSUMO_NAMESPACE::Person::rerouteTraveltime(), MSRailSignal::DriveWay::reserve(), GNEEdge::resetEndpoint(), GNETypeFrame::TypeEditor::resetType(), MSDevice_Bluelight::resetVehicle(), GeoConvHelper::resolveAbstractProjection(), GNEOptionsDialogElements::InputStringVector::restoreOption(), GNEOptionsDialogElements::InputInt::restoreOption(), GNEOptionsDialogElements::InputIntVector::restoreOption(), GNEOptionsDialogElements::InputFloat::restoreOption(), NBEdge::restoreRestrictedLane(), GNEViewNet::restrictLane(), GNENet::restrictLane(), MSRailSignal::retrieveDriveWay(), GNENetHelper::AttributeCarriers::retrieveLane(), NIXMLTrafficLightsHandler::retrieveLaneIndex(), GNENet::reverseEdge(), NBRailwayTopologyAnalyzer::reverseEdges(), NIImporter_OpenDrive::revisitLaneSections(), MSStageDriving::routeOutput(), MSStageTranship::routeOutput(), MSStageTrip::routeOutput(), MSStageWaiting::routeOutput(), MSStageWalking::routeOutput(), GNETLSTable::Row::Row(), MFXDecalsTable::Row::Row(), RONet::saveAndRemoveRoutesUntil(), ROPerson::PersonTrip::saveAsXML(), ROVehicle::saveAsXML(), MEVehicle::saveState(), MSInsertionControl::saveState(), MSVehicle::saveState(), MSRailSignalConstraint_Predecessor::PassedTracker::saveState(), MSDevice_Battery::saveState(), MSDevice_Routing::saveState(), MSDevice_Transportable::saveState(), MSDevice_Vehroutes::saveState(), MSTransportableDevice_Routing::saveState(), MSAbstractLaneChangeModel::saveState(), GUISelectedStorage::select(), MSVehicleType::setAccel(), MSVehicleType::setApparentDecel(), MSStageTrip::setArrived(), GNEPerson::setAttribute(), GNEVehicle::setAttribute(), GNEEdgeType::setAttribute(), GNELaneType::setAttribute(), GNEAccess::setAttribute(), GNEBusStop::setAttribute(), GNECalibrator::setAttribute(), GNECalibratorFlow::setAttribute(), GNEChargingStation::setAttribute(), GNEClosingLaneReroute::setAttribute(), GNEClosingReroute::setAttribute(), GNEContainerStop::setAttribute(), GNEDestProbReroute::setAttribute(), GNEEntryExitDetector::setAttribute(), GNEInductionLoopDetector::setAttribute(), GNEInstantInductionLoopDetector::setAttribute(), GNELaneAreaDetector::setAttribute(), GNEMultiEntryExitDetector::setAttribute(), GNEOverheadWire::setAttribute(), GNEParkingArea::setAttribute(), GNEParkingAreaReroute::setAttribute(), GNEParkingSpace::setAttribute(), GNERerouter::setAttribute(), GNERerouterInterval::setAttribute(), GNERouteProbe::setAttribute(), GNERouteProbReroute::setAttribute(), GNETAZ::setAttribute(), GNETAZSourceSink::setAttribute(), GNETractionSubstation::setAttribute(), GNEVaporizer::setAttribute(), GNEVariableSpeedSign::setAttribute(), GNEVariableSpeedSignStep::setAttribute(), GNEDataInterval::setAttribute(), GNEDataSet::setAttribute(), GNEEdgeData::setAttribute(), GNEEdgeRelData::setAttribute(), GNEMeanData::setAttribute(), GNETAZRelData::setAttribute(), GNEDistribution::setAttribute(), GNERoute::setAttribute(), GNEStop::setAttribute(), GNEVType::setAttribute(), GNEConnection::setAttribute(), GNECrossing::setAttribute(), GNEEdge::setAttribute(), GNEInternalLane::setAttribute(), GNEJunction::setAttribute(), GNELane::setAttribute(), GNEWalkingArea::setAttribute(), GNEPOI::setAttribute(), GNEPoly::setAttribute(), GNEViewNetHelper::IntervalBar::setBegin(), NBRequest::setBlocking(), MSBaseVehicle::setCarFollowModelParameter(), LIBSUMO_NAMESPACE::Lane::setChangePermissions(), MSVehicleType::setDecel(), GNEDemandElementFlow::setDefaultFlowAttributes(), MSBaseVehicle::setDepartAndArrivalEdge(), NBEdge::setEdgeStopOffset(), MSVehicleType::setEmergencyDecel(), GNEViewNetHelper::IntervalBar::setEnd(), GNEDemandElementFlow::setFlowAttribute(), GNEViewNetHelper::IntervalBar::setGenericDataType(), RODFRouteCont::setID(), MSVehicleType::setImperfection(), GNEFixDemandElements::FixOptions::setInvalidElements(), GNEFixNetworkElements::FixOptions::setInvalidElements(), MSBaseVehicle::setJunctionModelParameter(), MSTransportable::setJunctionModelParameter(), NBEdge::setJunctionPriority(), NIImporter_OpenDrive::setLaneAttributes(), GeoConvHelper::setLoaded(), MSDevice_Battery::setMaximumBatteryCapacity(), LIBSUMO_NAMESPACE::TrafficLight::setNemaCycleLength(), LIBSUMO_NAMESPACE::TrafficLight::setNemaMaxGreens(), LIBSUMO_NAMESPACE::TrafficLight::setNemaOffset(), LIBSUMO_NAMESPACE::TrafficLight::setNemaSplits(), GNEEdge::setNumLanes(), NBTrafficLightLogicCont::setOpenDriveSignalParameters(), NBEdge::setOrigID(), MSLCM_SL2015::setOwnState(), MSDevice_Battery::setParameter(), MSDevice_ElecHybrid::setParameter(), MSAbstractLaneChangeModel::setParameter(), MSLCM_LC2013::setParameter(), MSLCM_SL2015::setParameter(), LIBSUMO_NAMESPACE::TrafficLight::setPhase(), GNEDemandElementPlan::setPlanAttribute(), NBEdgePriorityComputer::setPriorityJunctionPriorities(), LIBSUMO_NAMESPACE::TrafficLight::setProgramLogic(), MSLink::setRequestInformation(), GNETLSEditorFrame::TLSPhases::setState(), LIBSUMO_NAMESPACE::Vehicle::setStopParameter(), MSDevice_Battery::setStoppingThreshold(), MSVehicleType::setTau(), NBLoadedSUMOTLDef::setTLControllingInformation(), GNEVehicleTypeDialog::VTypeAttributes::VClassRow::setVariable(), MSOverheadWire::setVoltage(), GUIMainWindow::setWindowSizeAndPos(), GNEElementTree::showAttributeCarrierParents(), GNEFlowEditor::showFlowEditor(), GNEInspectorFrame::GEOAttributesEditor::showGEOAttributesEditor(), GNEInspectorFrame::NeteditAttributesEditor::showNeteditAttributesEditor(), GNEOverlappedInspection::showOverlappedInspection(), GNESelectorParent::showSelectorParentModule(), GNEPoly::simplifyShape(), MSVehicle::slowDownForSchedule(), GNEEdge::smooth(), GNEEdge::smoothElevation(), GNEConnection::smootShape(), MSTractionSubstation::solveCircuit(), MSLane::sortManeuverReservations(), PositionVector::splitAt(), GNENet::splitEdge(), GNEAccess::splitEdgeGeometry(), GNECalibrator::splitEdgeGeometry(), GNEDetector::splitEdgeGeometry(), GNEStoppingPlace::splitEdgeGeometry(), NBEdgeCont::splitGeometry(), NIImporter_OpenDrive::splitMinWidths(), MSDispatch_TraCI::splitReservation(), MSLaneChangerSublane::startChangeSublane(), GNEEdge::straightenElevation(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::stretchLogic(), MSAbstractLaneChangeModel::sublaneChangeCompleted(), StringUtils::substituteEnvironment(), NBTrafficLightLogic::swapPhase(), GNEViewNetHelper::TimeFormat::switchTimeFormat(), GNETAZFrame::TAZParameters::TAZParameters(), GNETLSEditorFrame::TLSAttributes::TLSAttributes(), GNETLSEditorFrame::TLSDefinition::TLSDefinition(), GNETLSEditorFrame::TLSJunction::TLSJunction(), GNECalibratorFlow::toggleAttribute(), GNEStop::toggleAttribute(), GNEStopPlan::toggleAttribute(), GNEApplicationWindowHelper::toggleEditOptionsData(), GNEApplicationWindowHelper::toggleEditOptionsDemand(), GNEApplicationWindowHelper::toggleEditOptionsNetwork(), GUISelectedStorage::toggleSelection(), StringUtils::toInt(), NGNet::toNB(), Distribution_Parameterized::toStr(), toString(), TraCIServer::TraCIServer(), GNERouteHandler::transformToContainer(), GNERouteHandler::transformToContainerFlow(), GNERouteHandler::transformToFlow(), GNERouteHandler::transformToFlowJunctions(), GNERouteHandler::transformToFlowTAZs(), GNERouteHandler::transformToPerson(), GNERouteHandler::transformToPersonFlow(), GNERouteHandler::transformToRouteFlow(), GNERouteHandler::transformToTrip(), GNERouteHandler::transformToTripJunctions(), GNERouteHandler::transformToTripTAZs(), GNERouteHandler::transformToVehicle(), MSTriggeredRerouter::triggerRouting(), MSStageDriving::tripInfoOutput(), MSStageWaiting::tripInfoOutput(), MSStageWalking::tripInfoOutput(), NIXMLEdgesHandler::tryGetLaneSpread(), SAXWeightsHandler::tryParse(), MSActuatedTrafficLightLogic::trySwitch(), NEMALogic::trySwitch(), GNEChange_Connection::undo(), GNEChange_Crossing::undo(), GNEChange_Edge::undo(), GNEChange_EdgeType::undo(), GNEChange_Junction::undo(), GNEChange_Lane::undo(), GNEChange_Connection::undoName(), RailEdge< E, V >::update(), GNETLSTable::updateAccumulatedDuration(), GNEMatchAttribute::updateAttribute(), MSVehicle::updateBestLanes(), MSLCHelper::updateBlockerLength(), GNEInspectorFrame::TemplateEditor::updateButtons(), GNERerouterIntervalDialog::updateClosingLaneReroutesTable(), GNERerouterIntervalDialog::updateClosingReroutesTable(), NLEdgeControlBuilder::updateCurrentLaneStopOffset(), MSRailSignal::updateCurrentPhase(), GNERerouterIntervalDialog::updateDestProbReroutesTable(), MSAbstractLaneChangeModel::updateExpectedSublaneSpeeds(), GNECalibratorDialog::updateFlowAndLabelButton(), GNECalibratorDialog::updateFlowTable(), MSVehicle::updateFurtherLanes(), GNEDataInterval::updateGenericDataIDs(), GNEMoveFrame::ChangeZInSelection::updateInfoLabel(), GNESelectorFrame::SelectionInformation::updateInformationLabel(), GNEConsecutiveSelector::updateInfoRouteLabel(), GNEPathCreator::updateInfoRouteLabel(), GNEViewNetHelper::IntervalBar::updateIntervalBar(), GNERerouterDialog::updateIntervalTable(), GNETLSEditorFrame::TLSJunction::updateJunctionDescription(), GNEOptionsDialogElements::InputStringVector::updateOption(), GNEOptionsDialogElements::InputInt::updateOption(), GNEOptionsDialogElements::InputIntVector::updateOption(), GNEOptionsDialogElements::InputFloat::updateOption(), GNERerouterIntervalDialog::updateParkingAreaReroutesTable(), GUISUMOAbstractView::updatePositionInformationLabel(), MSVehicle::Influencer::updateRemoteControlRoute(), GNERerouterIntervalDialog::updateRouteProbReroutesTable(), GNECalibratorDialog::updateRouteTable(), GNETAZFrame::TAZChildDefaultParameters::updateSelectEdgesButton(), MSAbstractLaneChangeModel::updateShadowLane(), GNEApplicationWindowHelper::EditMenuCommands::NetworkViewOptions::updateShortcuts(), GNEApplicationWindowHelper::EditMenuCommands::DemandViewOptions::updateShortcuts(), GNEApplicationWindowHelper::EditMenuCommands::DataViewOptions::updateShortcuts(), CHBuilder< E, V >::CHInfo::updateShortcuts(), GNETLSEditorFrame::TLSPhases::updateStateSize(), GNETAZFrame::TAZCommonStatistics::updateStatistics(), GNETAZFrame::TAZSelectionStatistics::updateStatistics(), GNEDistributionFrame::DistributionValuesEditor::updateSumLabel(), MSAbstractLaneChangeModel::updateTargetLane(), GNEVehicleTypeDialog::VTypeAttributes::updateValues(), GNECalibratorDialog::updateVehicleTypeTable(), MSDevice_SSM::useGeoCoords(), NEMALogic::validate_timing(), MSEdge::validateDepartSpeed(), GNEVehicleTypeDialog::VTypeAttributes::VClassRow::VClassRow(), GNEVehicleTypeDialog::VTypeAttributes::VShapeRow::VShapeRow(), MFXWorkerThread::Pool::waitAll(), MSAbstractLaneChangeModel::wantsChange(), MSLCM_LC2013::wantsChange(), MSLCM_SL2015::wantsChangeSublane(), MSAbstractLaneChangeModel::wantsChangeSublane(), TemplateHandler::warning(), OptionsLoader::warning(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::WAUTSwitchProcedure_Stretch(), MSInstantInductLoop::write(), SUMOVTypeParameter::write(), SUMOVehicleParameter::write(), NBPTLine::write(), NBPTStop::write(), MSFCDExport::write(), GNEBusStop::writeAdditional(), GNEChargingStation::writeAdditional(), GNEContainerStop::writeAdditional(), GNELaneAreaDetector::writeAdditional(), GNEParkingArea::writeAdditional(), MSLink::writeApproaching(), NBSign::writeAsPOI(), PlainXMLFormatter::writeAttr(), GNEAttributeCarrier::writeAttributeHelp(), MSRailSignal::DriveWay::writeBlocks(), NWWriter_SUMO::writeConnection(), GNERoute::writeDemandElement(), NWWriter_XML::writeEdgesAndConnections(), RODFDetector::writeEmitterDefinition(), RODFDetectorCon::writeEmitterPOIs(), GNEAdditionalHandler::writeErrorDuplicated(), GNEDataHandler::writeErrorDuplicated(), RouteHandler::writeErrorInvalidDistribution(), GNEAdditionalHandler::writeErrorInvalidFilename(), RouteHandler::writeErrorInvalidID(), GNEAdditionalHandler::writeErrorInvalidLanes(), GNEAdditionalHandler::writeErrorInvalidNegativeValue(), GNEAdditionalHandler::writeErrorInvalidParent(), GNEDataHandler::writeErrorInvalidParent(), GNEAdditionalHandler::writeErrorInvalidPosition(), GNEAdditionalHandler::writeErrorInvalidVTypes(), ODMatrix::writeFlows(), NWWriter_OpenDrive::writeGeomSmooth(), GNEAdditionalHandler::writeInvalidID(), NWWriter_XML::writeJoinedJunctions(), NWWriter_SUMO::writeJunction(), MSDevice_SSM::writeLanesPositions(), NWWriter_DlrNavteq::writeLinksUnsplitted(), MSDevice_SSM::writeNA(), NWWriter_OpenDrive::writeNetwork(), NWWriter_SUMO::writeNetwork(), IntermodalRouter< E, L, N, V >::writeNetwork(), NWWriter_XML::writeNodes(), MSDevice_SSM::writeOutConflict(), MSNet::writeOutput(), MSDevice_Vehroutes::writeOutput(), MSDevice_SSM::writePositions(), GUICompleteSchemeStorage::writeSettings(), NWWriter_OpenDrive::writeSignals(), ROLoader::writeStats(), GNETLSEditorFrame::TLSFile::writeSUMOTime(), NWWriter_SUMO::writeSUMOTime(), NWWriter_XML::writeTrafficLights(), NWWriter_XML::writeTypes(), MSAmitranTrajectories::writeVehicle(), MSCalibrator::writeXMLOutput(), MSRouteProbe::writeXMLOutput(), GeoConvHelper::x2cartesian(), GeoConvHelper::x2cartesian_const(), GNEChange_Attribute::~GNEChange_Attribute(), GNEReferenceCounter::~GNEReferenceCounter(), MFXWorkerThread::~MFXWorkerThread(), SUMOAbstractRouter< E, V >::~SUMOAbstractRouter(), and SUMORTree::~SUMORTree().

◆ toString() [14/15]

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 248 of file ToString.h.

References Named::getIDSecure(), and UNUSED_PARAMETER.

◆ toString() [15/15]

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 230 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 219 of file ToString.h.

References Distribution_Parameterized::toStr().

◆ toString< FringeType >()

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

◆ toString< InsertionCheck >()

template<>
std::string toString< InsertionCheck > ( const InsertionCheck check,
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< LatAlignmentDefinition >()

template<>
std::string toString< LatAlignmentDefinition > ( const LatAlignmentDefinition lad,
std::streamsize  accuracy 
)
inline

Definition at line 177 of file ToString.h.

References ARBITRARY, CENTER, COMPACT, DEFAULT, GIVEN, LEFT, NICE, RIGHT, and UNUSED_PARAMETER.

◆ 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< ParkingType >()

template<>
std::string toString< ParkingType > ( const ParkingType pt,
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 99 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