Home
last modified time | relevance | path

Searched refs:routingMode (Results 1 – 22 of 22) sorted by relevance

/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/google/apiclient-services/src/Google/Service/Compute/
H A DNetworkRoutingConfig.php20 public $routingMode; variable in Google_Service_Compute_NetworkRoutingConfig
22 public function setRoutingMode($routingMode) argument
24 $this->routingMode = $routingMode;
28 return $this->routingMode;
/dports/www/owncloud/owncloud/apps/files_external/3rdparty/google/apiclient-services/src/Google/Service/Compute/
H A DNetworkRoutingConfig.php20 public $routingMode; variable in Google_Service_Compute_NetworkRoutingConfig
22 public function setRoutingMode($routingMode) argument
24 $this->routingMode = $routingMode;
28 return $this->routingMode;
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/cmd/
H A DSimulation.java422 …umoCommand findRoute(String fromEdge, String toEdge, String vType, double depart, int routingMode){ in findRoute() argument
423 Object[] array = new Object[]{fromEdge, toEdge, vType, depart, routingMode}; in findRoute()
444 … findIntermodalRoute(String fromEdge, String toEdge, String modes, double depart, int routingMode, in findIntermodalRoute() argument
446 …Object[] array = new Object[]{fromEdge, toEdge, modes, depart, routingMode, speed, walkingFactor, … in findIntermodalRoute()
H A DVehicle.java1172 public static SumoCommand setRoutingMode(String vehID, int routingMode){ in setRoutingMode() argument
1173 …ew SumoCommand(Constants.CMD_SET_VEHICLE_VARIABLE, Constants.VAR_ROUTING_MODE, vehID, routingMode); in setRoutingMode()
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSNet.cpp982 MSNet::getIntermodalRouter(const int routingMode, const MSEdgeVector& prohibited) const { in getIntermodalRouter() argument
983 if (myIntermodalRouter.count(routingMode) == 0) { in getIntermodalRouter()
995 if (routingMode == libsumo::ROUTING_MODE_COMBINED) { in getIntermodalRouter()
996 …myIntermodalRouter[routingMode] = new MSIntermodalRouter(MSNet::adaptIntermodalRouter, carWalk, ro… in getIntermodalRouter()
998 …myIntermodalRouter[routingMode] = new MSIntermodalRouter(MSNet::adaptIntermodalRouter, carWalk, ro… in getIntermodalRouter()
1001 myIntermodalRouter[routingMode]->prohibit(prohibited); in getIntermodalRouter()
1002 return *myIntermodalRouter[routingMode]; in getIntermodalRouter()
H A DMSNet.h629 …MSIntermodalRouter& getIntermodalRouter(const int routingMode = 0, const MSEdgeVector& prohibited …
/dports/cad/sumo/sumo-1.2.0/src/utils/router/
H A DIntermodalRouter.h87 const int routingMode = 0, EffortCalculator* calc = nullptr) :
91 myRoutingMode(routingMode), myExternalEffort(calc) {
244 const int routingMode, EffortCalculator* calc) : in IntermodalRouter() argument
248 …(carWalkTransfer), myRoutingAlgorithm(routingAlgorithm), myRoutingMode(routingMode), myExternalEff… in IntermodalRouter()
/dports/cad/sumo/sumo-1.2.0/src/libsumo/
H A DSimulation.h106 …ring& toEdge, const std::string& vType = "", const double depart = -1., const int routingMode = 0);
112 … double depart = -1., const int routingMode = 0, double speed = -1., double walkFactor = -1.,
H A DSimulation.cpp422 …om, const std::string& to, const std::string& typeID, const double depart, const int routingMode) { in findRoute() argument
450 …SUMOAbstractRouter<MSEdge, SUMOVehicle>& router = routingMode == ROUTING_MODE_AGGREGATED ? MSRouti… in findRoute()
465 … const std::string& modes, double depart, const int routingMode, double speed, double walkFactor, in findIntermodalRoute() argument
539 MSNet::MSIntermodalRouter& router = MSNet::getInstance()->getIntermodalRouter(routingMode); in findIntermodalRoute()
H A DVehicle.h164 static void setRoutingMode(const std::string& vehicleID, int routingMode);
H A DVehicle.cpp1288 Vehicle::setRoutingMode(const std::string& vehicleID, int routingMode) {
1289 getVehicle(vehicleID)->getInfluencer().setRoutingMode(routingMode);
/dports/cad/sumo/sumo-1.2.0/src/traci-server/
H A DTraCIServerAPI_Simulation.cpp184 int routingMode; in processGet() local
197 if (!server.readTypeCheckingInt(inputStorage, routingMode)) { in processGet()
200 …(server.getWrapperStorage(), libsumo::Simulation::findRoute(from, to, vtype, depart, routingMode)); in processGet()
212 int routingMode; in processGet() local
225 if (!server.readTypeCheckingInt(inputStorage, routingMode)) { in processGet()
252 …lt = libsumo::Simulation::findIntermodalRoute(from, to, modes, depart, routingMode, speed, walkFac… in processGet()
H A DTraCIServerAPI_Vehicle.cpp751 int routingMode = 0; in processSet() local
752 if (!server.readTypeCheckingInt(inputStorage, routingMode)) { in processSet()
755 libsumo::Vehicle::setRoutingMode(id, routingMode); in processSet()
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A D_simulation.py392 def findRoute(self, fromEdge, toEdge, vType="", depart=-1., routingMode=0): argument
400 …f._connection._string += struct.pack("!BdBi", tc.TYPE_DOUBLE, depart, tc.TYPE_INTEGER, routingMode)
403 def findIntermodalRoute(self, fromEdge, toEdge, modes="", depart=-1., routingMode=0, speed=-1., argument
414 …f._connection._string += struct.pack("!BdBi", tc.TYPE_DOUBLE, depart, tc.TYPE_INTEGER, routingMode)
H A D_vehicle.py1215 def setRoutingMode(self, vehID, routingMode): argument
1221 tc.CMD_SET_VEHICLE_VARIABLE, tc.VAR_ROUTING_MODE, vehID, routingMode)
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/api_lib/compute/
H A Dnetworks_utils.py60 network.routingConfig.routingMode = (
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/surface/compute/networks/
H A Dupdate.py111 network_resource.routingConfig.routingMode = (
/dports/cad/sumo/sumo-1.2.0/src/utils/traci/
H A DTraCIAPI.h792 void setRoutingMode(const std::string& vehicleID, int routingMode) const;
H A DTraCIAPI.cpp3016 TraCIAPI::VehicleScope::setRoutingMode(const std::string& vehicleID, int routingMode) const { in setRoutingMode()
3019 content.writeInt(routingMode); in setRoutingMode()
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/third_party/apis/compute/v1/
H A Dcompute_v1_messages.py35812 routingMode = _messages.EnumField('RoutingModeValueValuesEnum', 1) variable in NetworkRoutingConfig
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/third_party/apis/compute/beta/
H A Dcompute_beta_messages.py38423 routingMode = _messages.EnumField('RoutingModeValueValuesEnum', 1) variable in NetworkRoutingConfig
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/third_party/apis/compute/alpha/
H A Dcompute_alpha_messages.py42785 routingMode = _messages.EnumField('RoutingModeValueValuesEnum', 1) variable in NetworkRoutingConfig