Searched refs:readline (Results 1 - 25 of 71) sorted by relevance

123

/freebsd-10-stable/lib/libedit/edit/readline/
H A Dhistory.h32 #include <edit/readline/readline.h>
H A Dtilde.h32 #include <edit/readline/readline.h>
H A DMakefile4 INCS= readline.h history.h tilde.h
6 INCSDIR= ${INCLUDEDIR}/edit/readline
/freebsd-10-stable/gnu/lib/libreadline/
H A DMakefile3 SUBDIR = history readline
/freebsd-10-stable/gnu/lib/libreadline/readline/doc/
H A DMakefile5 INFO = readline rluserman
8 INFOENTRY_readline= "* Readline: (readline). The GNU Readline library"
9 INFOENTRY_rluserman= "* Readline: (readline). The GNU readline library API"
11 CLEANFILES += readline.texi
13 readline.info: rlman.texi rluser.texi rltech.texi version.texi fdl.texi
15 readline.texi: rlman.texi
/freebsd-10-stable/contrib/libreadline/examples/
H A Drlversion.c2 * rlversion -- print out readline's version number
40 # include "readline.h"
42 # include <readline/readline.h>
H A Drltest.c41 # include "readline.h"
44 # include <readline/readline.h>
45 # include <readline/history.h>
56 prompt = "readline$ ";
61 temp = readline (prompt);
H A Dmanexamp.c24 #include <readline/readline.h>
48 line_read = readline ("");
98 /* Tell readline that we are modifying the line, so save the undo
H A Drl.c3 * (or another fd) using readline.
43 # include "readline.h"
47 # include <readline/readline.h>
48 # include <readline/history.h>
97 prompt = "readline$ ";
150 temp = readline (prompt);
H A Drlcat.c2 * rlcat - cat(1) using readline
54 # include "readline.h"
57 # include <readline/readline.h>
58 # include <readline/history.h>
119 while (temp = readline (""))
H A DMakefile.in2 # This is the Makefile for the readline examples subdirectory.
96 fileman.o: $(top_srcdir)/readline.h
97 rltest.o: $(top_srcdir)/readline.h
98 rl.o: $(top_srcdir)/readline.h
99 rlversion.o: $(top_srcdir)/readline.h
101 rlcat.o: $(top_srcdir)/readline.h $(top_srcdir)/history.h
102 rlptytest.o: $(top_srcdir)/readline.h $(top_srcdir)/history.h
H A Dreadlinebuf.h6 * Contents: A streambuf which uses the GNU readline library for line I/O
35 #include <readline/readline.h>
36 #include <readline/history.h>
76 line_ = readline( prompt_ );
91 line_ = readline( prompt_ );
H A Dexcallback.c5 Subject: new readline example
10 I've been using readline 4.0. Specifically, I've been using the perl
16 directory of the readline distribution.
21 alternate interface because readline depreps (using your parlance) the
53 # include "readline.h"
55 # include <readline/readline.h>
58 /* This little examples demonstrates the alternate interface to using readline.
60 * only calls readline when STDIN is readable. Using the alternate interface,
61 * you can do anything else while still using readline (lik
[all...]
/freebsd-10-stable/contrib/libreadline/
H A Dxmalloc.h29 # include <readline/rlstdc.h>
H A Dkeymaps.h1 /* keymaps.h -- Manipulation of readline keymaps. */
35 # include <readline/rlstdc.h>
36 # include <readline/chardefs.h>
37 # include <readline/rltypedefs.h>
H A DMakefile.in2 # Master Makefile for the GNU readline library.
19 RL_LIBRARY_NAME = readline
102 CSOURCES = $(srcdir)/readline.c $(srcdir)/funmap.c $(srcdir)/keymaps.c \
116 HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \
123 OBJECTS = readline.o vi_mode.o funmap.o keymaps.o parens.o search.o \
130 DOCOBJECT = doc/readline.dvi
139 INSTALLED_HEADERS = readline.h chardefs.h keymaps.h history.h tilde.h \
162 # Since tilde.c is shared between readline and bash, make sure we compile
163 # it with the right flags when it's built as part of readline
168 readline
[all...]
H A DMANIFEST2 # Master distribution manifest for the standalone readline distribution
30 readline.h f
59 readline.c f
99 doc/readline.3 f
128 doc/readline.ps f
131 doc/readline.dvi f
134 doc/readline.info f
137 doc/readline.html f
140 doc/readline.0 f
145 doc/readline
[all...]
/freebsd-10-stable/gnu/lib/libreadline/readline/
H A DMakefile5 LIB= readline
6 MAN= doc/readline.3
10 SRCS= readline.c vi_mode.c funmap.c keymaps.c parens.c search.c \
15 INSTALLED_HEADERS= readline.h chardefs.h keymaps.h history.h tilde.h \
21 INCSDIR=${INCLUDEDIR}/readline
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/
H A Dembedded_interpreter.py8 import readline
14 if 'libedit' in readline.__doc__:
15 readline.parse_and_bind('bind ^I rl_complete')
17 readline.parse_and_bind('tab: complete')
60 return sys.stdin.readline()
/freebsd-10-stable/crypto/heimdal/lib/wind/
H A DUnicodeData.py45 l = ud.readline()
H A Drfc3454.py46 l = f.readline()
/freebsd-10-stable/contrib/ntp/libntp/
H A Dntp_lineedit.c19 # include <readline/readline.h>
20 # include <readline/history.h>
178 line = readline(lineedit_prompt ? lineedit_prompt : "");
/freebsd-10-stable/contrib/libreadline/shlib/
H A DMakefile.in2 # Makefile for the GNU readline library shared library support.
29 RL_LIBRARY_NAME = readline
119 SHARED_READLINE = $(SHLIB_LIBPREF)readline$(SHLIB_DOT)$(SHLIB_LIBVERSION)
124 CSOURCES = $(topdir)/readline.c $(topdir)/funmap.c $(topdir)/keymaps.c \
138 HSOURCES = readline.h rldefs.h chardefs.h keymaps.h history.h histlib.h \
145 SHARED_OBJ = readline.so vi_mode.so funmap.so keymaps.so parens.so search.so \
163 @echo "for inclusion in future bash and readline releases."
173 # Since tilde.c is shared between readline and bash, make sure we compile
174 # it with the right flags when it's built as part of readline
208 bind.so: $(topdir)/readline
[all...]
/freebsd-10-stable/contrib/wpa/src/utils/
H A Dedit_readline.c2 * Command line editing and history wrapper for readline
10 #include <readline/readline.h>
11 #include <readline/history.h>
/freebsd-10-stable/tools/debugscripts/
H A Dkld_deb.py76 l = inp.readline()
80 l += inp.readline()
82 l = inp.readline()

Completed in 205 milliseconds

123