Home
last modified time | relevance | path

Searched refs:ungetch (Results 1 – 14 of 14) sorted by relevance

/external/deqp-deps/glslang/glslang/MachineIndependent/preprocessor/
DPpScanner.cpp535 ungetch(); in scan()
594 ungetch(); in scan()
603 ungetch(); in scan()
615 ungetch(); in scan()
702 ungetch(); in scan()
711 ungetch(); in scan()
723 ungetch(); in scan()
791 ungetch(); in scan()
800 ungetch(); in scan()
812 ungetch(); in scan()
[all …]
DPpContext.h215 virtual void ungetch() = 0;
378 void ungetChar() { inputStack.back()->ungetch(); } in ungetChar()
406 virtual void ungetch() override { assert(0); } in ungetch() function
433 virtual void ungetch() override { assert(0); } in ungetch() function
442 virtual void ungetch() override { assert(0); } in ungetch() function
489 virtual void ungetch() override { assert(0); } in ungetch() function
502 virtual void ungetch() override { assert(0); } in ungetch() function
557 void ungetch() override in ungetch() function
626 void ungetch() override { stringInput.ungetch(); } in ungetch() function
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/preprocessor/
DPpScanner.cpp535 ungetch(); in scan()
594 ungetch(); in scan()
603 ungetch(); in scan()
615 ungetch(); in scan()
702 ungetch(); in scan()
711 ungetch(); in scan()
723 ungetch(); in scan()
791 ungetch(); in scan()
800 ungetch(); in scan()
812 ungetch(); in scan()
[all …]
DPpContext.h215 virtual void ungetch() = 0;
378 void ungetChar() { inputStack.back()->ungetch(); } in ungetChar()
406 virtual void ungetch() override { assert(0); } in ungetch() function
433 virtual void ungetch() override { assert(0); } in ungetch() function
442 virtual void ungetch() override { assert(0); } in ungetch() function
489 virtual void ungetch() override { assert(0); } in ungetch() function
502 virtual void ungetch() override { assert(0); } in ungetch() function
557 void ungetch() override in ungetch() function
626 void ungetch() override { stringInput.ungetch(); } in ungetch() function
/external/python/cpython2/Doc/library/
Dmsvcrt.rst134 .. function:: ungetch(char)
142 Wide char variant of :func:`ungetch`, accepting a Unicode value.
Dcurses.rst596 .. function:: ungetch(ch)
/external/python/cpython3/Doc/library/
Dmsvcrt.rst140 .. function:: ungetch(char)
148 Wide char variant of :func:`ungetch`, accepting a Unicode value.
Dcurses.rst633 .. function:: ungetch(ch)
/external/python/cpython2/Lib/test/
Dtest_curses.py262 curses.ungetch('a')
356 curses.ungetch(1025)
/external/python/cpython3/Lib/test/
Dtest_curses.py277 curses.ungetch('a')
371 curses.ungetch(1025)
/external/python/cffi/demo/
D_curses.py1061 def ungetch(ch): function
1063 return _check_ERR(lib.ungetch(_chtype(ch)), "ungetch")
/external/toybox/kconfig/lxdialog/
Dutil.c507 ungetch(key); in on_key_esc()
/external/python/cpython3/Modules/
D_cursesmodule.c4270 return PyCursesCheckERR(ungetch(ch_), "ungetch"); in _curses_ungetch()
/external/python/cpython2/Modules/
D_cursesmodule.c2643 return PyCursesCheckERR(ungetch(ch), "ungetch"); in PyCurses_UngetCh()