Searched refs:point (Results 201 - 225 of 1295) sorted by relevance

1234567891011>>

/macosx-10.9.5/emacs-92/emacs/lisp/emulation/
H A Dviper-cmd.el189 viper-insert-point
190 (>= (point) viper-insert-point))
191 (setq viper-last-posn-while-in-insert-state (point-marker)))
194 (viper-set-replace-overlay (point-min) (point-min))
216 (integerp viper-pre-command-point)
217 (markerp viper-insert-point)
218 (marker-position viper-insert-point)
219 (> viper-insert-point vipe
[all...]
H A Dtpu-edt.el551 (define-key map "~" 'exchange-point-and-mark) ; ~
740 "Returns t if point is between tpu-match markers.
743 ;; 2- point is at or after beginning marker
744 ;; 3- point is before ending marker, or in the case of
746 ;; beginning, end, and point are equal.
749 (>= (point) (marker-position tpu-match-beginning-mark))
751 (< (point) (marker-position tpu-match-end-mark))
754 (= (marker-position tpu-match-end-mark) (point))))) t)
766 (point) (current-buffer))))
830 "Return the vertical position of point i
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dbookmark.el209 ;;; No user-serviceable parts beyond this point.
313 (defvar bookmark-current-point 0)
314 (defvar bookmark-yank-point 0)
394 "Return the position \(i.e.: point\) of BOOKMARK."
399 "Set the position \(i.e.: point\) of BOOKMARK to POSITION."
538 . ,(if (>= (- (point-max) (point)) bookmark-search-size)
540 (point)
541 (+ (point) bookmark-search-size))
544 . ,(if (>= (- (point) (poin
[all...]
H A Dvcursor.el75 ;; around a virtual cursor, which is initially at point. When active,
78 ;; characters from the location of the virtual cursor to point. This
99 ;; copies one character from wherever the virtual cursor is to point;
100 ;; point and the virtual cursor advance in the separate and equal
118 ;; it so that it starts from point whenever you move it again --- note
124 ;; goes off-screen in its own window, point in that window is moved as
126 ;; However, point doesn't move unless the view in the window does, so
130 ;; forces the vcursor to appear at point. This is particularly useful if
154 ;; at point, because that is where the virtual cursor would start
158 ;; C-S-select on DEC keyboards) (vcursor-swap-point) wil
[all...]
H A Dterminal.el185 (defvar te-saved-point)
186 (defvar te-more-old-point nil)
507 ((>= h (/ (- (point) (point-min)) (1+ te-width)))
509 (set-window-start w (point-min)))
511 ((>= h (/ (- (point-max) (point)) (1+ te-width)))
512 (set-window-start w (- (point-max) (* h (1+ te-width)) -1)))
567 (let ((opoint (point-marker))
570 (goto-char (point
[all...]
H A Dcmuscheme.el194 end of process to point.
195 Return before the end of the process' output copies the sexp ending at point
222 "Snarf the sexp ending at point."
224 (let ((end (point)))
226 (buffer-substring (point) end))))
290 (let ((end (point)))
292 (scheme-send-region (point) end))))
297 (scheme-send-region (save-excursion (backward-sexp) (point)) (point)))
318 (let ((end (point)))
[all...]
H A Dman.el57 ;; point and some other names have been changed to make it a drop-in
645 (goto-char (point-min))
652 ;; default man entry: get word under point
656 If POS is nil, the current point is used."
663 (let ((start (point)))
665 (setq word (buffer-substring-no-properties start (point))))
721 "Get a Un*x manual page of the item under point and put it in a buffer."
725 (error "No item under point")
855 (goto-char (point-min))
866 (goto-char (point
[all...]
H A Dmouse-copy.el34 ;;; point. You can also move text just as easily. Although the
138 ;; First, figure out the region (left as point/mark).
141 (mouse-start-end (posn-point start-posn)
142 (posn-point end-posn)
149 (setq mouse-secondary-overlay (make-overlay beg (posn-point end))))
158 "Drag out a secondary selection, then paste it at the current point.
162 put the point at one place, then click and drag over some other region."
183 (setq mouse-copy-last-paste-start (point))
185 (setq mouse-copy-last-paste-end (point)))
216 "Sweep out a secondary selection, then move it to the current point
[all...]
H A Dpcmpl-linux.el88 (let* ((line (buffer-substring (point) (line-end-position)))
101 (let* ((line (buffer-substring (point) (line-end-position)))
H A Dpcmpl-unix.el87 (goto-char (point-min))
91 (point) (progn (end-of-line)
92 (point))) ":")))
H A Dresume.el78 (goto-char (point-min))
81 (let ((begin (point)))
83 (setq args (cons (buffer-substring begin (point)) args)))
124 (write-region (point-min) (point-max) file nil 'quiet))
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DFontMac.mm57 // without unitsPerEm applied. We have to apply a transform that scales up to the point size and that also
68 static void showGlyphsWithAdvances(const FloatPoint& point, const SimpleFontData* font, CGContextRef context, const CGGlyph* glyphs, const CGSize* advances, size_t count)
73 CGContextSetTextPosition(context, point.x(), point.y());
108 CGPoint position = FloatPoint(point.x(), point.y() + font->fontMetrics().floatAscent(IdeographicBaseline) - font->fontMetrics().floatAscent());
135 void Font::drawGlyphs(GraphicsContext* context, const SimpleFontData* font, const GlyphBuffer& glyphBuffer, int from, int numGlyphs, const FloatPoint& point) const
248 float shadowTextX = point.x() + shadowOffset.width();
250 float shadowTextY = point.y() + shadowOffset.height() * (context->shadowsIgnoreTransforms() ? -1 : 1);
257 showGlyphsWithAdvances(point, fon
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/tests/
H A Dcomvar.sh188 typeset point=(typeset -i x=3 y=4)
189 (( (point.x*point.x + point.y*point.y) == 25 )) || err_exit "local compound variable not working"
191 point=(integer x=6 y=8)
193 (( (point.x*point.x + point.y*point
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dfortran.el517 ;; can treat floating-point numbers as symbols.
877 (save-point (point-marker)))
883 (delete-region (point) (match-end 0)))
885 (< (point) end-region-mark))
887 (delete-region (point) (match-end 0)))))
890 (< (point) end-region-mark))
892 (goto-char save-point)
894 (set-marker save-point nil)))
926 (goto-char (point
[all...]
H A Dada-mode.el692 (defvar ada-contextual-menu-last-point nil
693 "Position of point just before displaying the menu.
694 This is a list (point buffer).
695 Since `ada-popup-menu' moves the point where the user clicked, the region
698 To get the original region, restore the point to this position before
700 Modify this variable if you want to restore the point to another position.")
705 displaying the menu if point was on an identifier."
707 ["Goto Declaration/Body" ada-point-and-xref
709 ["Goto Body" ada-point-and-xref-body
764 (mouse-set-point las
[all...]
H A Dcmacexp.el87 ;; If the start point of the region is inside a macro definition the
187 (let ((exchange (= (point) start)))
191 (exchange-point-and-mark)))
220 (goto-char (point-min))
244 (+ 2 (vertical-motion (point-max)))))
246 (goto-char (point-min))
266 ;; where START was, so return the substring from point to end of
307 (setq startlinenum (+ (count-lines 1 (point))
314 (goto-char (point-max))
316 (if (equal (nthcdr 3 (parse-partial-sexp start (point)
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/textmodes/
H A Dpage-ext.el328 (goto-char (point-max)))
336 (goto-char (point-min)))
339 (goto-char (point-min))
356 If point is in the pages directory buffer, insert the new page in the
361 is non-nil. Else insert at exact location of point.
382 ;; Move point before current delimiter if desired.
388 (goto-char (point-min))
394 (goto-char (point-min))))
408 "Search for REGEXP, starting from point, and narrow to page it is in."
439 (goto-char (point
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/mail/
H A Drmail.el196 (goto-char (point-min))
832 (goto-char (point-max)))
872 (goto-char (point-min))
882 ((equal (point-min) (point-max))
894 (goto-char (point-max))
903 (goto-char (point-min))
905 (narrow-to-region (point) (point-max))
932 (goto-char (point
[all...]
H A Drmailsum.el155 (point)
156 (progn (search-forward (if whole-message "\^_" "\n\n")) (point)))
157 (goto-char (point-min))
179 (narrow-to-region (point) (progn (search-forward "\n\n") (point)))
214 (old-min (point-min-marker))
215 (old-max (point-max-marker)))
220 (goto-char (point-min))
247 (goto-char (point-min)))
311 (let* ((lim (save-excursion (forward-line 2) (point)))
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/play/
H A Dzone.el142 (wp (1+ (- (window-point (selected-window))
154 (untabify (point-min) (point-max))
155 (set-window-start (selected-window) (point-min))
156 (set-window-point (selected-window) wp)
216 (let* ((b (point))
217 (e (progn (forward-line 1) (point)))
220 (goto-char (point-max))
224 (goto-char (point-max))
225 (let* ((b (point))
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cairo/
H A DPathCairo.cpp149 void Path::addQuadCurveTo(const FloatPoint& controlPoint, const FloatPoint& point) argument
155 double x2 = point.x();
156 double y2 = point.y();
235 // add infinite far away point
331 bool Path::contains(const FloatPoint& point, WindRule rule) const argument
333 if (isNull() || !std::isfinite(point.x()) || !std::isfinite(point.y()))
338 bool contains = cairo_in_fill(cr, point.x(), point.y());
343 bool Path::strokeContains(StrokeStyleApplier* applier, const FloatPoint& point) cons
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DPathBlackBerry.cpp81 bool Path::contains(const FloatPoint& point, WindRule rule) const argument
83 return m_path->contains(point, (BlackBerry::Platform::Graphics::WindRule)(rule));
86 bool Path::strokeContains(StrokeStyleApplier* applier, const FloatPoint& point) const
94 bool result = scratchContext()->platformContext()->strokeContains(*m_path, point);
125 void Path::moveTo(const FloatPoint& point) argument
127 m_path->moveTo(point);
130 void Path::addLineTo(const FloatPoint& point) argument
132 m_path->addLineTo(point);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFilter.h49 FloatPoint mapAbsolutePointToLocalPoint(const FloatPoint& point) const { return m_absoluteTransform.inverse().mapPoint(point); }
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebKitSupport/
H A DTouchEventHandler.cpp71 void TouchEventHandler::doFatFingers(const Platform::TouchPoint& point) argument
73 m_lastScreenPoint = point.screenPosition();
76 m_lastFatFingersResult = FatFingers(m_webPage, point.documentContentPosition(), FatFingers::ClickableElement).findBestPoint();
107 void TouchEventHandler::handleTouchPoint(const Platform::TouchPoint& point, unsigned modifiers) argument
116 switch (point.state()) {
123 doFatFingers(point);
175 PlatformMouseEvent mouseEvent(point.documentViewportPosition(), m_lastScreenPoint, PlatformEvent::MouseMoved, 1, LeftButton, shiftActive, ctrlActive, altActive, TouchScreen);
176 m_lastScreenPoint = point.screenPosition();
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DWebEventConversion.cpp208 // Qt does not have a Qt::TouchPointCancelled point state, so if we receive a touch cancel event,
221 WebKitPlatformTouchPoint::WebKitPlatformTouchPoint(const QTouchEvent::TouchPoint& point, State state) argument
224 m_id = point.id();
226 m_screenPos = point.screenPos().toPoint();
227 m_pos = point.pos().toPoint();
228 // Qt reports touch point size as rectangles, but we will pretend it is an oval.
229 QRect touchRect = point.rect().toAlignedRect();
231 m_radiusX = point.rect().width() / 2;
232 m_radiusY = point.rect().height() / 2;
238 m_force = point
[all...]

Completed in 431 milliseconds

1234567891011>>