Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/utils/lui/
H A Dcui.py9 import curses
10 import curses.ascii
193 curses.init_pair(1, curses.COLOR_WHITE, curses.COLOR_BLUE)
194 curses.init_pair(2, curses.COLOR_YELLOW, curses.COLOR_BLACK)
195 curses.init_pair(3, curses.COLOR_RED, curses.COLOR_BLACK)
312 elif key == curses.KEY_BACKSPACE or key == curses.ascii.BS:
317 elif key == curses.KEY_DC or key == curses.ascii.DEL or key == curses.ascii.EOT:
322 elif key == curses.KEY_LEFT or key == curses.ascii.STX: # left or CTRL-B
325 elif key == curses.KEY_RIGHT or key == curses.ascii.ACK: # right or CTRL-F
332 elif key == curses.KEY_UP or key == curses.ascii.DLE: # up or CTRL-P
[all …]
H A Dstatuswin.py12 import curses
21 ('F3', 'Cycle-focus', curses.KEY_F3),
22 ('F10', 'Quit', curses.KEY_F10)]
27 self.win.addstr('{0}'.format(key[0]), curses.A_REVERSE)
28 self.win.addstr(' {0} '.format(key[1]), curses.A_NORMAL)
H A Dbreakwin.py10 import curses
31 if event == curses.ascii.NL or event == curses.ascii.SP:
33 elif event == curses.ascii.TAB:
H A Dcommandwin.py10 import curses
113 attr = curses.A_NORMAL
116 attr = curses.color_pair(3) # red on black
123 if event == curses.ascii.EOT and self.el.content == '':
H A Dsourcewin.py10 import curses
89 if key == curses.KEY_DOWN:
91 elif key == curses.KEY_UP:
155 attr = curses.A_NORMAL
157 attr = curses.A_REVERSE
H A Dlui.py11 import curses
116 if event == curses.KEY_F10:
150 curses.wrapper(main)
H A Dsandbox.py11 import curses
75 curses.wrapper(main)
H A DReadme5 This directory contains the curses user interface for LLDB. To use it, ensure Python can find your …
/llvm-project-15.0.7/llvm/utils/lit/lit/
H A DProgressBar.py98 try: import curses
106 try: curses.setupterm()
110 self.COLS = curses.tigetnum('cols')
111 self.LINES = curses.tigetnum('lines')
112 self.XN = curses.tigetflag('xenl')
138 import curses
139 return curses.tparm(to_bytes(arg), index).decode('utf-8') or ''
145 import curses
146 cap = curses.tigetstr(cap_name)
/llvm-project-15.0.7/lldb/cmake/modules/
H A DFindCursesAndPanel.cmake5 # Find the curses and panel library as a whole.
11 find_library(PANEL_LIBRARIES NAMES panel DOC "The curses panel library" QUIET)
H A DLLDBConfig.cmake60 add_optional_dependency(LLDB_ENABLE_CURSES "Enable curses support in LLDB" CursesAndPanel CURSESAND…
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/portability/
H A Drestrict-system-includes.rst15 #include <curses.h> // Bad: disallowed system header.
25 #include <curses.h> // Good: allowed system header.
37 #include <curses.h> // Bad: disallowed system header.
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DIOHandlerCursesGUI.h37 curses::ApplicationAP m_app_ap;
H A DIOHandler.h39 namespace curses {
/llvm-project-15.0.7/lldb/third_party/Python/module/ptyprocess-0.6.0/
H A DREADME.rst6 pipe rather than a terminal, or curses-style interfaces that rely on a terminal.
/llvm-project-15.0.7/llvm/cmake/modules/
H A DFindTerminfo.cmake14 find_library(Terminfo_LIBRARIES NAMES terminfo tinfo curses ncurses ncursesw)
/llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Core/
H A DBUILD.gn42 # FIXME: Link curses, libedit if needed.
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DProcess.inc321 // headers from various terminfo, curses, or other sources is harder than
360 // isn't entirely obvious. We can use the curses routine 'has_colors' but it
361 // would be nice to avoid a dependency on curses proper when we can make do
363 // the terminal supports the curses-specific color changing routines, merely
/llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Host/
H A DBUILD.gn55 libs += [ "curses" ] # For USE_SETUPTERM_WORKAROUND :/
/llvm-project-15.0.7/clang/docs/
H A DHowToSetupToolingForLLVM.rst39 You can also use ``ccmake``, which provides a curses interface to configure
230 You can also use ``ccmake``, which provides a curses interface to configure
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dbugpoint.rst30 libraries (such as the X or curses libraries) to run.
H A Dlit.rst112 Do not use curses based progress bar.
/llvm-project-15.0.7/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp97 namespace curses { namespace
111 type summary add -s "x=${var.x}, y=${var.y}" curses::Point
112 type summary add -s "w=${var.width}, h=${var.height}" curses::Size
113 type summary add -s "${var.origin%S} ${var.size%S}" curses::Rect
4482 using namespace curses;
4880 static curses::KeyHelp g_source_view_key_help[] = { in WindowDelegateGetKeyHelp()
5571 static curses::KeyHelp g_source_view_key_help[] = { in WindowDelegateGetKeyHelp()
6362 static curses::KeyHelp g_source_view_key_help[] = { in WindowDelegateGetKeyHelp()
6773 static curses::KeyHelp g_source_view_key_help[] = { in WindowDelegateGetKeyHelp()
/llvm-project-15.0.7/compiler-rt/cmake/
H A Dconfig-ix.cmake163 …find_library(COMPILER_RT_TERMINFO_LIB NAMES terminfo tinfo curses ncurses ncursesw ${MAYBE_REQUIRE…