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

Lines Matching defs:table

514 (defvar artist-popup-menu-table nil)
515 (defvar artist-key-compl-table nil)
576 (defvar artist-replacement-table (make-vector 256 0)
577 "Replacement table for `artist-replace-char'.")
581 ;;; The table of graphic operations
818 This table is primarily a table over the different graphics operations
822 The master table is a list of table elements. The elements of this table
928 The following table describe function arguments and return value
972 ;; Accessors for the master table
976 "Retrieve the tag component from the master table ELEMENT."
980 "Retrieve the info part component from the master table ELEMENT."
1129 artist-key-compl-table)))
1132 artist-key-compl-table)))
1393 (aset artist-replacement-table i i)
1395 (aset artist-replacement-table ?\n ?\s)
1396 (aset artist-replacement-table ?\t ?\s)
1397 (aset artist-replacement-table 0 ?\s)
1403 (make-local-variable 'artist-popup-menu-table)
1404 (make-local-variable 'artist-key-compl-table)
1413 (setq artist-popup-menu-table (artist-compute-popup-menu-table artist-mt))
1414 (setq artist-key-compl-table (artist-compute-key-compl-table artist-mt))
1416 (artist-make-prev-next-op-alist artist-key-compl-table))
1486 ; Computing the table for the x-popup-menu from the master table
1489 (defun artist-compute-popup-menu-table (menu-table)
1493 (artist-compute-popup-menu-table-sub menu-table)))
1495 (defun artist-compute-popup-menu-table-sub (menu-table)
1496 "Compute operation table suitable for `x-popup-menu' from MENU-TABLE."
1520 (cons title (artist-compute-popup-menu-table-sub items))))
1525 menu-table))
1528 ; Computing the completion table from the master table
1531 (defun artist-compute-key-compl-table (menu-table)
1532 "Compute completion table from MENU-TABLE, suitable for `completing-read'."
1549 (artist-compute-key-compl-table items)))
1552 menu-table))))
1560 "Search master table for keyword KWD and return its symbol."
1563 (defun artist-mt-get-symbol-from-keyword-sub (table kwd)
1596 table)
1605 "Search the master table for a graphics operation SYMBOL.
1610 (defun artist-go-retrieve-from-symbol-sub (table symbol retrieve-fn)
1638 table)
1642 "Search the master table, get keyword from a graphics operation SYMBOL."
1646 "Search the master table, get mode-line from a graphics operation SYMBOL."
1650 "Search the master table, get arrow-pred from a graphics operation SYMBOL."
1654 "Search the master table, get arrow-set-fn from a graphics operation SYMBOL."
1658 "Search the master table, get init-fn from a graphics operation SYMBOL."
1662 "Search the master table, get prep-fill-fn from a graphics operation SYMBOL."
1666 "Search the master table, get exit-fn from a graphics operation SYMBOL."
1670 "Search the master table, get draw-fn from a graphics operation SYMBOL."
1674 "Search the master table, get draw-how from a graphics operation SYMBOL."
1678 "Search the master table, get undraw-fn from a graphics operation SYMBOL."
1682 "Search the master table, get interval-fn from a graphics operation SYMBOL."
1686 "Search the master table, get fill-pred from a graphics operation SYMBOL."
1690 "Search the master table, get fill-fn from a graphics operation SYMBOL."
1699 (defun artist-go-get-symbol-shift-sub (table symbol is-shifted)
1723 table)
1731 "Search the master table for a function call SYMBOL.
1736 (defun artist-fc-retrieve-from-symbol-sub (table symbol retrieve-fn)
1757 table)
1761 "Search the master table to get function from a function call SYMBOL."
1963 (aref artist-replacement-table (artist-get-char-at-xy x y))))
1979 (insert (aref artist-replacement-table new-char)))
1984 (setq last-command-event (aref artist-replacement-table new-char))
1996 (let* ((replaced-c (aref artist-replacement-table new-char))
2006 (setq last-command-event (aref artist-replacement-table new-char))
2019 (if (and see-thru (= (aref artist-replacement-table c) ?\s))
2166 This table is also used for determining which char to use for that direction.")
2169 "Return the x-step for DIRECTION from the `artist-direction-info' table."
2173 "Return the y-step for DIRECTION from the `artist-direction-info' table."
2177 "Return the character for DIRECTION from the `artist-direction-info' table."
3938 ;; in the master table, `artist-mt', which would mean leaving a timer
4520 artist-key-compl-table)))
4853 (x-popup-menu last-nonmenu-event artist-popup-menu-table))))
5432 ;; b. Add your mode to the master table, `artist-mt'.
5465 ;; c. Add your mode to the master table, `artist-mt'.
5490 ;; c. Add your mode to the master table, `artist-mt'.
5563 ;; e. Add your new mode to the master table, `artist-mt'.