Searched refs:el (Results 1 - 25 of 216) sorted by relevance

123456789

/netbsd-6-1-5-RELEASE/lib/libedit/
H A Demacs.c47 #include "el.h"
55 em_delete_or_list(EditLine *el, Int c) argument
58 if (el->el_line.cursor == el->el_line.lastchar) {
60 if (el->el_line.cursor == el->el_line.buffer) {
62 terminal_writec(el, c); /* then do an EOF */
69 terminal_beep(el);
73 if (el->el_state.doingarg)
74 c_delafter(el, e
91 em_delete_next_word(EditLine *el, Int c __attribute__((__unused__))) argument
120 em_yank(EditLine *el, Int c __attribute__((__unused__))) argument
156 em_kill_line(EditLine *el, Int c __attribute__((__unused__))) argument
178 em_kill_region(EditLine *el, Int c __attribute__((__unused__))) argument
211 em_copy_region(EditLine *el, Int c __attribute__((__unused__))) argument
240 em_gosmacs_transpose(EditLine *el, Int c) argument
260 em_next_word(EditLine *el, Int c __attribute__((__unused__))) argument
285 em_upper_case(EditLine *el, Int c __attribute__((__unused__))) argument
309 em_capitol_case(EditLine *el, Int c __attribute__((__unused__))) argument
341 em_lower_case(EditLine *el, Int c __attribute__((__unused__))) argument
365 em_set_mark(EditLine *el, Int c __attribute__((__unused__))) argument
379 em_exchange_mark(EditLine *el, Int c __attribute__((__unused__))) argument
396 em_universal_argument(EditLine *el, Int c __attribute__((__unused__))) argument
413 em_meta_next(EditLine *el, Int c __attribute__((__unused__))) argument
426 em_toggle_overwrite(EditLine *el, Int c __attribute__((__unused__))) argument
440 em_copy_prev_word(EditLine *el, Int c __attribute__((__unused__))) argument
467 em_inc_search_next(EditLine *el, Int c __attribute__((__unused__))) argument
480 em_inc_search_prev(EditLine *el, Int c __attribute__((__unused__))) argument
494 em_delete_prev_char(EditLine *el, Int c __attribute__((__unused__))) argument
[all...]
H A Dvi.c52 #include "el.h"
61 cv_action(EditLine *el, Int c) argument
64 if (el->el_chared.c_vcmd.action != NOP) {
66 if (c != (Int)el->el_chared.c_vcmd.action)
70 cv_undo(el);
71 cv_yank(el, el->el_line.buffer,
72 (int)(el->el_line.lastchar - el->el_line.buffer));
73 el
93 cv_paste(EditLine *el, Int c) argument
125 vi_paste_next(EditLine *el, Int c __attribute__((__unused__))) argument
138 vi_paste_prev(EditLine *el, Int c __attribute__((__unused__))) argument
151 vi_prev_big_word(EditLine *el, Int c __attribute__((__unused__))) argument
176 vi_prev_word(EditLine *el, Int c __attribute__((__unused__))) argument
201 vi_next_big_word(EditLine *el, Int c __attribute__((__unused__))) argument
225 vi_next_word(EditLine *el, Int c __attribute__((__unused__))) argument
248 vi_change_case(EditLine *el, Int c) argument
280 vi_change_meta(EditLine *el, Int c __attribute__((__unused__))) argument
297 vi_insert_at_bol(EditLine *el, Int c __attribute__((__unused__))) argument
313 vi_replace_char(EditLine *el, Int c __attribute__((__unused__))) argument
332 vi_replace_mode(EditLine *el, Int c __attribute__((__unused__))) argument
348 vi_substitute_char(EditLine *el, Int c __attribute__((__unused__))) argument
363 vi_substitute_line(EditLine *el, Int c __attribute__((__unused__))) argument
381 vi_change_to_eol(EditLine *el, Int c __attribute__((__unused__))) argument
399 vi_insert(EditLine *el, Int c __attribute__((__unused__))) argument
414 vi_add(EditLine *el, Int c __attribute__((__unused__))) argument
439 vi_add_at_eol(EditLine *el, Int c __attribute__((__unused__))) argument
455 vi_delete_meta(EditLine *el, Int c __attribute__((__unused__))) argument
468 vi_end_big_word(EditLine *el, Int c __attribute__((__unused__))) argument
492 vi_end_word(EditLine *el, Int c __attribute__((__unused__))) argument
516 vi_undo(EditLine *el, Int c __attribute__((__unused__))) argument
543 vi_command_mode(EditLine *el, Int c __attribute__((__unused__))) argument
567 vi_zero(EditLine *el, Int c) argument
588 vi_delete_prev_char(EditLine *el, Int c __attribute__((__unused__))) argument
606 vi_list_or_eof(EditLine *el, Int c) argument
643 vi_kill_line_prev(EditLine *el, Int c __attribute__((__unused__))) argument
664 vi_search_prev(EditLine *el, Int c __attribute__((__unused__))) argument
677 vi_search_next(EditLine *el, Int c __attribute__((__unused__))) argument
690 vi_repeat_search_next(EditLine *el, Int c __attribute__((__unused__))) argument
706 vi_repeat_search_prev(EditLine *el, Int c __attribute__((__unused__))) argument
724 vi_next_char(EditLine *el, Int c __attribute__((__unused__))) argument
736 vi_prev_char(EditLine *el, Int c __attribute__((__unused__))) argument
748 vi_to_next_char(EditLine *el, Int c __attribute__((__unused__))) argument
760 vi_to_prev_char(EditLine *el, Int c __attribute__((__unused__))) argument
772 vi_repeat_next_char(EditLine *el, Int c __attribute__((__unused__))) argument
786 vi_repeat_prev_char(EditLine *el, Int c __attribute__((__unused__))) argument
804 vi_match(EditLine *el, Int c __attribute__((__unused__))) argument
851 vi_undo_line(EditLine *el, Int c __attribute__((__unused__))) argument
865 vi_to_column(EditLine *el, Int c __attribute__((__unused__))) argument
879 vi_yank_end(EditLine *el, Int c __attribute__((__unused__))) argument
893 vi_yank(EditLine *el, Int c __attribute__((__unused__))) argument
905 vi_comment_out(EditLine *el, Int c __attribute__((__unused__))) argument
927 vi_alias(EditLine *el, Int c __attribute__((__unused__))) argument
957 vi_to_history_line(EditLine *el, Int c __attribute__((__unused__))) argument
1002 vi_histedit(EditLine *el, Int c __attribute__((__unused__))) argument
1086 vi_history_word(EditLine *el, Int c __attribute__((__unused__))) argument
1136 vi_redo(EditLine *el, Int c __attribute__((__unused__))) argument
[all...]
H A Dsearch.c53 #include "el.h"
58 #define EL_CURSOR(el) \
59 ((el)->el_line.cursor + (((el)->el_map.type == MAP_VI) && \
60 ((el)->el_map.current == (el)->el_map.alt)))
66 search_init(EditLine *el) argument
69 el->el_search.patbuf = el_malloc(EL_BUFSIZ *
70 sizeof(*el->el_search.patbuf));
71 if (el
86 search_end(EditLine *el) argument
159 c_hmatch(EditLine *el, const Char *str) argument
174 c_setpat(EditLine *el) argument
206 ce_inc_search(EditLine *el, int dir) argument
454 cv_search(EditLine *el, int dir) argument
528 ce_search_line(EditLine *el, int dir) argument
570 cv_repeat_srch(EditLine *el, Int c) argument
596 cv_csearch(EditLine *el, int direction, Int ch, int count, int tflag) argument
[all...]
H A Dhist.h38 * el.hist.c: History functions
57 #define HIST_FUN_INTERNAL(el, fn, arg) \
58 ((((*(el)->el_history.fun) ((el)->el_history.ref, &(el)->el_history.ev, \
59 fn, arg)) == -1) ? NULL : (el)->el_history.ev.str)
61 #define HIST_FUN(el, fn, arg) \
62 (((el)->el_flags & NARROW_HISTORY) ? hist_convert(el, fn, arg) : \
63 HIST_FUN_INTERNAL(el, f
[all...]
H A Dhist.c48 #include "el.h"
54 hist_init(EditLine *el) argument
57 el->el_history.fun = NULL;
58 el->el_history.ref = NULL;
59 el->el_history.buf = el_malloc(EL_BUFSIZ * sizeof(*el->el_history.buf));
60 el->el_history.sz = EL_BUFSIZ;
61 if (el->el_history.buf == NULL)
63 el->el_history.last = el
72 hist_end(EditLine *el) argument
84 hist_set(EditLine *el, hist_fun_t fun, void *ptr) argument
98 hist_get(EditLine *el) argument
157 hist_command(EditLine *el, int argc, const Char **argv) argument
195 hist_enlargebuf(EditLine *el, size_t oldsz, size_t newsz) argument
215 hist_convert(EditLine *el, int fn, void *arg) argument
[all...]
H A Dread.c53 #include "el.h"
67 read_init(EditLine *el) argument
70 el->el_read.read_char = read_char;
80 el_read_setfn(EditLine *el, el_rfunc_t rc) argument
82 el->el_read.read_char = (rc == EL_BUILTIN_GETCFN) ? read_char : rc;
92 el_read_getfn(EditLine *el) argument
94 return el->el_read.read_char == read_char ?
95 EL_BUILTIN_GETCFN : el->el_read.read_char;
105 read_debug(EditLine *el) argument
108 if (el
188 read_preread(EditLine *el) argument
240 read_getcmd(EditLine *el, el_action_t *cmdnum, Char *ch) argument
313 read_char(EditLine *el, Char *cp) argument
441 read_prepare(EditLine *el) argument
462 read_finish(EditLine *el) argument
[all...]
H A Dcommon.c47 #include "el.h"
55 ed_end_of_file(EditLine *el, Int c __attribute__((__unused__))) argument
58 re_goto_bottom(el);
59 *el->el_line.lastchar = '\0';
69 ed_insert(EditLine *el, Int c) argument
71 int count = el->el_state.argument;
76 if (el->el_line.lastchar + el->el_state.argument >=
77 el->el_line.limit) {
79 if (!ch_enlargebufs(el, (size_
112 ed_delete_prev_word(EditLine *el, Int c __attribute__((__unused__))) argument
140 ed_delete_next_char(EditLine *el, Int c __attribute__((__unused__))) argument
190 ed_kill_line(EditLine *el, Int c __attribute__((__unused__))) argument
211 ed_move_to_end(EditLine *el, Int c __attribute__((__unused__))) argument
234 ed_move_to_beg(EditLine *el, Int c __attribute__((__unused__))) argument
257 ed_transpose_chars(EditLine *el, Int c) argument
283 ed_next_char(EditLine *el, Int c __attribute__((__unused__))) argument
312 ed_prev_word(EditLine *el, Int c __attribute__((__unused__))) argument
338 ed_prev_char(EditLine *el, Int c __attribute__((__unused__))) argument
362 ed_quoted_insert(EditLine *el, Int c) argument
382 ed_digit(EditLine *el, Int c) argument
410 ed_argument_digit(EditLine *el, Int c) argument
551 ed_newline(EditLine *el, Int c __attribute__((__unused__))) argument
567 ed_delete_prev_char(EditLine *el, Int c __attribute__((__unused__))) argument
587 ed_clear_screen(EditLine *el, Int c __attribute__((__unused__))) argument
616 ed_start_over(EditLine *el, Int c __attribute__((__unused__))) argument
644 ed_prev_history(EditLine *el, Int c __attribute__((__unused__))) argument
682 ed_next_history(EditLine *el, Int c __attribute__((__unused__))) argument
709 ed_search_prev_history(EditLine *el, Int c __attribute__((__unused__))) argument
777 ed_search_next_history(EditLine *el, Int c __attribute__((__unused__))) argument
831 ed_prev_line(EditLine *el, Int c __attribute__((__unused__))) argument
874 ed_next_line(EditLine *el, Int c __attribute__((__unused__))) argument
908 ed_command(EditLine *el, Int c __attribute__((__unused__))) argument
[all...]
H A Del.c1 /* $NetBSD: el.c,v 1.68 2011/07/29 15:16:33 christos Exp $ */
38 static char sccsid[] = "@(#)el.c 8.2 (Berkeley) 1/3/94";
40 __RCSID("$NetBSD: el.c,v 1.68 2011/07/29 15:16:33 christos Exp $");
45 * el.c: EditLine interface functions
55 #include "el.h"
63 EditLine *el = el_malloc(sizeof(*el)); local
65 if (el == NULL)
68 memset(el, 0, sizeof(EditLine));
70 el
119 el_end(EditLine *el) argument
152 el_reset(EditLine *el) argument
495 el_source(EditLine *el, const char *fname) argument
563 el_resize(EditLine *el) argument
584 el_beep(EditLine *el) argument
596 el_editmode(EditLine *el, int argc, const Char **argv) argument
[all...]
H A Dprompt.c48 #include "el.h"
58 prompt_default(EditLine *el __attribute__((__unused__)))
71 prompt_default_r(EditLine *el __attribute__((__unused__)))
83 prompt_print(EditLine *el, int op) argument
90 elp = &el->el_prompt;
92 elp = &el->el_rprompt;
95 p = (*elp->p_func)(el);
97 p = ct_decode_string((char *)(void *)(*elp->p_func)(el),
98 &el->el_scratch);
106 terminal__putc(el, *
120 prompt_init(EditLine *el) argument
149 prompt_set(EditLine *el, el_pfunc_t prf, Char c, int op, int wide) argument
181 prompt_get(EditLine *el, el_pfunc_t *prf, Char *c, int op) argument
[all...]
H A Drefresh.c52 #include "el.h"
66 #define __F el->el_errfile
79 re_printstr(EditLine *el, const char *str, char *f, char *t) argument
96 re_nextline(EditLine *el) argument
98 el->el_refresh.r_cursor.h = 0; /* reset it. */
106 if (el->el_refresh.r_cursor.v + 1 >= el->el_terminal.t_size.v) {
107 int i, lins = el->el_terminal.t_size.v;
108 Char *firstline = el->el_vdisplay[0];
111 el
128 re_addc(EditLine *el, Int c) argument
164 re_putc(EditLine *el, Int c, int shift) argument
200 re_refresh(EditLine *el) argument
344 re_goto_bottom(EditLine *el) argument
457 re_clear_eol(EditLine *el, int fx, int sx, int diff) argument
501 re_update_line(EditLine *el, Char *old, Char *new, int i) argument
992 re_refresh_cursor(EditLine *el) argument
1055 re_fastputc(EditLine *el, Int c) argument
1108 re_fastaddc(EditLine *el) argument
1150 re_clear_display(EditLine *el) argument
1166 re_clear_lines(EditLine *el) argument
[all...]
H A Dchared.c48 #include "el.h"
59 cv_undo(EditLine *el) argument
61 c_undo_t *vu = &el->el_chared.c_undo;
62 c_redo_t *r = &el->el_chared.c_redo;
66 size = (size_t)(el->el_line.lastchar - el->el_line.buffer);
68 vu->cursor = (int)(el->el_line.cursor - el->el_line.buffer);
69 (void)memcpy(vu->buf, el->el_line.buffer, size * sizeof(*vu->buf));
72 r->count = el
83 cv_yank(EditLine *el, const Char *ptr, int size) argument
96 c_insert(EditLine *el, int num) argument
118 c_delafter(EditLine *el, int num) argument
144 c_delafter1(EditLine *el) argument
159 c_delbefore(EditLine *el, int num) argument
187 c_delbefore1(EditLine *el) argument
278 cv_next_word(EditLine *el, Char *p, Char *high, int n, int (*wtest)(Int)) argument
333 cv_delfini(EditLine *el) argument
393 ch_init(EditLine *el) argument
458 ch_reset(EditLine *el, int mclear) argument
486 ch__clearmacro(EditLine *el) argument
498 ch_enlargebufs(EditLine *el, size_t addlen) argument
587 ch_end(EditLine *el) argument
633 el_deletestr(EditLine *el, int n) argument
651 c_gets(EditLine *el, Char *buf, const Char *prompt) argument
716 c_hpos(EditLine *el) argument
735 ch_resizefun(EditLine *el, el_zfunc_t f, void *a) argument
[all...]
H A Dtty.c51 #include "el.h"
469 tty_getty(EditLine *el, struct termios *t) argument
472 while ((rv = tcgetattr(el->el_infd, t)) == -1 && errno == EINTR)
481 tty_setty(EditLine *el, int action, const struct termios *t) argument
484 while ((rv = tcsetattr(el->el_infd, action, t)) == -1 && errno == EINTR)
493 tty_setup(EditLine *el) argument
497 if (el->el_flags & EDIT_DISABLED)
500 if (!isatty(el->el_outfd)) {
502 (void) fprintf(el->el_errfile,
507 if (tty_getty(el,
584 tty_init(EditLine *el) argument
896 tty_bind_char(EditLine *el, int force) argument
942 tty_rawmode(EditLine *el) argument
1097 tty_cookedmode(EditLine *el) argument
1123 tty_quotemode(EditLine *el) argument
1158 tty_noquotemode(EditLine *el) argument
1180 tty_stty(EditLine *el, int argc __attribute__((__unused__)), const Char **argv) argument
1337 tty_printchar(EditLine *el, unsigned char *s) argument
[all...]
H A Deln.c41 #include "el.h"
48 el_getc(EditLine *el, char *cp) argument
53 if (!(el->el_flags & CHARSET_IS_UTF8))
54 el->el_flags |= IGNORE_EXTCHARS;
55 num_read = el_wgetc (el, &wc);
56 if (!(el->el_flags & CHARSET_IS_UTF8))
57 el->el_flags &= ~IGNORE_EXTCHARS;
66 el_push(EditLine *el, const char *str) argument
70 el_wpush(el, ct_decode_string(str, &el
75 el_gets(EditLine *el, int *nread) argument
87 el_parse(EditLine *el, int argc, const char *argv[]) argument
104 el_set(EditLine *el, int op, ...) argument
256 el_get(EditLine *el, int op, ...) argument
344 el_line(EditLine *el) argument
368 el_insertstr(EditLine *el, const char *str) argument
[all...]
H A Dterminal.c76 #include "el.h"
87 #define GoodStr(a) (el->el_terminal.t_str[a] != NULL && \
88 el->el_terminal.t_str[a][0] != '\0')
89 #define Str(a) el->el_terminal.t_str[a]
90 #define Val(a) el->el_terminal.t_val[a]
222 terminal_setflags(EditLine *el) argument
225 if (el->el_tty.t_tabs)
249 (void) fprintf(el->el_errfile,
251 (void) fprintf(el->el_errfile,
255 (void) fprintf(el
267 terminal_init(EditLine *el) argument
304 terminal_end(EditLine *el) argument
326 terminal_alloc(EditLine *el, const struct termcapstr *t, const char *cap) argument
392 terminal_rebuffer_display(EditLine *el) argument
411 terminal_alloc_display(EditLine *el) argument
454 terminal_free_display(EditLine *el) argument
481 terminal_move_to_line(EditLine *el, int where) argument
547 terminal_move_to_char(EditLine *el, int where) argument
645 terminal_overwrite(EditLine *el, const Char *cp, size_t n) argument
695 terminal_deletechars(EditLine *el, int num) argument
737 terminal_insertwrite(EditLine *el, Char *cp, int num) argument
796 terminal_clear_EOL(EditLine *el, int num) argument
814 terminal_clear_screen(EditLine *el) argument
835 terminal_beep(EditLine *el) argument
846 terminal_get(EditLine *el, const char **term) argument
856 terminal_set(EditLine *el, const char *term) argument
945 terminal_get_size(EditLine *el, int *lins, int *cols) argument
981 terminal_change_size(EditLine *el, int lins, int cols) argument
1001 terminal_init_arrow(EditLine *el) argument
1041 terminal_reset_arrow(EditLine *el) argument
1091 terminal_set_arrow(EditLine *el, const Char *name, keymacro_value_t *fun, int type) argument
1111 terminal_clear_arrow(EditLine *el, const Char *name) argument
1129 terminal_print_arrow(EditLine *el, const Char *name) argument
1146 terminal_bind_arrow(EditLine *el) argument
1219 terminal_tputs(EditLine *el, const char *cap, int affcnt) argument
1235 terminal__putc(EditLine *el, Int c) argument
1252 terminal__flush(EditLine *el) argument
1262 terminal_writec(EditLine *el, Int c) argument
1279 terminal_telltc(EditLine *el, int argc __attribute__((__unused__)), const Char **argv __attribute__((__unused__))) argument
1321 terminal_settc(EditLine *el, int argc __attribute__((__unused__)), const Char **argv) argument
1400 terminal_gettc(EditLine *el, int argc __attribute__((__unused__)), char **argv) argument
1454 terminal_echotc(EditLine *el, int argc __attribute__((__unused__)), const Char **argv) argument
[all...]
H A Dmap.c48 #include "el.h"
891 map_init(EditLine *el) argument
899 EL_ABORT((el->errfile, "Emacs map incorrect\n"));
901 EL_ABORT((el->errfile, "Vi command map incorrect\n"));
903 EL_ABORT((el->errfile, "Vi insert map incorrect\n"));
906 el->el_map.alt = el_malloc(sizeof(*el->el_map.alt) * N_KEYS);
907 if (el->el_map.alt == NULL)
909 el->el_map.key = el_malloc(sizeof(*el
940 map_end(EditLine *el) argument
961 map_init_nls(EditLine *el) argument
977 map_init_meta(EditLine *el) argument
1018 map_init_vi(EditLine *el) argument
1048 map_init_emacs(EditLine *el) argument
1082 map_set_editor(EditLine *el, Char *editor) argument
1101 map_get_editor(EditLine *el, const Char **editor) argument
1122 map_print_key(EditLine *el, el_action_t *map, const Char *in) argument
1145 map_print_some_keys(EditLine *el, el_action_t *map, Int first, Int last) argument
1209 map_print_all_keys(EditLine *el) argument
1244 map_bind(EditLine *el, int argc, const Char **argv) argument
1396 map_addfunc(EditLine *el, const Char *name, const Char *help, el_func_t func) argument
[all...]
H A Dkeymacro.c51 * el->el_keymacro.map)
58 * are in el->el_keymacro.map, adding the key "abc" will cause
69 #include "el.h"
72 * The Nodes of the el->el_keymacro.map. The el->el_keymacro.map is a
104 keymacro_init(EditLine *el) argument
107 el->el_keymacro.buf = el_malloc(KEY_BUFSIZ *
108 sizeof(*el->el_keymacro.buf));
109 if (el->el_keymacro.buf == NULL)
111 el
120 keymacro_end(EditLine *el) argument
133 keymacro_map_cmd(EditLine *el, int cmd) argument
145 keymacro_map_str(EditLine *el, Char *str) argument
159 keymacro_reset(EditLine *el) argument
177 keymacro_get(EditLine *el, Char *ch, keymacro_value_t *val) argument
191 keymacro_add(EditLine *el, const Char *key, keymacro_value_t *val, int ntype) argument
219 keymacro_clear(EditLine *el, el_action_t *map, const Char *in) argument
239 keymacro_delete(EditLine *el, const Char *key) argument
260 keymacro_print(EditLine *el, const Char *key) argument
281 node_trav(EditLine *el, keymacro_node_t *ptr, Char *ch, keymacro_value_t *val) argument
318 node__try(EditLine *el, keymacro_node_t *ptr, const Char *str, keymacro_value_t *val, int ntype) argument
381 node__delete(EditLine *el, keymacro_node_t **inptr, const Char *str) argument
429 node__put(EditLine *el, keymacro_node_t *ptr) argument
491 node_lookup(EditLine *el, const Char *str, keymacro_node_t *ptr, size_t cnt) argument
543 node_enum(EditLine *el, keymacro_node_t *ptr, size_t cnt) argument
586 keymacro_kprint(EditLine *el, const Char *key, keymacro_value_t *val, int ntype) argument
[all...]
/netbsd-6-1-5-RELEASE/distrib/syspkg/sets/base/base-locale-el/
H A DMakefile3 PKGBASE=base-locale-el
/netbsd-6-1-5-RELEASE/distrib/syspkg/sets/base/base-util_locale-el/
H A DMakefile3 PKGBASE=base-util_locale-el
/netbsd-6-1-5-RELEASE/tests/util/xlint/lint1/
H A Dd_nested_structs.c6 EditLine *el; member in struct:__anon9709
18 .command = { .el = 0, .hist = 0, },
19 .string = { .el = 0, .hist = 0, },
20 .filec = { .el = 0, .hist = 0, },
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/tests/
H A Dformat-elisp-18 tmpfiles="$tmpfiles f-el-1.data"
9 cat <<\EOF > f-el-1.data
105 tmpfiles="$tmpfiles f-el-1-$n.in f-el-1-$n.po"
106 cat <<EOF > f-el-1-$n.in
109 ${XGETTEXT} -L EmacsLisp -o f-el-1-$n.po f-el-1-$n.in || exit 1
110 test -f f-el-1-$n.po || exit 1
113 if grep elisp-format f-el-1-$n.po > /dev/null; then
119 if grep elisp-format f-el
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Duninit-1-O0.c14 void remove_dupes (struct list *el) argument
18 for (p = el; p; p = p->next)
20 for (q = el; q != p; q = q->next)
H A Duninit-1.c14 void remove_dupes (struct list *el) argument
18 for (p = el; p; p = p->next)
20 for (q = el; q != p; q = q->next)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Duninit-1.c14 void remove_dupes (struct list *el) argument
18 for (p = el; p; p = p->next)
20 for (q = el; q != p; q = q->next)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D950221-1.c13 int el; variable
36 if (parsefile->fd == 0L && el)
40 rl_cp = g1 (el, &len);
52 el = 0;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D950221-1.c13 int el; variable
36 if (parsefile->fd == 0L && el)
40 rl_cp = g1 (el, &len);
52 el = 0;

Completed in 178 milliseconds

123456789