• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/international/

Lines Matching +refs:point +refs:max

310 (defun decode-char (ccs code-point &optional restriction)
325 (utf-lookup-subst-table-for-decode code-point))
327 ((< code-point 160)
328 code-point)
329 ((< code-point 256)
330 (make-char 'latin-iso8859-1 code-point))
331 ((< code-point #x2500)
332 (setq code-point (- code-point #x0100))
334 (+ (/ code-point 96) 32) (+ (% code-point 96) 32)))
335 ((< code-point #x3400)
336 (setq code-point (- code-point #x2500))
338 (+ (/ code-point 96) 32) (+ (% code-point 96) 32)))
339 ((and (>= code-point #xe000) (< code-point #x10000))
340 (setq code-point (- code-point #xe000))
342 (+ (/ code-point 96) 32)
343 (+ (% code-point 96) 32))))))
350 "Return code-point in coded character set CCS that corresponds to CHAR.
365 code-point in CCS. Currently not supported and just ignored."
805 with point at the head of the text to be decoded.
1444 (narrow-to-region (point) (+ (point) len)))
1464 (- (point) (+ pos 6))))
1466 (delete-region pos (point))
1468 (decode-coding-region (- (point) bytes) (point) coding)))
1472 (decode-coding-region pos (point) 'utf-8))))
1473 (goto-char (point-min))
1474 (- (point-max) (point)))))
1531 (goto-char (setq last-pos (point-min)))
1532 (setq end-pos (point-marker))
1542 (if (< (point) end-pos)
1552 (encode-coding-region last-pos (point) coding-system)
1554 (- (point) last-pos)))
1566 (encode-coding-region last-pos (point) 'mule-utf-8)
1571 (setq last-pos (point)
1573 (if (< (point) end-pos)
1577 (goto-char (point-min))))
1648 characters (starting from point) it should look at.
1679 "Find a coding system for a file FILENAME of which SIZE bytes follow point.
1685 contents of the current buffer following point against
1687 `coding:' tag in the first one or two lines following point. If no
1705 (let ((coding-system (auto-coding-regexp-alist-lookup (point)
1706 (+ (point) size))))
1710 (head-start (point))
1712 (tail-start (+ head-start (max (- size 3072) 0)))
1734 (setq head-start (point))
1786 (pos (1- (point))))
1789 (setq tail-end (point))
1819 (goto-char (point-min))
1826 "Return coding system for a file FILENAME of which SIZE bytes follow point.
1882 (let ((pos-marker (copy-marker (+ (point) inserted)))
1892 (setq inserted (- pos-marker (point)))))
2034 (goto-char (point-min))
2037 filename (- (point-max) (point-min)))))
2049 (decode-coding-region (point-min) (point-max) coding)
2059 (cons (cons from (point-max)) undo-list-saved))))))))
2077 (encode-coding-region (point-min) (point-max) coding)
2078 (decode-coding-region (point-min) (point-max) new-coding)))
2289 (setq size (+ (point) size))
2307 (setq size (min (+ (point) size)
2313 (point))))