Home
last modified time | relevance | path

Searched refs:nextStageIndex (Results 1 – 10 of 10) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/traci-server/
H A DTraCIServerAPI_Person.cpp52 int nextStageIndex = 0; in processGet() local
53 if (!server.readTypeCheckingInt(inputStorage, nextStageIndex)) { in processGet()
57 … server.getWrapperStorage().writeStringList(libsumo::Person::getEdges(id, nextStageIndex)); in processGet()
61 int nextStageIndex = 0; in processGet() local
62 if (!server.readTypeCheckingInt(inputStorage, nextStageIndex)) { in processGet()
66 … server.getWrapperStorage().writeInt(libsumo::Person::getStage(id, nextStageIndex)); in processGet()
257 int nextStageIndex = 0; in processSet() local
258 if (!server.readTypeCheckingInt(inputStorage, nextStageIndex)) { in processSet()
261 libsumo::Person::removeStage(id, nextStageIndex); in processSet()
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/cmd/
H A DPerson.java107 public static SumoCommand removeStage(String personID, int nextStageIndex){ in removeStage() argument
108 …w SumoCommand(Constants.CMD_SET_PERSON_VARIABLE, Constants.REMOVE_STAGE, personID, nextStageIndex); in removeStage()
274 public static SumoCommand getEdges(String personID, int nextStageIndex){ in getEdges() argument
275 Object[] array = new Object[]{nextStageIndex}; in getEdges()
294 public static SumoCommand getStage(String personID, int nextStageIndex){ in getStage() argument
295 Object[] array = new Object[]{nextStageIndex}; in getStage()
/dports/cad/sumo/sumo-1.2.0/src/libsumo/
H A DPerson.h62 static int getStage(const std::string& personID, int nextStageIndex = 0);
63 static std::vector<std::string> getEdges(const std::string& personID, int nextStageIndex = 0);
75 static void removeStage(const std::string& personID, int nextStageIndex);
H A DPerson.cpp148 Person::getEdges(const std::string& personID, int nextStageIndex) { in getEdges() argument
150 if (nextStageIndex >= p->getNumRemainingStages()) { in getEdges()
153 if (nextStageIndex < (p->getNumRemainingStages() - p->getNumStages())) { in getEdges()
157 for (auto& e : p->getEdges(nextStageIndex)) { in getEdges()
167 Person::getStage(const std::string& personID, int nextStageIndex) { in getStage() argument
169 if (nextStageIndex >= p->getNumRemainingStages()) { in getStage()
175 return p->getStageType(nextStageIndex); in getStage()
474 Person::removeStage(const std::string& personID, int nextStageIndex) { in removeStage() argument
476 if (nextStageIndex >= p->getNumRemainingStages()) { in removeStage()
479 if (nextStageIndex < 0) { in removeStage()
[all …]
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A D_person.py153 def getEdges(self, personID, nextStageIndex=0): argument
167 tc.TYPE_INTEGER, nextStageIndex)
171 def getStage(self, personID, nextStageIndex=0): argument
186 tc.TYPE_INTEGER, nextStageIndex)
301 def removeStage(self, personID, nextStageIndex): argument
310 tc.TYPE_INTEGER, nextStageIndex)
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/include/doomsday/world/
H A Dmaterial.h216 int nextStageIndex(int index) const;
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/src/world/
H A Dmaterial.cpp54 int Material::Layer::nextStageIndex(int index) const in nextStageIndex() function in world::Material::Layer
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/client/src/resource/
H A Dmaterialanimator.cpp602 ls.nextStage = layer.nextStageIndex(0); in DENG2_PIMPL()
617 ls.nextStage = layer.nextStageIndex(ls.stage); in DENG2_PIMPL()
/dports/cad/sumo/sumo-1.2.0/src/utils/traci/
H A DTraCIAPI.h831 int getStage(const std::string& personID, int nextStageIndex = 0) const;
832 … std::vector<std::string> getEdges(const std::string& personID, int nextStageIndex = 0) const;
849 void removeStage(const std::string& personID, int nextStageIndex) const;
H A DTraCIAPI.cpp3130 TraCIAPI::PersonScope::getStage(const std::string& personID, int nextStageIndex) const { in getStage()
3133 content.writeInt(nextStageIndex); in getStage()
3138 TraCIAPI::PersonScope::getEdges(const std::string& personID, int nextStageIndex) const { in getEdges()
3141 content.writeInt(nextStageIndex); in getEdges()
3242 TraCIAPI::PersonScope::removeStage(const std::string& personID, int nextStageIndex) const { in removeStage()
3245 content.writeInt(nextStageIndex); in removeStage()