| /src/external/bsd/nvi/dist/common/ |
| log.h | 28 MARK pos;
|
| log.c | 41 * LOG_CURSOR_INIT MARK 42 * LOG_CURSOR_END MARK 211 BINC_RETC(sp, sp->wp->l_lp, sp->wp->l_len, sizeof(u_char) + sizeof(MARK)); 213 memmove(sp->wp->l_lp + sizeof(u_char), &ep->l_cursor, sizeof(MARK)); 220 data.size = sizeof(u_char) + sizeof(MARK); 229 /* Reset high water mark. */ 348 /* Reset high water mark. */ 356 * Log a mark position. For the log to work, we assume that there 396 vtrace(sp, "%lu: mark %c: %lu/%u\n", 399 /* Reset high water mark. * [all...] |
| log1.c | 41 * LOG_CURSOR_INIT MARK 42 * LOG_CURSOR_END MARK 210 BINC_RETC(sp, sp->wp->l_lp, sp->wp->l_len, sizeof(u_char) + sizeof(MARK)); 212 memmove(sp->wp->l_lp + sizeof(u_char), &ep->l_cursor, sizeof(MARK)); 219 data.size = sizeof(u_char) + sizeof(MARK); 228 /* Reset high water mark. */ 347 /* Reset high water mark. */ 355 * Log a mark position. For the log to work, we assume that there 395 vtrace("%lu: mark %c: %lu/%u\n", 398 /* Reset high water mark. * [all...] |
| common.h | 47 typedef struct _mark MARK; 99 #include "mark.h" /* Required by gs.h. */
|
| exf.h | 36 MARK l_cursor; /* Log cursor position. */ 40 LIST_HEAD(_markh, _lmark) marks;/* Linked list of file MARK's. */
|
| log4.c | 40 * LOG_CURSOR_INIT MARK 41 * LOG_CURSOR_END MARK 234 /* Reset high water mark. */ 317 /* Reset high water mark. */ 325 * Log a mark position. For the log to work, we assume that there 358 vtrace(sp, "%lu: mark %c: %lu/%u\n", 361 /* Reset high water mark. */ 370 * PUBLIC: int log_backward __P((SCR *, MARK *)); 373 log_backward(SCR *sp, MARK *rp) 377 MARK m [all...] |
| delete.c | 38 * PUBLIC: int del __P((SCR *, MARK *, MARK *, int)); 41 del(SCR *sp, MARK *fm, MARK *tm, int lmode)
|
| mark.c | 1 /* $NetBSD: mark.c,v 1.4 2014/01/26 21:43:45 christos Exp $ */ 16 static const char sccsid[] = "Id: mark.c,v 10.15 2001/06/25 15:19:11 skimo Exp (Berkeley) Date: 2001/06/25 15:19:11 "; 19 __RCSID("$NetBSD: mark.c,v 1.4 2014/01/26 21:43:45 christos Exp $"); 42 * Marks are fixed, and modifications to the line don't update the mark's 44 * place a mark in that text, undo the addition and use ` to move to the 45 * mark, the location will have disappeared. It's tempting to try to adjust 46 * the mark with the changes in the line, but this is hard to do, especially 48 * would move to the first non-blank on the line when the mark location was 49 * past the end of the line. This can be complicated by deleting to a mark 55 * mark had been subsequently reset. Tricky. This is hard to start with [all...] |
| put.c | 38 * PUBLIC: int put __P((SCR *, CB *, ARG_CHAR_T *, MARK *, MARK *, int)); 41 put(SCR *sp, CB *cbp, ARG_CHAR_T *namep, MARK *cp, MARK *rp, int append)
|
| search.c | 147 * PUBLIC: MARK *, MARK *, CHAR_T *, size_t, CHAR_T **, u_int)); 150 f_search(SCR *sp, MARK *fm, MARK *rm, CHAR_T *ptrn, size_t plen, CHAR_T **eptrn, u_int flags) 292 * PUBLIC: MARK *, MARK *, CHAR_T *, size_t, CHAR_T **, u_int)); 295 b_search(SCR *sp, MARK *fm, MARK *rm, CHAR_T *ptrn, size_t plen, CHAR_T **eptrn, u_int flags)
|
| api.c | 187 * Get the mark. 189 * PUBLIC: int api_getmark __P((SCR *, int, MARK *)); 192 api_getmark(SCR *sp, int markname, MARK *mp) 199 * Set the mark. 201 * PUBLIC: int api_setmark __P((SCR *, int, MARK *)); 204 api_setmark(SCR *sp, int markname, MARK *mp) 211 * Return the first mark if next not set, otherwise return the 212 * subsequent mark. 238 * PUBLIC: int api_getcursor __P((SCR *, MARK *)); 241 api_getcursor(SCR *sp, MARK *mp [all...] |
| /src/external/bsd/nvi/dist/vi/ |
| v_util.c | 41 * PUBLIC: void v_eof __P((SCR *, MARK *)); 44 v_eof(SCR *sp, MARK *mp) 64 * PUBLIC: void v_eol __P((SCR *, MARK *)); 67 v_eol(SCR *sp, MARK *mp) 99 * PUBLIC: void v_sof __P((SCR *, MARK *)); 102 v_sof(SCR *sp, MARK *mp)
|
| vi.h | 123 MARK m_start; /* mark: initial cursor, range start. */ 124 MARK m_stop; /* mark: range end. */ 125 MARK m_final; /* mark: final cursor position. */ 131 #define V_ABS 0x00004000 /* Absolute movement, set '' mark. */ 260 MARK sel; /* Select start position. */
|
| v_match.c | 44 MARK *mp; 51 static MARK match = { 0, 0 };
|
| /src/external/bsd/nvi/dist/ex/ |
| ex_put.c | 42 MARK m;
|
| ex_undo.c | 42 MARK m; 46 * Historic undo always set the previous context mark.
|
| ex_print.c | 99 * PUBLIC: int ex_print __P((SCR *, EXCMD *, MARK *, MARK *, u_int32_t)); 102 ex_print(SCR *sp, EXCMD *cmdp, MARK *fp, MARK *tp, u_int32_t flags) 175 * PUBLIC: int ex_scprint __P((SCR *, MARK *, MARK *)); 178 ex_scprint(SCR *sp, MARK *fp, MARK *tp)
|
| ex.h | 117 MARK addr1; /* Command: 1st address. */ 118 MARK addr2; /* Command: 2nd address. */ 147 #define E_ABSMARK 0x00040000 /* Set the absolute mark. */
|
| ex_move.c | 43 MARK fm1, fm2, m, tm; 96 MARK fm1, fm2; 119 * the old mark positions, make the changes, then log the new mark 124 * Reset the MARK_USERSET flag so that the log can undo the mark.
|
| ex_filter.c | 96 * PUBLIC: EXCMD *, MARK *, MARK *, MARK *, CHAR_T *, enum filtertype)); 99 ex_filter(SCR *sp, EXCMD *cmdp, MARK *fm, MARK *tm, MARK *rp, CHAR_T *cmd, enum filtertype ftype) 163 * appends to the MARK, and closes ofp. 253 * pipe. Ex_readfp appends to the MARK and closes
|
| ex_write.c | 134 MARK rm; 289 * PUBLIC: const char *, FILE *, MARK *, MARK *, u_long *, u_long *, int)); 292 ex_writefp(SCR *sp, const char *name, FILE *fp, MARK *fm, MARK *tm, u_long *nlno, u_long *nch, int silent)
|
| ex_bang.c | 61 MARK rm;
|
| ex_z.c | 42 MARK abm; 101 * Historically, z. set the absolute cursor mark.
|
| /src/usr.bin/sed/TEST/ |
| sed.test | 81 MARK=100 94 mark() 96 MARK=$(expr $MARK + 1) 98 exec >"$DIR/${MARK}_$1" 99 echo "Test $1:$MARK" 101 echo "Test $1:$MARK" >&5 106 mark '1.1' 114 mark '1.2' ; $SED -n 's/^/e1_/p' lines1 115 mark '1.3 [all...] |
| /src/external/gpl2/groff/dist/src/preproc/eqn/ |
| eqn.y | 76 %token MARK 108 %right LPILE RPILE CPILE PILE TEXT QUOTED_TEXT MATRIX MARK LINEUP '^' '~' '\t' '{' SPLIT NOSPLIT 116 %type <b> mark from_to sqrt_over script simple equation nonsup 131 mark 133 | equation mark 143 mark: label 146 | MARK mark 148 | LINEUP mark
|