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

Lines Matching refs:optional

227 ;;    [C]		optional (C may or not occurs)
391 ;; optional:
1049 ;; [optional WIDTH-FUN DIM-FUN ENTRY HEIGHT WIDTH ELEMENT]
2009 optional:
2058 (defun ebnf-print-directory (&optional directory)
2074 (defun ebnf-print-file (file &optional do-not-kill-buffer-when-done)
2077 If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't
2086 (defun ebnf-print-buffer (&optional filename)
2102 (defun ebnf-print-region (from to &optional filename)
2112 (defun ebnf-spool-directory (&optional directory)
2128 (defun ebnf-spool-file (file &optional do-not-kill-buffer-when-done)
2131 If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't
2161 (defun ebnf-eps-directory (&optional directory)
2177 (defun ebnf-eps-file (file &optional do-not-kill-buffer-when-done)
2180 If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't
2242 (defun ebnf-syntax-directory (&optional directory)
2258 (defun ebnf-syntax-file (file &optional do-not-kill-buffer-when-done)
2261 If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't
2680 (defun ebnf-reset-style (&optional style)
2692 (defun ebnf-push-style (&optional style)
4123 (defmacro ebnf-node-kind (vec &optional value)
4133 (defmacro ebnf-node-dimension-func (node &optional value)
4139 (defmacro ebnf-node-entry (vec &optional value)
4145 (defmacro ebnf-node-height (vec &optional value)
4151 (defmacro ebnf-node-width (vec &optional value)
4161 (defmacro ebnf-node-list (vec &optional value)
4171 (defmacro ebnf-node-production (vec &optional value)
4177 (defmacro ebnf-node-separator (vec &optional value)
4183 (defmacro ebnf-node-action (vec &optional value)
4499 ;; [optional width-fun dim-fun entry height width element]
4500 (defun ebnf-generate-optional (optional)
4501 (let ((the-optional (ebnf-node-list optional)))
4503 (+ (- (ebnf-node-height the-optional)
4504 (ebnf-node-entry optional))
4506 (ebnf-node-width optional))
4508 (ebnf-node-generation the-optional)
4623 (defun ebnf-directory (fun &optional directory)
4641 (defun ebnf-file (fun file &optional do-not-kill-buffer-when-done)
4644 If optional arg DO-NOT-KILL-BUFFER-WHEN-DONE is non-nil, the buffer isn't
5290 ;; [optional width-fun dim-fun entry height width element]
5291 (defun ebnf-optional-dimension (optional)
5292 (let ((body (ebnf-node-list optional)))
5294 (ebnf-node-entry optional (ebnf-node-entry body))
5295 (ebnf-node-height optional (+ (ebnf-node-height body)
5297 (ebnf-node-width optional (+ (ebnf-node-width body)
5429 ;; [optional width-fun dim-fun entry height width element]
5597 (defun ebnf-make-empty (&optional width)
5640 (defun ebnf-make-one-or-more (list-part &optional sep-part)
5647 (defun ebnf-make-zero-or-more (list-part &optional sep-part)
5691 (defun ebnf-make-optional (body)
5692 (vector 'ebnf-generate-optional
5694 'ebnf-optional-dimension
5712 (defun ebnf-make-repeat (times primary &optional upper)
5768 (eq kind 'ebnf-generate-optional))
5803 (defun ebnf-token-repeat (times repeat &optional upper)
5812 (defun ebnf-token-optional (body)
5832 (ebnf-make-optional body))