/external/libedit/src/ |
H A D | emacs.c | 47 #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 D | vi.c | 52 #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 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 D | search.c | 54 #include "el.h" 59 #define EL_CURSOR(el) \ 60 ((el)->el_line.cursor + (((el)->el_map.type == MAP_VI) && \ 61 ((el)->el_map.current == (el)->el_map.alt))) 67 search_init(EditLine *el) argument 70 el->el_search.patbuf = el_malloc(EL_BUFSIZ * 71 sizeof(*el->el_search.patbuf)); 72 if (el 87 search_end(EditLine *el) argument 160 c_hmatch(EditLine *el, const Char *str) argument 175 c_setpat(EditLine *el) argument 207 ce_inc_search(EditLine *el, int dir) argument 455 cv_search(EditLine *el, int dir) argument 529 ce_search_line(EditLine *el, int dir) argument 571 cv_repeat_srch(EditLine *el, Int c) argument 597 cv_csearch(EditLine *el, int direction, Int ch, int count, int tflag) argument [all...] |
H A D | hist.h | 38 * 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 D | hist.c | 48 #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 D | read.c | 53 #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 453 read_prepare(EditLine *el) argument 474 read_finish(EditLine *el) argument [all...] |
H A D | el.c | 1 /* $NetBSD: el.c,v 1.72 2013/01/22 20:23:21 christos Exp $ */ 38 static char sccsid[] = "@(#)el.c 8.2 (Berkeley) 1/3/94"; 40 __RCSID("$NetBSD: el.c,v 1.72 2013/01/22 20:23:21 christos Exp $"); 49 * el.c: EditLine interface functions 59 #include "el.h" 98 EditLine *el = el_malloc(sizeof(*el)); local 100 if (el == NULL) 103 memset(el, 0, sizeof(EditLine)); 105 el 154 el_end(EditLine *el) argument 187 el_reset(EditLine *el) argument 530 el_source(EditLine *el, const char *fname) argument 587 el_resize(EditLine *el) argument 608 el_beep(EditLine *el) argument 620 el_editmode(EditLine *el, int argc, const Char **argv) argument [all...] |
H A D | common.c | 47 #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 187 ed_kill_line(EditLine *el, Int c __attribute__((__unused__))) argument 208 ed_move_to_end(EditLine *el, Int c __attribute__((__unused__))) argument 231 ed_move_to_beg(EditLine *el, Int c __attribute__((__unused__))) argument 254 ed_transpose_chars(EditLine *el, Int c) argument 280 ed_next_char(EditLine *el, Int c __attribute__((__unused__))) argument 309 ed_prev_word(EditLine *el, Int c __attribute__((__unused__))) argument 335 ed_prev_char(EditLine *el, Int c __attribute__((__unused__))) argument 359 ed_quoted_insert(EditLine *el, Int c) argument 379 ed_digit(EditLine *el, Int c) argument 407 ed_argument_digit(EditLine *el, Int c) argument 548 ed_newline(EditLine *el, Int c __attribute__((__unused__))) argument 564 ed_delete_prev_char(EditLine *el, Int c __attribute__((__unused__))) argument 584 ed_clear_screen(EditLine *el, Int c __attribute__((__unused__))) argument 613 ed_start_over(EditLine *el, Int c __attribute__((__unused__))) argument 641 ed_prev_history(EditLine *el, Int c __attribute__((__unused__))) argument 679 ed_next_history(EditLine *el, Int c __attribute__((__unused__))) argument 706 ed_search_prev_history(EditLine *el, Int c __attribute__((__unused__))) argument 774 ed_search_next_history(EditLine *el, Int c __attribute__((__unused__))) argument 828 ed_prev_line(EditLine *el, Int c __attribute__((__unused__))) argument 871 ed_next_line(EditLine *el, Int c __attribute__((__unused__))) argument 905 ed_command(EditLine *el, Int c __attribute__((__unused__))) argument [all...] |
H A D | chared.c | 48 #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 el_cursor(EditLine *el, int n) argument 670 c_gets(EditLine *el, Char *buf, const Char *prompt) argument 735 c_hpos(EditLine *el) argument 754 ch_resizefun(EditLine *el, el_zfunc_t f, void *a) argument [all...] |
H A D | prompt.c | 48 #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 D | refresh.c | 52 #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 D | tty.c | 51 #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, "%s: isatty: %s\n", __func__, 507 if (tty_getty(el, 583 tty_init(EditLine *el) argument 599 tty_end(EditLine *el) argument 899 tty_bind_char(EditLine *el, int force) argument 945 tty_rawmode(EditLine *el) argument 1100 tty_cookedmode(EditLine *el) argument 1125 tty_quotemode(EditLine *el) argument 1160 tty_noquotemode(EditLine *el) argument 1182 tty_stty(EditLine *el, int argc __attribute__((__unused__)), const Char **argv) argument 1342 tty_printchar(EditLine *el, unsigned char *s) argument [all...] |
H A D | eln.c | 41 #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 D | terminal.c | 76 #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] 224 terminal_setflags(EditLine *el) argument 227 if (el->el_tty.t_tabs) 251 (void) fprintf(el->el_errfile, 253 (void) fprintf(el->el_errfile, 257 (void) fprintf(el 269 terminal_init(EditLine *el) argument 306 terminal_end(EditLine *el) argument 328 terminal_alloc(EditLine *el, const struct termcapstr *t, const char *cap) argument 394 terminal_rebuffer_display(EditLine *el) argument 413 terminal_alloc_display(EditLine *el) argument 456 terminal_free_display(EditLine *el) argument 483 terminal_move_to_line(EditLine *el, int where) argument 549 terminal_move_to_char(EditLine *el, int where) argument 647 terminal_overwrite(EditLine *el, const Char *cp, size_t n) argument 697 terminal_deletechars(EditLine *el, int num) argument 739 terminal_insertwrite(EditLine *el, Char *cp, int num) argument 798 terminal_clear_EOL(EditLine *el, int num) argument 816 terminal_clear_screen(EditLine *el) argument 837 terminal_beep(EditLine *el) argument 848 terminal_get(EditLine *el, const char **term) argument 858 terminal_set(EditLine *el, const char *term) argument 947 terminal_get_size(EditLine *el, int *lins, int *cols) argument 983 terminal_change_size(EditLine *el, int lins, int cols) argument 1003 terminal_init_arrow(EditLine *el) argument 1048 terminal_reset_arrow(EditLine *el) argument 1098 terminal_set_arrow(EditLine *el, const Char *name, keymacro_value_t *fun, int type) argument 1118 terminal_clear_arrow(EditLine *el, const Char *name) argument 1136 terminal_print_arrow(EditLine *el, const Char *name) argument 1153 terminal_bind_arrow(EditLine *el) argument 1226 terminal_tputs(EditLine *el, const char *cap, int affcnt) argument 1242 terminal__putc(EditLine *el, Int c) argument 1259 terminal__flush(EditLine *el) argument 1269 terminal_writec(EditLine *el, Int c) argument 1286 terminal_telltc(EditLine *el, int argc __attribute__((__unused__)), const Char **argv __attribute__((__unused__))) argument 1328 terminal_settc(EditLine *el, int argc __attribute__((__unused__)), const Char **argv) argument 1407 terminal_gettc(EditLine *el, int argc __attribute__((__unused__)), char **argv) argument 1461 terminal_echotc(EditLine *el, int argc __attribute__((__unused__)), const Char **argv) argument [all...] |
H A D | map.c | 48 #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 D | keymacro.c | 51 * 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...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
H A D | RewriteRuleSubtreeStream.as | 51 var el:Object; 55 el = _next(); 56 return adaptor.dupNode(el); 59 el = _next(); 60 return el; 63 protected override function dup(el:Object):Object { 64 return adaptor.dupTree(el);
|
H A D | RewriteRuleElementStream.as | 97 public function add(el:Object):void { 98 //System.out.println("add '"+elementDescription+"' is "+el); 99 if ( el==null ) { 103 elements.push(el); 107 singleElement = el; 114 elements.push(el); 124 var el:Object; 127 el = _next(); 128 return dup(el); 131 el [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
H A D | RewriteRuleSubtreeStream.js | 23 el; 27 el = this._next(); 28 return this.adaptor.dupNode(el); 31 el = this._next(); 32 return el; 35 dup: function(el) { 36 return this.adaptor.dupTree(el);
|
H A D | RewriteRuleElementStream.js | 14 org.antlr.runtime.tree.RewriteRuleElementStream = function(adaptor, elementDescription, el) { 32 if (el) { 33 if (org.antlr.lang.isArray(el)) { 35 this.elements = el; 37 this.add(el); 53 add: function(el) { 54 if ( !org.antlr.lang.isValue(el) ) { 58 this.elements.push(el); 62 this.singleElement = el; 69 this.elements.push(el); [all...] |
/external/clang/test/Modules/Inputs/PR20399/ |
H A D | FirstHeader.h | 8 typedef std::map<int>::iterator el; typedef
|
/external/chromium-trace/trace-viewer/third_party/Paste/docs/web/ |
H A D | site.js | 4 var el = els[i]; 5 if (el.className.search(/\bcontents\b/) > -1) { 6 enable_dropdown(el); 11 function enable_dropdown(el) { 12 var title = el.getElementsByTagName('LI')[0]; 27 if (el.sub_hidden) { 28 set_sub_li(el, ''); 33 set_sub_li(el, 'none'); 38 el.sub_hidden = ! el [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.apache.commons.el_1.0.0.v201004212143.jar | ... about_files/ org/ org/apache/ org/apache/commons/ org/apache/commons/el/ org/apache/commons/el/parser/ about.html about_files/LICENSE ... |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
H A D | RewriteRuleSubtreeStream.java | 73 Object el = _next(); 74 return adaptor.dupNode(el); 81 Object el = adaptor.dupNode(tree); // dup just the root (want node here) 82 return el; 85 protected Object dup(Object el) { argument 86 return adaptor.dupTree(el);
|
H A D | RewriteRuleElementStream.java | 111 public void add(Object el) { argument 112 //System.out.println("add '"+elementDescription+"' is "+el); 113 if ( el==null ) { 117 elements.add(el); 121 singleElement = el; 128 elements.add(el); 140 Object el = _next(); 141 return dup(el); 144 Object el = _next(); 145 return el; 182 dup(Object el) argument 187 toTree(Object el) argument [all...] |