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

Lines Matching defs:character

10 ;; Keywords: CCL, mule, multilingual, character set, coding-system
38 ;; calculating code points of X fonts from character codes.
57 read-multibyte-character write-multibyte-character
58 translate-character
60 lookup-character]
107 [read-multibyte-character
108 write-multibyte-character
109 translate-character
110 translate-character-const-tbl
804 ;; Compile read-multibyte-character
805 (defun ccl-compile-read-multibyte-character (cmd)
812 (ccl-embed-extended-command 'read-multibyte-character rrr RRR 0))
815 ;; Compile write-multibyte-character
816 (defun ccl-compile-write-multibyte-character (cmd)
823 (ccl-embed-extended-command 'write-multibyte-character rrr RRR 0))
826 ;; Compile translate-character
827 (defun ccl-compile-translate-character (cmd)
836 (ccl-embed-extended-command 'translate-character-const-tbl
841 (ccl-embed-extended-command 'translate-character rrr RRR Rrr))))
864 ;; Compile lookup-character
865 (defun ccl-compile-lookup-character (cmd)
1232 (defun ccl-dump-read-multibyte-character (rrr RRR Rrr)
1233 (insert (format "read-multibyte-character r%d r%d\n" RRR rrr)))
1235 (defun ccl-dump-write-multibyte-character (rrr RRR Rrr)
1236 (insert (format "write-multibyte-character r%d r%d\n" RRR rrr)))
1238 (defun ccl-dump-translate-character (rrr RRR Rrr)
1241 (defun ccl-dump-translate-character-const-tbl (rrr RRR Rrr)
1383 ;; Read a character from the input text while parsing
1385 ;; the character, set REG_1 to the code point of the
1386 ;; character. If the dimension of charset is two, set REG_1
1389 | (read-multibyte-character REG_0 REG_1)
1393 ;; a multibyte character, write the corresponding multibyte
1400 ;; is a multibyte character, write the corresponding multibyte
1410 ;; character, write the corresponding multibyte
1413 ;; Write a multibyte representation of a character whose
1417 ;; is the second code point of the character.
1418 | (write-multibyte-character REG_0 REG_1)
1460 ;; code, and CHAR is the corresponding JISX0208 character,
1469 ;; JISX0208 character CHAR, and SJIS is the correponding
1500 (translate-character REG(table) REG(charset) REG(codepoint))
1501 | (translate-character SYMBOL REG(charset) REG(codepoint))
1504 (lookup-character SYMBOL REG(charset) REG(codepoint))