Home
last modified time | relevance | path

Searched refs:InvalidMove (Results 1 – 24 of 24) sorted by relevance

/dports/devel/notcurses/notcurses-3.0.1/src/tetris/
H A Drotate.h7 if(InvalidMove()){ in RotateCcw()
19 if(InvalidMove()){ in RotateCw()
H A Dmovedown.h5 if(InvalidMove()){ in MoveDown()
H A Dmovelateral.h6 if(InvalidMove()){ in MoveLateral()
H A Dstuck.h1 bool InvalidMove() { // a bit wasteful, but pieces are tiny in InvalidMove() function
/dports/devel/libslang2/slang-2.3.2/src/curses/
H A Dhanoi.c65 int InvalidMove(int From, int To);
135 if(InvalidMove(FromCol, ToCol)) { in main()
156 InvalidMove(int From, int To) in InvalidMove() function
/dports/japanese/libslang/slang-1.4.5jp2/src/curses/
H A Dhanoi.c65 int InvalidMove(int From, int To);
135 if(InvalidMove(FromCol, ToCol)) { in main()
156 InvalidMove(int From, int To) in InvalidMove() function
/dports/www/py-dj32-django-mptt/django-mptt-0.13.4/mptt/
H A Dmanagers.py21 from mptt.exceptions import CantDisableUpdates, InvalidMove
766 raise InvalidMove
949 raise InvalidMove(_("A node may not be made a sibling of itself."))
1131 raise InvalidMove(_("A node may not be made a child of itself."))
1133 raise InvalidMove(
1154 raise InvalidMove(_("A node may not be made a sibling of itself."))
1156 raise InvalidMove(
1267 raise InvalidMove(_("A node may not be made a child of itself."))
1269 raise InvalidMove(
H A Dexceptions.py6 class InvalidMove(Exception): class
H A Dforms.py10 from mptt.exceptions import InvalidMove
164 except InvalidMove as e:
H A Dadmin.py24 from mptt.exceptions import InvalidMove
236 except InvalidMove as e:
/dports/www/py-django-mptt/django-mptt-0.13.4/mptt/
H A Dmanagers.py21 from mptt.exceptions import CantDisableUpdates, InvalidMove
766 raise InvalidMove
949 raise InvalidMove(_("A node may not be made a sibling of itself."))
1131 raise InvalidMove(_("A node may not be made a child of itself."))
1133 raise InvalidMove(
1154 raise InvalidMove(_("A node may not be made a sibling of itself."))
1156 raise InvalidMove(
1267 raise InvalidMove(_("A node may not be made a child of itself."))
1269 raise InvalidMove(
H A Dexceptions.py6 class InvalidMove(Exception): class
H A Dforms.py10 from mptt.exceptions import InvalidMove
164 except InvalidMove as e:
H A Dadmin.py24 from mptt.exceptions import InvalidMove
236 except InvalidMove as e:
/dports/devel/ncurses/ncurses-6.3/test/
H A Dhanoi.c94 InvalidMove(int From, int To) in InvalidMove() function
342 if (InvalidMove(FromCol, ToCol)) { in main()
/dports/www/py-dj32-django-mptt/django-mptt-0.13.4/docs/
H A Dforms.rst163 ``mptt.exceptions.InvalidMove`` will be re-raised.
178 from mptt.exceptions import InvalidMove
189 except InvalidMove:
H A Dmodels.rst316 ``mptt.exceptions.InvalidMove`` exception will be raised.
/dports/www/py-django-mptt/django-mptt-0.13.4/docs/
H A Dforms.rst163 ``mptt.exceptions.InvalidMove`` will be re-raised.
178 from mptt.exceptions import InvalidMove
189 except InvalidMove:
H A Dmodels.rst316 ``mptt.exceptions.InvalidMove`` exception will be raised.
/dports/games/scid/scid/tcl/
H A Derrors.tcl63 set InvalidMove 302
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/Players/
H A DPlayer.py22 class InvalidMove(Exception): class
H A DUCIEngine.py20 from pychess.Players.Player import PlayerIsDead, TurnInterrupt, InvalidMove
265 raise InvalidMove
H A DCECPEngine.py26 from pychess.Players.Player import PlayerIsDead, TurnInterrupt, InvalidMove
348 raise InvalidMove
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/Utils/
H A DGameModel.py13 from pychess.Players.Player import PlayerIsDead, PassInterrupt, TurnInterrupt, InvalidMove, GameEnd…
794 except InvalidMove as e: