Lines Matching defs:t
1161 enum rofft t;
1199 t = r->last->tok;
1200 assert(roffs[t].text);
1201 e = (*roffs[t].text)(r, t, buf, ln, pos, pos, offs);
1225 * Don't do so if an equation is open.
1229 t = r->last->tok;
1230 assert(roffs[t].sub);
1231 return((*roffs[t].sub)(r, t, buf, ln, ppos, pos, offs));
1237 t = roff_parse(r, buf->buf, &pos, ln, ppos);
1241 if (r->tbl != NULL && (t == ROFF_MAX || t == ROFF_TS)) {
1244 if (t == ROFF_TS)
1258 if (t == ROFF_MAX)
1263 assert(roffs[t].proc);
1264 return((*roffs[t].proc)(r, t, buf, ln, ppos, pos, offs));
1299 enum rofft t;
1303 if ('\0' == *cp || '"' == *cp || '\t' == *cp || ' ' == *cp)
1309 t = (r->current_string = roff_getstrn(r, mac, maclen))
1312 if (ROFF_MAX != t)
1315 return(t);
1501 enum rofft t;
1521 buf->buf[i] == '\t')) {
1525 while (buf->buf[i] == ' ' || buf->buf[i] == '\t')
1541 t = roff_parse(r, buf->buf, &pos, ln, ppos);
1543 if (t != ROFF_cblock) {
1549 assert(roffs[t].proc);
1550 return((*roffs[t].proc)(r, t, buf, ln, ppos, pos, offs));
1566 enum rofft t;
1572 t = roff_parse(r, buf->buf, &pos, ln, ppos);
1579 if ((t != ROFF_MAX) &&
1580 (rr || roffs[t].flags & ROFFMAC_STRUCT)) {
1581 assert(roffs[t].proc);
1582 return((*roffs[t].proc)(r, t, buf, ln, ppos, pos, offs));
1776 case 't':
2427 * in-line, or this function wouldn't have been called;
2632 * Handle `so'. Be EXTREMELY careful, as we shouldn't be
3036 * If it is, adjust the current position and return one; if it isn't,
3037 * return zero and don't change the current position.
3062 while (' ' == cp[pos] || '\t' == cp[pos])