Home
last modified time | relevance | path

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

/dports/lang/polyml/polyml-5.8.2/libpolyml/
H A Dwinguiconsole.cpp498 DWORD lrStart, lrEnd; in WndProc() local
499 SendMessage(hEditWnd, EM_GETSEL, (WPARAM)&lrStart, (LPARAM)&lrEnd); in WndProc()
/dports/games/aquaria/Aquaria-OSE-v1.002-22-g84366ad/Aquaria/
H A DGame.h712 … Entity *ignore = 0, EntityType et=ET_NOTYPE, DamageType dt=DT_NONE, int lrStart=-1, int lrEnd=-1);
H A DScriptInterface.cpp7760 int lrStart = lua_isnumber(L, 7) ? lua_tointeger(L, 7) : -1; in luaFunc() local
7763 Entity *target = dsq->game->getNearestEntity(p, radius, ignore, ET_ENEMY, dt, lrStart, lrEnd); in luaFunc()
7854 const int lrStart = lua_isnumber(L, 7) ? lua_tointeger(L, 7) : -1; in _entityFilter() local
7859 const bool skipLayerCheck = lrStart == -1 || lrEnd == -1; in _entityFilter()
7870 if (skipLayerCheck || (e->layer >= lrStart && e->layer <= lrEnd)) in _entityFilter()
H A DGame.cpp944 …onst Vector &pos, int radius, Entity *ignore, EntityType et, DamageType dt, int lrStart, int lrEnd) in getNearestEntity() argument
958 if (lrStart == -1 || lrEnd == -1 || (e->layer >= lrStart && e->layer <= lrEnd)) in getNearestEntity()