Home
last modified time | relevance | path

Searched refs:t_line (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/byacc/
H A Derror.c137 illegal_tag(int t_lineno, const char *t_line, const char *t_cptr) in illegal_tag() argument
141 print_pos(t_line, t_cptr); in illegal_tag()
H A Dreader.c1703 char *t_line = dup_line(); in get_tag() local
1704 char *t_cptr = t_line + (cptr - line); in get_tag()
1711 illegal_tag(t_lineno, t_line, t_cptr); in get_tag()
1726 illegal_tag(t_lineno, t_line, t_cptr); in get_tag()
1729 FREE(t_line); in get_tag()
H A Ddefs.h486 extern GCC_NORETURN void illegal_tag(int t_lineno, const char *t_line, const char *t_cptr);
/freebsd/contrib/ee/
H A Dee.c1985 struct text *t_line; in goto_line() local
1996 t_line = curr_line; in goto_line()
1997 while ((t_line->line_number > number) && (t_line->prev_line != NULL)) in goto_line()
2000 t_line = t_line->prev_line; in goto_line()
2003 while ((t_line->line_number < number) && (t_line->next_line != NULL)) in goto_line()
2007 t_line = t_line->next_line; in goto_line()
2023 curr_line = t_line; in goto_line()