Lines Matching defs:of
56 const char *file; /* filename of current input file */
58 struct buf *secondary; /* preprocessed copy of input */
61 enum mandoclevel file_status; /* status of current parse */
65 int filenc; /* encoding of the current file */
106 "prologue macros out of order",
115 "description not at the end of NAME",
118 "sections out of conventional order",
129 "moving paragraph macro out of list",
133 "moving content out of list",
167 "wrong number of cells",
174 "odd number of characters in request",
179 "whitespace at end of input line",
202 "data block open at end of tbl",
212 "skipping end of block that is not open",
214 "inserting missing end of block",
215 "appending missing end of block",
315 * It can recurse directly (for invocations of user-defined
328 int of;
371 * case of 11 bytes: "\\[u10ffff]\0"
433 /* Comment, skip to end of line */
477 * A significant amount of complexity is contained by
485 of = 0;
488 * Maintain a lookaside buffer of all parsed lines. We
508 rr = roff_parseln(curp->roff, curp->line, &ln, &of);
513 mparse_buf_r(curp, ln, of, 0);
530 curp->sodest = mandoc_strdup(ln.buf + of);
542 if ((fd = mparse_open(curp, ln.buf + of)) != -1) {
543 mparse_readfd(curp, fd, ln.buf + of);
550 ".so %s", ln.buf + of);
553 ln.buf + of);
556 of = 0;
557 mparse_buf_r(curp, ln, of, 0);
591 mdoc_parseln(curp->man, curp->line, ln.buf, of) :
592 man_parseln(curp->man, curp->line, ln.buf, of)) == 2)