Home
last modified time | relevance | path

Searched refs:getLaneIndex (Results 1 – 18 of 18) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/examples/java_wsclient/de/tudresden/ws/
H A DVehicleChangeLane.java70 public byte getLaneIndex() { in getLaneIndex() method in VehicleChangeLane
H A DSimulationConvert2D.java89 public byte getLaneIndex() { in getLaneIndex() method in SimulationConvert2D
H A DSimulationConvert3D.java89 public byte getLaneIndex() { in getLaneIndex() method in SimulationConvert3D
H A DVehicleSetStop.java119 public byte getLaneIndex() { in getLaneIndex() method in VehicleSetStop
/dports/cad/sumo/sumo-1.2.0/src/microsim/cfmodels/
H A DMSCFModel_CC.cpp131 libsumo::Vehicle::changeLane(veh->getID(), veh->getLaneIndex() + 1, 0); in performAutoLaneChange()
133 libsumo::Vehicle::changeLane(m->second, veh->getLaneIndex() + 1, 0); in performAutoLaneChange()
154 libsumo::Vehicle::changeLane(veh->getID(), veh->getLaneIndex() - 1, 1); in performAutoLaneChange()
156 libsumo::Vehicle::changeLane(m->second, veh->getLaneIndex() - 1, 1); in performAutoLaneChange()
/dports/devel/binaryen/binaryen-version_98/src/wasm/
H A Dwasm-binary.cpp4715 curr->index = getLaneIndex(8); in maybeVisitSIMDExtract()
4720 curr->index = getLaneIndex(8); in maybeVisitSIMDExtract()
4725 curr->index = getLaneIndex(4); in maybeVisitSIMDExtract()
4730 curr->index = getLaneIndex(2); in maybeVisitSIMDExtract()
4735 curr->index = getLaneIndex(4); in maybeVisitSIMDExtract()
4740 curr->index = getLaneIndex(2); in maybeVisitSIMDExtract()
4762 curr->index = getLaneIndex(8); in maybeVisitSIMDReplace()
4767 curr->index = getLaneIndex(4); in maybeVisitSIMDReplace()
4772 curr->index = getLaneIndex(2); in maybeVisitSIMDReplace()
4777 curr->index = getLaneIndex(4); in maybeVisitSIMDReplace()
[all …]
/dports/cad/sumo/sumo-1.2.0/src/libsumo/
H A DVehicle.h69 static int getLaneIndex(const std::string& vehicleID);
H A DVehicle.cpp179 Vehicle::getLaneIndex(const std::string& vehicleID) { in getLaneIndex() function in libsumo::Vehicle
1001 int laneIndex = getVehicle(vehicleID)->getLaneIndex() + indexOffset;
1805 return wrapper->wrapInt(objID, variable, getLaneIndex(objID));
/dports/cad/sumo/sumo-1.2.0/tools/simpla/
H A D_pvehicle.py47 self.laneIX = traci.vehicle.getLaneIndex(ID)
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSVehicle.h1066 int getLaneIndex() const;
H A DMSLane.cpp1907 assert((int)veh->getBestLanes().size() > veh->getLaneIndex()); in appropriate()
1908 if (veh->getBestLanes()[veh->getLaneIndex()].bestLaneOffset == 0) { in appropriate()
H A DMSVehicle.cpp5219 MSVehicle::getLaneIndex() const {
5824 getLaneIndex(),
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/cmd/
H A DVehicle.java405 public static SumoCommand getLaneIndex(String vehID){ in getLaneIndex() method in Vehicle
/dports/devel/binaryen/binaryen-version_98/src/
H A Dwasm-binary.h1281 uint8_t getLaneIndex(size_t lanes);
/dports/cad/sumo/sumo-1.2.0/src/utils/traci/
H A DTraCIAPI.h691 int getLaneIndex(const std::string& vehicleID) const;
H A DTraCIAPI.cpp2331 TraCIAPI::VehicleScope::getLaneIndex(const std::string& vehicleID) const { in getLaneIndex() function in TraCIAPI::VehicleScope
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A D_vehicle.py257 def getLaneIndex(self, vehID): member in VehicleDomain
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/ws/
H A DTraci.java778 return this.helper.getInt(this.sumo.get_cmd(Vehicle.getLaneIndex(vehID))); in Vehicle_getLaneIndex()