Home
last modified time | relevance | path

Searched refs:remVehicle (Results 1 – 4 of 4) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/guisim/
H A DGUILane.h148 …MSVehicle* removeVehicle(MSVehicle* remVehicle, MSMoveReminder::Notification notification, bool no…
H A DGUILane.cpp159 GUILane::removeVehicle(MSVehicle* remVehicle, MSMoveReminder::Notification notification, bool notif… in removeVehicle() argument
161 return MSLane::removeVehicle(remVehicle, notification, notify); in removeVehicle()
166 GUILane::removeParking(MSVehicle* remVehicle) { in removeParking() argument
168 return MSLane::removeParking(remVehicle); in removeParking()
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLane.cpp2160 MSLane::removeVehicle(MSVehicle* remVehicle, MSMoveReminder::Notification notification, bool notify… in removeVehicle() argument
2161 assert(remVehicle->getLane() == this); in removeVehicle()
2163 if (remVehicle == *it) { in removeVehicle()
2165 remVehicle->leaveLane(notification); in removeVehicle()
2168 myBruttoVehicleLengthSum -= remVehicle->getVehicleType().getLengthWithGap(); in removeVehicle()
2169 myNettoVehicleLengthSum -= remVehicle->getVehicleType().getLength(); in removeVehicle()
2173 return remVehicle; in removeVehicle()
H A DMSLane.h781 …virtual MSVehicle* removeVehicle(MSVehicle* remVehicle, MSMoveReminder::Notification notification,…