Searched +refs:point +refs:max (Results 1 - 25 of 379) sorted by relevance

1234567891011>>

/macosx-10.10/emacs-93/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))
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dmath.test46 Test math-2.1 {max tests} {
47 max 1 2 4 3
50 Test math-2.2 {max tests} {
51 max -68 65537.4 2 5
54 Test math-2.3 {max tests} {
55 max -68.7 2100000000 2 5
58 Test math-2.4 {max tests} {
59 max -68.7 -2
62 Test math-2.4.1 {max tests} {
63 max
[all...]
/macosx-10.10/emacs-93/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)))
153 (max here-col fill-col)))))
175 (while (and (< (point) end)
191 (point)))))
250 (if (< (point) t
[all...]
H A Dunderline.el30 ;; point `underline-region' performs such underlining on a region.
31 ;; The entry point `ununderline-region' removes it.
44 (move-marker end1 (max start end))
46 (while (< (point) end1)
59 (move-marker end1 (max start end))
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))
[all...]
H A Dtwo-column.el131 ;; Pli bone ankora^u, vi povas pozici- Better yet, you can put the point
323 \\[2C-associated-buffer] Switch to associated buffer at same point
324 \\[2C-newline] Insert newline(s) in both buffers at same point
356 (max window-min-width (min 2C-window-width
366 (2C-mode (prog1 (point-marker)
374 (2C-mode (prog1 (point-marker)
407 "Split a two-column text at point, into two buffers in two-column minor mode.
420 5 character Separator You type M-5 \\[2C-split] with the point here.
432 (let ((point (point))
[all...]
H A Dtexnfo-upd.el87 ;; point is located (i.e., for the node preceding point).
111 ;; point. With an argument, it makes or updates menus for the nodes
135 ;; description in the menu following point, to the specified column.
262 Make the menu for the section enclosing the node found following point.
278 (list (point) (mark))))
287 ;; find section type following point
290 (set-marker region-end-marker (max beginning end))
299 (while (and (< (point) (marker-position region-end-marker))
322 (point)))
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DLayoutPoint.h43 LayoutPoint(const IntPoint& point) : m_x(point.x()), m_y(point.y()) { } argument
66 return LayoutPoint(std::max(m_x, other.m_x), std::max(m_y, other.m_y));
127 inline LayoutPoint operator-(const LayoutPoint& point) argument
129 return LayoutPoint(-point.x(), -point.y());
147 inline LayoutSize toLayoutSize(const LayoutPoint& point) argument
149 return LayoutSize(point
152 flooredIntPoint(const LayoutPoint& point) argument
157 roundedIntPoint(const LayoutPoint& point) argument
167 ceiledIntPoint(const LayoutPoint& point) argument
187 roundedForPainting(const LayoutPoint& point, float pixelSnappingFactor, bool directionalRoundingToRight = true, bool directionalRoundingToBottom = true) argument
199 flooredForPainting(const LayoutPoint& point, float pixelSnappingFactor) argument
209 ceiledForPainting(const LayoutPoint& point, float pixelSnappingFactor) argument
[all...]
H A DFloatPolygon.cpp52 static inline bool isPointOnLineSegment(const FloatPoint& vertex1, const FloatPoint& vertex2, const FloatPoint& point) argument
54 return point.x() >= std::min(vertex1.x(), vertex2.x())
55 && point.x() <= std::max(vertex1.x(), vertex2.x())
56 && areCollinearPoints(vertex1, vertex2, point);
154 static inline float leftSide(const FloatPoint& vertex1, const FloatPoint& vertex2, const FloatPoint& point)
156 return ((point.x() - vertex1.x()) * (vertex2.y() - vertex1.y())) - ((vertex2.x() - vertex1.x()) * (point.y() - vertex1.y()));
159 bool FloatPolygon::containsEvenOdd(const FloatPoint& point) const
165 if (isPointOnLineSegment(vertex1, vertex2, point))
[all...]
H A DFloatRect.cpp71 bool FloatRect::contains(const FloatPoint& point, ContainsMode containsMode) const argument
74 return contains(point.x(), point.y());
75 return x() < point.x() && maxX() > point.x() && y() < point.y() && maxY() > point.y();
80 float l = std::max(x(), other.x());
81 float t = std::max(y(), other.y());
113 float maxX = std::max(thi
[all...]
H A DIntRect.cpp64 int l = std::max(x(), other.x());
65 int t = std::max(y(), other.y());
95 int r = std::max(maxX(), other.maxX());
96 int b = std::max(maxY(), other.maxY());
116 int right = std::max(maxX(), other.maxX());
117 int bottom = std::max(maxY(), other.maxY());
142 IntSize IntRect::differenceToPoint(const IntPoint& point) const
144 int xdistance = distanceToInterval(point.x(), x(), maxX());
145 int ydistance = distanceToInterval(point.y(), y(), maxY());
/macosx-10.10/emacs-93/emacs/lisp/
H A Dreposition.el51 definition (or as much as will fit) onscreen, unless point is in a comment
57 If ARG is non-nil, point may move in order to make the whole defun
59 visible (if point is in code and it could not be made so, or if only
61 first comment line visible (if point is in a comment)."
63 (let* (;; (here (save-excursion (beginning-of-line) (point)))
64 (here (point))
68 (line (repos-count-screen-lines (window-start) (point)))
70 ;; The call to max deals with the case of cursor between defuns.
71 (max 0
80 (point))
[all...]
H A Dsort.el59 The next four arguments are functions to be called to move point
62 NEXTRECFUN is called with point at the end of the previous record.
63 It moves point to the start of the next record.
64 It should move point to the end of the buffer if there are no more records.
65 The first record is assumed to start at the position of point when sort-subr
68 ENDRECFUN is called with point within the record.
69 It should move point to the end of the record.
73 else the key is the substring between the values of point after
84 (let ((messages (> (- (point-max) (poin
[all...]
H A Dindent.el52 If nil, hitting TAB indents the current line if point is at the left margin
83 If initial point was within line's indentation, position after
84 the indentation. Else stay at same point in text.
119 (setq end (point-marker))
122 (while (< (point) end)
129 (indent-to (max 0 (+ indent arg)) 0))
130 (delete-region (point) (progn (skip-chars-forward " \t") (point))))
137 only if necessary. It leaves point at end of indentation."
142 (delete-region (point)
[all...]
H A Dnewcomment.el135 This function is called with no args with point at the beginning of
286 (goto-char (point-min))
341 (goto-char (point-min))
353 (when (and (< (point-min) (match-beginning 0))
368 point is within a string or not. Major modes whose syntax is faithfully
373 "Find a comment start between point and LIMIT.
374 Moves point to inside the comment and returns the position of the
375 comment-starter. If no comment is found, moves point to LIMIT
382 (let* ((pt (point))
384 (s (parse-partial-sexp pt (or limit (point
[all...]
/macosx-10.10/emacs-93/emacs/lisp/progmodes/
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) her
[all...]
H A Dcperl-mode.el308 regardless of where in the line point is when the TAB command is used."
509 (defcustom cperl-max-help-size 66
624 "*Non-nil means that CPerl syntaxifies up to the point before showing menu.
761 `fill-paragraph' on a comment may leave the point behind the
1060 (put-text-property (max (point-min) (1- from))
1071 (parse-partial-sexp (point) (point)))) 9))
1087 (let ((prop (get-text-property (point) 'syntax-type)))
1096 (or (get-text-property (point) 'synta
[all...]
H A Dcc-cmds.el61 (defun c-indent-line (&optional syntax quiet ignore-point-pos)
67 point is used to decide where the old indentation is on a lines that
78 (when (and (not ignore-point-pos)
86 (<= (point) (match-end 1)))
87 ;; Delete all whitespace after point if there's only whitespace
98 (delete-region (point) (match-end 0))
137 (c-backslash-region (point) (point) nil t))))
159 (setq start (point))
167 (setq has-backslash (eq (char-before (c-point 'eo
[all...]
H A Dpascal.el280 (point)))
285 (point)))
292 (save-excursion (end-of-line 2) (point)) t))
310 (nth 3 (parse-partial-sexp (pascal-get-beg-of-line) (point)))))
318 \\[pascal-complete-word] completes the word around current point with respect \
320 \\[pascal-show-completions] shows all possible completions at this point.
348 regardless of where in the line point is when the TAB command is used.
510 "Insert Pascal star comment at point."
523 This puts the mark at the end, and point at the beginning."
525 (push-mark (point))
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DFontWin.cpp95 float Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, int from, int to) const argument
100 float startX = point.x() + getGlyphsAndAdvancesForComplexText(run, from, to, glyphBuffer);
106 // Draw the glyph buffer now at the starting point returned in startX.
107 FloatPoint startPoint(startX, point.y());
112 void Font::drawEmphasisMarksForComplexText(GraphicsContext* context, const TextRun& run, const AtomicString& mark, const FloatPoint& point, int from, int to) const argument
120 drawEmphasisMarks(context, run, glyphBuffer, mark, FloatPoint(point.x() + initialAdvance, point.y()));
128 glyphOverflow->top = max<int>(glyphOverflow->top, ceilf(-controller.minGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().ascent()));
129 glyphOverflow->bottom = max<int>(glyphOverflow->bottom, ceilf(controller.maxGlyphBoundingBoxY()) - (glyphOverflow->computeBounds ? 0 : fontMetrics().descent()));
130 glyphOverflow->left = max<in
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/inc/Test/Harness/
H A DStraps.pm134 (($results->max == 0) && defined $results->skip_all) ||
135 ($results->max &&
137 $results->max == $results->seen &&
138 $results->max == $results->ok);
154 my $point = Test::Harness::Point->from_test_line( $line );
155 if ( $point ) {
159 $point->set_number( $self->{'next'} ) unless $point->number;
166 $point->set_ok( 0 );
169 if ( $self->{todo}{$point
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DColorWheel.js96 this._setCrosshairPosition(data.point);
153 function angleFromCenterToPoint(center, point)
155 return Math.atan2(point.y - center.y, point.x - center.x);
164 var point = window.webkitConvertPointFromPageToNode(this._finalCanvas, new WebKitPoint(event.pageX, event.pageY)); variable
166 if (distance(point, center) > this._radius) {
167 var angle = angleFromCenterToPoint(center, point);
168 point = pointOnCircumference(center, this._radius, angle);
170 return point;
175 var point
[all...]
/macosx-10.10/emacs-93/emacs/lisp/emulation/
H A Dedt.el188 (defvar edt-rect-start-point)
190 (defvar rect-start-point)
677 (goto-char (point-min))
687 (goto-char (point-max))
709 (bottom-margin (max beg (- height bottom-up-margin 1)))
710 (top (save-excursion (move-to-window-line top-margin) (point)))
711 (bottom (save-excursion (move-to-window-line bottom-margin) (point)))
713 (goto-char bottom) (forward-line (- height 2)) (point))))
718 (cond((> (point) fa
[all...]
H A Dtpu-extras.el229 (let ((beg (point)))
232 (if (<= (point) beg) (progn (forward-line) (picture-end-of-line)))))
250 "Move point to end of current line."
252 (let ((beg (point)))
254 (if (= beg (point)) (message "You are already at the end of a line."))))
291 (bottom-margin (max beg (- height bottom-up-margin 1)))
292 (top (save-excursion (move-to-window-line top-margin) (point)))
293 (bottom (save-excursion (move-to-window-line bottom-margin) (point)))
295 (goto-char bottom) (forward-line (- height 2)) (point))))
298 (cond((> (point) fa
[all...]
/macosx-10.10/emacs-93/emacs/lisp/obsolete/
H A Dscribe.el165 (let ((spos (point)) (epos (point)) (ccoun 0) noparens)
169 (setq spos (point))
175 (forward-sexp (max count 1))
176 (setq epos (point))))
201 "Underline COUNT words around point by means of Scribe constructs."
206 "Boldface COUNT words around point by means of Scribe constructs."
211 "Italicize COUNT words around point by means of Scribe constructs."
250 (defun scribe-bracket-region-be (env min max)
253 (goto-char max)
[all...]

Completed in 376 milliseconds

1234567891011>>