Lines Matching refs:termp

40 static	struct termp	 *ascii_init(enum termenc,
42 static double ascii_hspan(const struct termp *,
44 static size_t ascii_width(const struct termp *, int);
45 static void ascii_advance(struct termp *, size_t);
46 static void ascii_begin(struct termp *);
47 static void ascii_end(struct termp *);
48 static void ascii_endline(struct termp *);
49 static void ascii_letter(struct termp *, int);
50 static void ascii_setwidth(struct termp *, int, size_t);
53 static void locale_advance(struct termp *, size_t);
54 static void locale_endline(struct termp *);
55 static void locale_letter(struct termp *, int);
56 static size_t locale_width(const struct termp *, int);
60 static struct termp *
65 struct termp *p; in ascii_init()
69 p = mandoc_calloc(1, sizeof(struct termp)); in ascii_init()
167 ascii_setwidth(struct termp *p, int iop, size_t width) in ascii_setwidth()
186 struct termp *p; in ascii_sepline()
189 p = (struct termp *)arg; in ascii_sepline()
198 ascii_width(const struct termp *p, int c) in ascii_width()
208 term_free((struct termp *)arg); in ascii_free()
212 ascii_letter(struct termp *p, int c) in ascii_letter()
219 ascii_begin(struct termp *p) in ascii_begin()
226 ascii_end(struct termp *p) in ascii_end()
233 ascii_endline(struct termp *p) in ascii_endline()
240 ascii_advance(struct termp *p, size_t len) in ascii_advance()
249 ascii_hspan(const struct termp *p, const struct roffsu *su) in ascii_hspan()
374 locale_width(const struct termp *p, int c) in locale_width()
387 locale_advance(struct termp *p, size_t len) in locale_advance()
396 locale_endline(struct termp *p) in locale_endline()
403 locale_letter(struct termp *p, int c) in locale_letter()