Searched refs:posn (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/emacs-92/emacs/src/
H A Dkeyboard.h262 #define POSN_WINDOW(posn) (XCAR (posn))
263 #define POSN_POSN(posn) (XCAR (XCDR (posn)))
264 #define POSN_SET_POSN(posn,x) (XSETCAR (XCDR (posn), (x)))
265 #define POSN_WINDOW_POSN(posn) (XCAR (XCDR (XCDR (posn))))
266 #define POSN_TIMESTAMP(posn) (XCAR (XCDR (XCDR (XCDR (posn)))))
[all...]
H A Dbuffer.h862 #define GET_OVERLAYS_AT(posn, overlays, noverlays, nextp, chrq) \
866 noverlays = overlays_at (posn, 0, &overlays, &maxlen, \
872 noverlays = overlays_at (posn, 0, &overlays, &maxlen, \
H A Dkeyboard.c3145 Lisp_Object posn;
3147 posn = POSN_POSN (EVENT_START (c));
3150 if (EQ (posn, Qmenu_bar) || EQ (posn, Qtool_bar))
3153 POSN_SET_POSN (EVENT_START (c), Fcons (posn, Qnil));
3157 c = posn;
5174 Lisp_Object posn = Qnil;
5211 posn = part == ON_MODE_LINE ? Qmode_line : Qheader_line;
5224 posn = Qvertical_line;
5234 posn
3132 Lisp_Object posn; local
5155 Lisp_Object posn = Qnil; local
9244 Lisp_Object window, posn; local
9419 Lisp_Object posn; local
[all...]
H A Deditfns.c441 int posn = XINT (position);
451 noverlays = overlays_around (posn, overlay_vec, noverlays);
458 noverlays = overlays_around (posn, overlay_vec, noverlays);
473 if ((OVERLAY_POSITION (start) == posn
475 || (OVERLAY_POSITION (finish) == posn
438 int posn = XINT (position); local
/macosx-10.9.5/apache-786.1/httpd/modules/cache/
H A Dcache_pqueue.c173 apr_ssize_t posn; local
175 posn = q->get(d);
177 cache_pq_bubble_up(q, posn);
179 cache_pq_percolate_down(q, posn);
184 apr_ssize_t posn = q->get(d); local
185 q->d[posn] = q->d[--q->size];
186 if (q->pri(q->d[posn]) > q->pri(d))
187 cache_pq_bubble_up(q, posn);
189 cache_pq_percolate_down(q, posn);
231 fprintf(stdout,"posn\tlef
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Delf32-m32c.c1434 int posn;
1576 posn = 2;
1580 if (srel->r_offset == irel->r_offset + posn
1587 gap = insn + posn + enctbl[e->new_encoding].bytes;
1593 posn += e->bytes;
1601 posn = 2;
1617 /* srel, posn, and enc must be set here. */
1623 if (srel->r_offset == irel->r_offset + posn
1630 gap = insn + posn + enctbl[e->new_encoding].bytes;
1707 posn
1428 int posn; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/layout/
H A DGlyphIterator.cpp479 le_int32 posn; local
481 for (posn = position; posn != markPosition; posn += direction) {
482 if (glyphStorage[posn] == 0xFFFE) {
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dmouse.el281 (let ((w (posn-window (event-start event))))
295 (delete-window (posn-window (event-start click)))))
302 (frame (window-frame (posn-window (event-start click)))))
303 (select-window (posn-window (event-start click)))
313 (let* ((window (posn-window (event-start click)))
332 (select-window (posn-window start))
333 (let ((new-height (1+ (cdr (posn-col-row (event-end click)))))
348 (select-window (posn-window start))
349 (let ((new-width (1+ (car (posn-col-row (event-end click)))))
407 (start-event-window (posn
[all...]
H A Dbutton.el422 (let ((posn (event-start pos)))
423 (with-current-buffer (window-buffer (posn-window posn))
424 (push-button (posn-point posn) t)))
H A Dvc.el1034 (defun vc-position-context (posn)
1040 (list posn
1042 (buffer-substring posn
1043 (min (point-max) (+ posn 100)))))
1065 (defun vc-context-matches-p (posn context)
1069 (end (+ posn len)))
1072 (string= context-string (buffer-substring posn end)))))
H A Dibuf-ext.el261 (posn-set-point (event-end event-or-point))
286 (defun ibuffer-toggle-filter-group-1 (posn)
287 (let ((name (get-text-property posn 'ibuffer-filter-group-name)))
/macosx-10.9.5/tcl-102/tcl_ext/tktable/tktable/generic/
H A DtkTableCmds.c164 int i, widthType, dummy, value, posn, offset;
187 posn = ((int) Tcl_GetHashKey(hashTablePtr, entryPtr)) + offset;
189 sprintf(buf1, "%d %d", posn, value);
196 if (Tcl_GetIntFromObj(interp, objv[2], &posn) != TCL_OK) {
200 posn -= offset;
201 entryPtr = Tcl_FindHashEntry(hashTablePtr, (char *) posn);
213 if (Tcl_GetIntFromObj(interp, objv[i++], &posn) != TCL_OK ||
218 posn -= offset;
221 entryPtr = Tcl_FindHashEntry(hashTablePtr, (char *) posn);
227 (char *) posn,
163 int i, widthType, dummy, value, posn, offset; local
[all...]
H A DtkTableCell.c766 * size of the buffer. This acts like a "SetIcursor" when *posn is NULL.
769 * If (posn != NULL), then it gets the cursor position.
777 TableGetIcursor(Table *tablePtr, char *arg, int *posn) argument
799 if (posn) {
800 *posn = tmp;
H A DtkTable.h565 int *posn);
/macosx-10.9.5/emacs-92/emacs/lisp/calendar/
H A Dtodo-mode.el540 (let ((posn (search-forward "-*- mode: todo; " 17 t)))
541 (if (not (null posn)) (goto-char posn))
542 (if (equal posn nil)
/macosx-10.9.5/emacs-92/emacs/lisp/erc/
H A Derc-backend.el870 (let ((posn (if (eq (aref string 0) ?:)
876 (if (eq posn 0)
878 (substring string 1 posn)))
881 (let* ((bposn (string-match "[^ \n]" string posn))
883 (setq posn (and eposn
887 (while (and posn
888 (not (eq (aref string posn) ?:)))
889 (push (let* ((bposn posn)
891 (setq posn (and eposn
895 (when posn
[all...]
H A Derc-dcc.el1075 (let ((posn 0)
1077 (while (string-match "\n" str posn)
1078 (setq line (substring str posn (match-beginning 0)))
1079 (setq posn (match-end 0))
1084 (setq erc-dcc-unprocessed-output (substring str posn)))))
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dgdb-ui.el612 (if (equal buffer (window-buffer (posn-window end)))
615 (equal (posn-point start)
628 (setq line (line-number-at-pos (posn-point end)))
632 (goto-line (line-number-at-pos (posn-point end)))
646 (setq line (line-number-at-pos (posn-point end)))
652 (goto-line (line-number-at-pos (posn-point end)))
692 (if event (posn-set-point (event-end event)))
1875 (let ((posn (event-end event)))
1876 (if (numberp (posn-point posn))
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/library/
H A Ddomimpl.tcl3552 set posn [CreateNode:FindPosition [lindex $step 2]]
3560 if {$count == $posn} {
3583 set posn [CreateNode:FindPosition [lindex $step 2]]
3592 if {$count == $posn} {
3606 while {$count < $posn} {
3650 set posn [lindex [lindex $predicate 2] 1]
3666 return $posn
/macosx-10.9.5/vim-53/runtime/autoload/
H A Dnetrw.vim7709 " call Decho("restore posn: exe norm! ".w:netrw_line."G0".w:netrw_col."|")

Completed in 379 milliseconds