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

Lines Matching +defs:table +defs:string

89 ;;			     ; quoted string of SP and VCHAR without DQUOTE
105 ;; ; bracketed string of SP and VCHAR without
166 ;; 2. To have a case SENSITIVE string, use the character notation.
167 ;; For example, to specify the lowercase string "abc", use:
205 ;; \240 to \377) for rule name, string and comment.
338 ;; only * ==> lower & upper are empty string
354 ((and (string= lower "1") (null upper))
357 ((or (and (string= lower "0") (null upper))
358 (and (string= lower "") (string= upper "")))
379 ;;; ; quoted string of SP and VCHAR without DQUOTE
395 ;;; ; bracketed string of SP and VCHAR without
431 (defconst ebnf-abn-token-table (make-vector 256 'error)
436 "Initialize EBNF token table."
441 (aset ebnf-abn-token-table char 'integer)
446 (aset ebnf-abn-token-table char 'non-terminal)
451 (aset ebnf-abn-token-table char 'non-terminal)
456 (aset ebnf-abn-token-table char 'non-terminal)
459 (aset ebnf-abn-token-table ?\n 'end-of-rule) ; [NL] linefeed
460 (aset ebnf-abn-token-table ?\r 'end-of-rule) ; [CR] carriage return
462 (aset ebnf-abn-token-table ?\013 'space) ; [VT] vertical tab
463 (aset ebnf-abn-token-table ?\t 'space) ; [HT] horizontal tab
464 (aset ebnf-abn-token-table ?\ 'space) ; [SP] space
466 (aset ebnf-abn-token-table ?\f 'form-feed) ; [FF] form feed
468 (aset ebnf-abn-token-table ?< 'non-terminal)
469 (aset ebnf-abn-token-table ?% 'terminal)
470 (aset ebnf-abn-token-table ?\" 'terminal)
471 (aset ebnf-abn-token-table ?\( 'begin-group)
472 (aset ebnf-abn-token-table ?\) 'end-group)
473 (aset ebnf-abn-token-table ?* 'repeat)
474 (aset ebnf-abn-token-table ?= 'equal)
475 (aset ebnf-abn-token-table ?\[ 'begin-optional)
476 (aset ebnf-abn-token-table ?\] 'end-optional)
477 (aset ebnf-abn-token-table ?/ 'alternative)
479 (aset ebnf-abn-token-table ?\; 'comment)))
503 (setq token (aref ebnf-abn-token-table (following-char)))
531 ;; terminal: "string" or %[bdx]NNN((.NNN)+|-NNN)?
535 (ebnf-abn-string)
596 (setq ebnf-action (aref ebnf-comment-table (following-char)))
615 (defconst ebnf-abn-string-chars
619 (defun ebnf-abn-string ()
625 (skip-chars-forward ebnf-abn-string-chars ebnf-limit)