Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/common/
DEditline.cpp936 DisplayCompletions(::EditLine *editline, FILE *output_file, in DisplayCompletions() argument
970 int got_char = el_getc(editline, &reply); in DisplayCompletions()
1122 (EditlinePromptCallbackType)([](EditLine *editline) { in ConfigureEditor() argument
1123 return Editline::InstanceFor(editline)->Prompt(); in ConfigureEditor()
1127 EditLine *editline, EditLineGetCharType *c) { in ConfigureEditor() argument
1128 return Editline::InstanceFor(editline)->GetCharacter(c); in ConfigureEditor()
1135 (EditlineCommandCallbackType)([](EditLine *editline, int ch) { in ConfigureEditor() argument
1136 return Editline::InstanceFor(editline)->BreakLineCommand(ch); in ConfigureEditor()
1140 (EditlineCommandCallbackType)([](EditLine *editline, int ch) { in ConfigureEditor() argument
1141 return Editline::InstanceFor(editline)->EndOrAddLineCommand(ch); in ConfigureEditor()
[all …]
/external/llvm-project/lldb/include/lldb/Host/
DEditline.h84 typedef int (*EditlineGetCharCallbackType)(::EditLine *editline,
86 typedef unsigned char (*EditlineCommandCallbackType)(::EditLine *editline,
88 typedef const char *(*EditlinePromptCallbackType)(::EditLine *editline);
94 typedef bool (*IsInputCompleteCallbackType)(Editline *editline,
97 typedef int (*FixIndentationCallbackType)(Editline *editline,
164 static Editline *InstanceFor(::EditLine *editline);
/external/pcre/dist2/cmake/
DFindEditline.cmake7 /usr/include/editline
/external/llvm-project/lldb/unittests/Editline/
DEditlineTest.cpp84 static bool IsInputComplete(lldb_private::Editline *editline,
185 bool EditlineAdapter::IsInputComplete(lldb_private::Editline *editline, in IsInputComplete() argument
/external/llvm-project/lldb/source/Expression/
DREPL.cpp519 IOHandlerEditline &editline = static_cast<IOHandlerEditline &>(io_handler); in IOHandlerComplete() local
520 const StringList *current_lines = editline.GetCurrentLines(); in IOHandlerComplete()
522 const uint32_t current_line_idx = editline.GetCurrentLineIndex(); in IOHandlerComplete()
/external/llvm-project/lldb/include/lldb/Core/
DIOHandler.h422 static bool IsInputCompleteCallback(Editline *editline, StringList &lines,
425 static int FixIndentationCallback(Editline *editline, const StringList &lines,
/external/llvm-project/lldb/source/Core/
DIOHandler.cpp427 bool IOHandlerEditline::IsInputCompleteCallback(Editline *editline, in IsInputCompleteCallback() argument
435 int IOHandlerEditline::FixIndentationCallback(Editline *editline, in FixIndentationCallback() argument
/external/python/cpython2/Mac/BuildScript/
DREADME.txt48 * readline module links with Apple BSD editline (libedit)
84 * readline module links with Apple BSD editline (libedit)
/external/python/cpython3/Mac/BuildScript/
DREADME.rst63 * readline module links with Apple BSD editline (libedit)
/external/openssh/
DREADME.md68 ``--with-libedit`` | Enable [libedit](https://www.thrysoee.dk/editline/) support for sftp.
DINSTALL88 http://www.thrysoee.dk/editline/
/external/llvm-project/lldb/cmake/modules/
DLLDBConfig.cmake55 add_optional_dependency(LLDB_ENABLE_LIBEDIT "Enable editline support in LLDB" LibEdit LibEdit_FOUND)
/external/python/cpython3/Misc/NEWS.d/
D3.7.0b5.rst565 the readline initialization through editline emulation on macOS.
D3.8.0a1.rst8014 the readline initialization through editline emulation on macOS.
/external/python/cpython3/Doc/library/
Dreadline.rst39 If you use *editline*/``libedit`` readline emulation on macOS, the
/external/pcre/dist2/src/
Dconfig.h.generic70 /* Define to 1 if you have the <editline/readline.h> header file. */
Dconfig.h.in70 /* Define to 1 if you have the <editline/readline.h> header file. */
/external/pcre/dist2/
Dconfigure.ac594 AC_CHECK_HEADERS([editline/readline.h], [HAVE_EDITLINE_READLINE_H=1],
934 echo "** Cannot --enable-pcre2test-libedit because neither editline/readline.h"
DCMakeLists.txt291 # editline lib
Dconfigure14295 …ac_fn_c_check_header_mongrel "$LINENO" "editline/readline.h" "ac_cv_header_editline_readline_h" "$…
/external/python/cpython2/Misc/NEWS.d/
D2.7.2rc1.rst1072 Fix tab handling on OSX when using editline by calling rl_initialize first,
/external/python/cpython2/
Dconfigure.ac4338 # also in 4.0, but not in editline
/external/python/cpython3/
Dconfigure.ac4940 # also in 4.0, but not in editline
/external/python/cpython3/Misc/
DHISTORY11108 - Issue #9907: Fix tab handling on OSX when using editline by calling