Lines Matching full:position
16 #include "position.h"
23 extern POSITION header_start_pos;
30 POSITION pos;
31 POSITION end_pos;
39 if (position(sc_height-1) == end_pos)
46 * because the position table has been cleared by pos_clear below.
51 * Position the last line in the file at the last screen line.
62 if (position(sc_height-1) != end_pos)
72 POSITION end;
89 POSITION pos;
93 * Find the position of the specified line.
139 POSITION pos, len;
142 * Determine the position in the file
163 * Jump to a specified position in the file.
164 * Like jump_loc, but the position need not be
167 public void jump_line_loc(POSITION pos, int sline)
203 * Ensure that a position is not before the header.
204 * If it is, print a message and return the position of the start of the header.
209 public POSITION after_header_pos(POSITION pos)
220 * Jump to a specified position in the file.
221 * The position must be the first character in a line.
224 public void jump_loc(POSITION pos, int sline)
228 POSITION tpos;
229 POSITION bpos;
245 forw(nline, position(BOTTOM_PLUS_ONE), 1, 0, 0);
247 back(-nline, position(TOP), 1, 0);
261 error("Cannot seek to that file position", NULL_PARG);
269 tpos = position(TOP);
270 bpos = position(BOTTOM_PLUS_ONE);