| /llvm-project-15.0.7/lldb/utils/lui/ |
| H A D | cui.py | 9 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 D | statuswin.py | 12 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 D | breakwin.py | 10 import curses 31 if event == curses.ascii.NL or event == curses.ascii.SP: 33 elif event == curses.ascii.TAB:
|
| H A D | commandwin.py | 10 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 D | sourcewin.py | 10 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 D | lui.py | 11 import curses 116 if event == curses.KEY_F10: 150 curses.wrapper(main)
|
| H A D | sandbox.py | 11 import curses 75 curses.wrapper(main)
|
| H A D | Readme | 5 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 D | ProgressBar.py | 98 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 D | FindCursesAndPanel.cmake | 5 # Find the curses and panel library as a whole. 11 find_library(PANEL_LIBRARIES NAMES panel DOC "The curses panel library" QUIET)
|
| H A D | LLDBConfig.cmake | 60 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 D | restrict-system-includes.rst | 15 #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 D | IOHandlerCursesGUI.h | 37 curses::ApplicationAP m_app_ap;
|
| H A D | IOHandler.h | 39 namespace curses {
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/ptyprocess-0.6.0/ |
| H A D | README.rst | 6 pipe rather than a terminal, or curses-style interfaces that rely on a terminal.
|
| /llvm-project-15.0.7/llvm/cmake/modules/ |
| H A D | FindTerminfo.cmake | 14 find_library(Terminfo_LIBRARIES NAMES terminfo tinfo curses ncurses ncursesw)
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Core/ |
| H A D | BUILD.gn | 42 # FIXME: Link curses, libedit if needed.
|
| /llvm-project-15.0.7/llvm/lib/Support/Unix/ |
| H A D | Process.inc | 321 // 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 D | BUILD.gn | 55 libs += [ "curses" ] # For USE_SETUPTERM_WORKAROUND :/
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | HowToSetupToolingForLLVM.rst | 39 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 D | bugpoint.rst | 30 libraries (such as the X or curses libraries) to run.
|
| H A D | lit.rst | 112 Do not use curses based progress bar.
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 97 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 D | config-ix.cmake | 163 …find_library(COMPILER_RT_TERMINFO_LIB NAMES terminfo tinfo curses ncurses ncursesw ${MAYBE_REQUIRE…
|