Searched refs:point (Results 1 - 25 of 1295) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/diagrams/include/
H A Dpointarith.inc3 [para][image figure-50-point-cons-absolute][para]
6 the [term absolute] point for it.
11 [para][image figure-51-point-cons-relative][para]
15 point for it, i.e. the [term delta] or [term translation] it
32 [para][image figure-48-point-vectoradd][para]
39 The result is a [term relative] point if and only if both points are
45 [para][image figure-49-point-vectorsub][para]
53 The result is a [term relative] point if and only if both points are
57 [call [arg point] [cmd by] [arg distance] [arg direction]]
62 [$point
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/qt/
H A DLayoutPointQt.cpp28 LayoutPoint::LayoutPoint(const QPoint& point) argument
29 : m_x(point.x())
30 , m_y(point.y())
34 LayoutPoint::LayoutPoint(const QPointF& point) argument
35 : m_x(point.x())
36 , m_y(point.y())
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Lib/PyObjCTools/
H A DFndCategories.py10 def rotateByDegrees_atPoint_(self, angle, point):
13 ``point``.
19 oldPt = tf.transformPoint_(point)
20 oldPt.x -= point.x
21 oldPt.y -= point.y
24 def rotateByRadians_atPoint_(self, angle, point):
27 ``point``.
33 oldPt = tf.transformPoint_(point)
34 oldPt.x -= point.x
35 oldPt.y -= point
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Lib/PyObjCTools/
H A DFndCategories.py10 def rotateByDegrees_atPoint_(self, angle, point):
13 ``point``.
19 oldPt = tf.transformPoint_(point)
20 oldPt.x -= point.x
21 oldPt.y -= point.y
24 def rotateByRadians_atPoint_(self, angle, point):
27 ``point``.
33 oldPt = tf.transformPoint_(point)
34 oldPt.x -= point.x
35 oldPt.y -= point
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DPlatformTouchPointBlackBerry.cpp31 PlatformTouchPoint::PlatformTouchPoint(const BlackBerry::Platform::TouchPoint& point) argument
32 : m_id(point.id())
33 , m_screenPos(point.screenPosition())
37 , m_pos(point.documentViewportPosition())
39 switch (point.state()) {
/macosx-10.9.5/groff-38/groff/src/libs/libgroff/
H A Diftoa.c29 /* room for a -, INT_DIGITS digits, a decimal point, and a terminating '\0' */
32 int point = 0; local
39 if (++point == decimal_point)
41 } while (i != 0 || point < decimal_point);
47 if (++point == decimal_point)
49 } while (i != 0 || point < decimal_point);
/macosx-10.9.5/ntp-88/scripts/
H A DVersionName7 case $point in
9 NAME="${NAME}p$point"
13 *) echo "Unexpected value for 'point' <$point>!"
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGPointList.cpp41 const FloatPoint& point = at(i); local
42 builder.append(String::number(point.x()) + ' ' + String::number(point.y()));
/macosx-10.9.5/emacs-92/emacs/lisp/play/
H A Dstudly.el25 (setq begin (point))
26 (while (and (<= (point) end)
30 (setq begin (max (point) begin))
33 (word-end (min (point) end))
36 (while (< (point) word-end)
41 (while (< (point) word-end)
51 (setq begin (point))))))
57 (let ((begin (point)) end rb re)
59 (setq end (point))
67 (studlify-region (point
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dmantemp.el51 ;; call `mantemp-make-mantemps-buffer' with the point in the buffer.
93 (goto-char (point-min))
102 (goto-char (point-min))
108 (delete-region (point) (line-end-position))))
110 (goto-char (point-min))
115 (delete-region (point) (line-end-position))))))
122 (point-min)
123 (point-max))
124 (goto-char (point-min))
130 (delete-region (point) (prog
[all...]
H A Dcc-engine.el207 ;; works as long as point doesn't cross a macro boundary.
215 (point)))))
223 (point))))
228 Leave point at the beginning of the directive and return t if in one,
229 otherwise return nil and leave point unchanged.
234 (let ((here (point)))
236 (if lim (narrow-to-region lim (point-max)))
238 (while (eq (char-before (1- (point))) ?\\)
241 (if (and (<= (point) here)
249 More accurately, move the point t
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DGtkUtilities.cpp27 IntPoint convertWidgetPointToScreenPoint(GtkWidget* widget, const IntPoint& point) argument
35 return point;
39 return point;
42 gtk_widget_translate_coordinates(widget, toplevelWidget, point.x(), point.y(), &xInWindow, &yInWindow);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/
H A DWKGeometry.cpp49 WKPointRef WKPointCreate(WKPoint point) argument
51 RefPtr<WebPoint> webPoint = WebPoint::create(point);
72 WKPoint WKPointGetValue(WKPointRef point) argument
74 return toImpl(point)->point();
/macosx-10.9.5/bash-92/bash-3.2/lib/readline/
H A Dmbutil.c82 int point; local
93 point = seed + _rl_adjust_point (string, seed, &ps);
95 started byte. So correct the point and consume count */
96 if (seed < point)
101 len = strlen (string + point);
104 tmp = mbrtowc (&wc, string+point, len, &ps);
108 point++;
118 point += tmp;
133 tmp = mbrtowc (&wc, string + point, strlen (string + point),
150 int prev, non_zero_prev, point, length; local
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dmisc.el31 "Copy characters from previous nonblank line, starting just above point.
34 The characters copied are inserted in the buffer before point."
45 (setq n (if arg (prefix-numeric-value arg) (point-max)))
57 (point)
58 (min (save-excursion (end-of-line) (point))
59 (+ n (point)))))))
68 Ignores CHAR at point."
71 (kill-region (point)
77 (point)))))
85 (push-mark (point
[all...]
H A Dmakesum.el48 (goto-char (point-min))
49 (delete-region (point) (progn (forward-line 1) (point)))
52 (goto-char (point-min))
55 (goto-char (point-min))
58 (goto-char (point-min))
61 (goto-char (point-min))
64 (goto-char (point-min))
70 (delete-region (point)
73 (point))))))
[all...]
H A Dmacros.el86 (let ((beg (point)) end)
88 (setq end (point-marker))
90 (while (< (point) end)
93 (delete-region (point) (1+ (point)))
96 (delete-region (point) (1+ (point)))
99 (delete-region (point) (1+ (point)))
102 (delete-region (point) (
[all...]
H A Dtabify.el36 START and END, rather than by the position of point and mark.
41 (narrow-to-region (point-min) end)
45 (let ((tab-beg (point))
50 (delete-region tab-beg (point))
64 START and END, rather than by the position of point and mark.
73 (narrow-to-region (point) end)
89 (delete-region (match-beginning 0) (point))
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DWheelEventWin.cpp41 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local
42 ScreenToClient(hWnd, &point);
43 return point;
48 POINT point = {GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)}; local
49 return point;
79 POINT point = {location.x(), location.y()}; local
80 m_globalPosition = point;
83 ScreenToClient(hWnd, &point);
84 m_position = point;
/macosx-10.9.5/emacs-92/emacs/lisp/international/
H A Dutf-7.el58 "Decode LEN bytes of UTF-7 at point.
62 (narrow-to-region (point) (+ (point) len))
69 (let ((p (point))
77 (subst-char-in-region p (point) ?, ?/))
78 (base64-decode-region p (point)))
79 (decode-coding-region p (point) 'utf-16be)
83 (- (point-max) (point-min)))))
107 (goto-char (point
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/CoordinatedGraphics/
H A DWKCoordinatedScene.cpp38 WK_EXPORT WKCoordinatedSceneLayer WKCoordinatedSceneFindScrollableContentsLayerAt(WKCoordinatedScene scene, WKPoint point) argument
40 return toAPI(toImpl(scene)->findScrollableContentsLayerAt(WebCore::FloatPoint(point.x, point.y)));
/macosx-10.9.5/emacs-92/emacs/lisp/textmodes/
H A Dfill.el70 "Set the fill prefix to the current line up to point.
74 (let ((left-margin-pos (save-excursion (move-to-left-margin) (point))))
75 (if (> (point) left-margin-pos)
77 (setq fill-prefix (buffer-substring left-margin-pos (point)))
138 (let* ((here (progn (beginning-of-line) (point)))
140 (eol (progn (end-of-line) (point)))
175 (while (and (< (point) end)
191 (point)))))
250 (if (< (point) to)
313 "Return nil if French style allows breaking the line at point
[all...]
H A Dparagraphs.el63 (not (text-property-any (point-min) (point-max) 'hard t))
65 (goto-char (point-min))
70 (goto-char (point-min))
72 (let ((pos (point)))
81 (set-hard-newline-properties (point) (1+ (point)))))))))))
184 end of a sentence, the ending period, question mark, or exclamation point
222 (let* ((opoint (point))
250 (re-search-backward "^\n" (max (1- (point)) (poin
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Stickies/
H A DStickyTitleBarView.rb34 point = convertPoint_fromView(theEvent.locationInWindow, nil)
35 if @mouseInCloseBox = NSPointInRect(point, CLOSE_BOX)
45 point = convertPoint_fromView(theEvent.locationInWindow, nil)
46 @mouseInCloseBox = NSPointInRect(point, CLOSE_BOX)
56 point = convertPoint_fromView(theEvent.locationInWindow, nil)
57 if NSPointInRect(point, CLOSE_BOX)
/macosx-10.9.5/emacs-92/emacs/lisp/mail/
H A Dunrmail.el69 (goto-char (point-min))
71 (setq from (point))
72 (goto-char (point-max))
74 (setq to (point))
106 (goto-char (point-min))
113 (let ((beg (point))
116 (1- (point)) (point-max))))
125 (goto-char (point-min))
133 (buffer-substring (point)
[all...]

Completed in 193 milliseconds

1234567891011>>