Lines Matching full:position
28 extern POSITION start_attnpos;
29 extern POSITION end_attnpos;
38 * base Position of first char in line.
45 static void init_status_col(POSITION base_pos, POSITION disp_pos, POSITION edisp_pos, POSITION eol_pos)
80 * A "current" position is passed and a "new" position is returned.
81 * The current position is the position of the first character of
82 * a line. The new position is the position of the first character
85 public POSITION forw_line_seg(POSITION curr_pos, lbool skipeol, lbool rscroll, lbool nochop)
87 POSITION base_pos;
88 POSITION new_pos;
89 POSITION edisp_pos;
95 POSITION wrap_pos;
114 prep_hilite(curr_pos, curr_pos + (POSITION) (3*size_linebuf), ignore_eoi ? 1 : -1);
142 * Read forward again to the position we should start at.
331 public POSITION forw_line(POSITION curr_pos)
339 * A "current" position is passed and a "new" position is returned.
340 * The current position is the position of the first character of
341 * a line. The new position is the position of the first character
344 public POSITION back_line(POSITION curr_pos)
346 POSITION base_pos;
347 POSITION new_pos;
348 POSITION edisp_pos;
349 POSITION begin_new_pos;
354 POSITION wrap_pos;
365 prep_hilite((curr_pos < (POSITION) (3*size_linebuf)) ? 0 :
366 curr_pos - (POSITION) (3*size_linebuf), curr_pos, -1);
382 (void) ch_back_get(); /* Restore our position */
575 public void set_attnpos(POSITION pos)