Searched refs:syntoken (Results 1 - 17 of 17) sorted by relevance
| /xsrc/external/mit/xedit/dist/lisp/modules/progmodes/ |
| H A D | patch.lsp | 39 (syntoken "^(\\d+d\\d+|\\d+a\\d+,\\d+)$" :property *prop-keyword*) 40 (syntoken "^<.*" :property *prop-constant*) 41 (syntoken "^>.*" :property *prop-preprocessor*) 44 (syntoken "^\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*\\*" 46 (syntoken "^\\*\\*\\* \\d+,\\d+ \\*\\*\\*\\*" :property *prop-comment*) 47 (syntoken "^--- \\d+,\\d+ ----" :property *prop-comment*) 50 (syntoken "^(---|\\+\\+\\+|\\*\\*\\*).*" :property *prop-keyword*) 52 (syntoken "^@@ .*" :property *prop-comment*) 53 (syntoken "^-.*" :property *prop-constant*) 54 (syntoken " [all...] |
| H A D | rpm.lsp | 52 (syntoken "^%package" 65 (syntoken "^%(build|setup|install|pre|preun|post|postun)\\>" 71 (syntoken "^%changelog\\>" 78 (syntoken "%%") 80 (syntoken "%" :property *prop-control*) 82 (syntoken "<[a-z0-9_-]+@[a-z0-9_-]+\\.\\w+(\\.\\w+)?>" 87 (syntoken "#" :contained t :nospec t :begin :comment) 91 (syntoken "%\\{?\\w+\\}?" :property *prop-rpm-special*) 92 (syntoken "$" :switch -1) 100 (syntoken " [all...] |
| H A D | imake.lsp | 64 (syntoken "^\\s*XCOMM\\W?.*$" 67 (syntoken "^\\t+" 70 (syntoken "$(" 75 (syntoken "[][(){};$<=>&@/\\,.:~!|*?'`+-]" 79 (syntoken "^\\s*#\\s*\\w+" 84 (syntoken "/*" 90 (syntoken "\"" 96 (syntoken "\\\"" 102 (syntoken ")" 112 (syntoken "/*" [all...] |
| H A D | xconf.lsp | 39 (syntoken "\\<(Section|SubSection)\\>" 43 (syntoken "\"" :nospec t :begin :name) 46 (syntoken "\\\\.") 47 (syntoken "\"" :nospec t :switch -2) 52 (syntoken "\\<(EndSection|EndSubSection)\\>" 56 (syntoken "\\<\\d+(\\.\\d+)?\\>" :property *prop-number*) 59 (syntoken "#.*$" :property *prop-comment*) 62 (syntoken "\"" :nospec t :begin :string :contained t) 65 (syntoken "\\\\.") 66 (syntoken "\"" [all...] |
| H A D | sh.lsp | 57 (syntoken "\\<(if|then|elif|else|fi|case|in|esac|for|do|done|while|until|break|continue|eval|exit|exec|test|echo|cd|shift|local|return)\\>" 61 (syntoken "#.*$" :property *prop-comment*) 64 (syntoken "[][;:*?(){}<>&!|$#]+" :property *prop-punctuation*) 67 (syntoken "\\w+=" :property *prop-preprocessor*) 70 (syntoken "\\<\\d+\\>" :property *prop-number*) 73 (syntoken "\\\\." :property *prop-backslash*) 76 (syntoken "'" :nospec t :contained t :begin :single) 79 (syntoken "\\\\.") 80 (syntoken "'" :nospec t :switch -1) 84 (syntoken "\"" [all...] |
| H A D | auto.lsp | 52 (syntoken "(#.*|\\<dnl($|\\>.*))" :property *prop-comment*) 55 (syntoken 62 (syntoken "^[a-zA-Z0-9_]+$" :property *prop-macro*) 66 (syntoken "\\\\.") 67 (syntoken "\"" :nospec t :switch -1) 70 (syntoken "\\\\.") 71 (syntoken "'" :nospec t :switch -1) 74 (syntoken "\\\\.") 75 (syntoken "`" :nospec t :switch -1) 79 (syntoken "\\\"" [all...] |
| H A D | make.lsp | 58 (syntoken "^\\t+" :property *prop-tabulation*) 60 (syntoken "^\\.\\w+" :property *prop-keyword*) 62 (syntoken "$(" 67 (syntoken "[][(){};$<=>&@/\\,.:~!|*?'`+-]" 71 (syntoken "#.*" 75 (syntoken "\"" 81 (syntoken "\\\"" 87 (syntoken ")" 97 (syntoken "\\\\.") 100 (syntoken "\\\\ [all...] |
| H A D | xlog.lsp | 67 (syntoken "^XFree86 Version \\S+" :property *prop-annotation*) 70 (syntoken "^Release Date: " :property *prop-keyword* :begin :note) 73 (syntoken "^Build Operating System: " :property *prop-keyword* :begin :note) 75 (syntable :note *prop-annotation* nil (syntoken "$" :switch -1)) 78 (syntoken "^\\(II\\) " :property *prop-keyword*) 81 (syntoken "^\\(==\\) " :property *prop-keyword* :begin :default) 82 (syntable :default *prop-xlog-default* nil (syntoken "$" :switch -1)) 85 (syntoken "^\\(--\\) " :property *prop-keyword* :begin :probe) 86 (syntable :probe *prop-xlog-probe* nil (syntoken "$" :switch -1)) 89 (syntoken " [all...] |
| H A D | xrdb.lsp | 55 (syntoken "^\\s*!.*" 57 (syntoken "^\\s*#.*" 59 (syntoken "\\*|\\.|\\?" 62 (syntoken "." 67 (syntoken "/*" :nospec t :begin :comment :contained t) 69 (syntoken "/*" :nospec t :property *prop-error*) 71 (syntoken "*/" :nospec t :switch -1) 75 (syntoken "\\*|\\.|\\?" :property *prop-xrdb-punctuation*) 76 (syntoken ":\\s*" :property *prop-xrdb-punctuation* :begin :value) 80 (syntoken "\\\\ [all...] |
| H A D | man.lsp | 85 (defmacro man-syntoken (pattern) 86 `(syntoken (string-concat "^\\.(" ,pattern ")(\\s+|$)") 94 (syntoken "$" :switch -1) 99 (syntoken "^\\.\\\\\".*" 102 (man-syntoken "b|br|nm") 105 (man-syntoken "i|ir|ri|ip") 108 (man-syntoken "th|dt") 111 (man-syntoken "sh") 114 (man-syntoken "ss") 117 (man-syntoken "b [all...] |
| H A D | sgml.lsp | 109 ;; The macros sgml-syntoken and sgml-syntable allows creating rules for 136 (defmacro sgml-syntoken (name) 137 `(syntoken (string-concat "<" ,name "\\>") 151 (syntoken ">" 158 (syntoken (string-concat "</" ,name ">") 180 (syntoken ">" 187 (syntoken "</" 193 (syntoken "<" 198 (syntoken "<p>" 212 (defmacro sgml-syntoken [all...] |
| H A D | html.lsp | 151 (defmacro html-syntoken (name) 152 `(syntoken (string-concat "<" ,name "\\>") 161 (syntoken ">" :nospec t :property *prop-html-tag* :begin nested-label) 163 (syntoken (string-concat "</" ,name ">") 165 (syntoken (string-concat "</" ,name "\\s*$") 171 (syntoken "<!--" :nospec t :contained t :begin :comment) 173 (syntoken "-->" :nospec t :switch -1)) 174 (syntoken "&([a-zA-Z0-9_.-]+|#\\x\\x?);?" :property *prop-html-entity*) 175 (syntoken "<li>" :nospec t :icase t :property *prop-html-li*) 176 (syntoken "<h [all...] |
| H A D | lisp.lsp | 283 (syntoken "\\(+\\s*[][{}A-Za-z_0-9!$%&/<=>?^~*:+-]*\\)*" 285 (syntoken "\\)+" :property *prop-keyword*) 288 (syntoken "\\<(nil|t)\\>" :icase t :property *prop-special*) 290 (syntoken "|" :nospec t :begin :unreadable :contained t) 293 (syntoken ":[][{}A-Za-z_0-9!$%&/<=>^~+-]+" :property *prop-constant*) 296 (syntoken "\\*[][{}A-Za-z_0-9!$%&7=?^~+-]+\\*" 300 (syntoken "&(aux|key|optional|rest)\\>" :icase t :property *prop-constant*) 303 (syntoken 319 (syntoken "#\\\\(\\W|\\w+(-\\w+)?)" :property *prop-constant*) 322 (syntoken "[`' [all...] |
| H A D | perl.lsp | 367 `(syntoken (string-concat "\\<q(q|w)?\\s*\\" ,token) 373 (syntoken ,end :nospec t :switch -1) 379 (syntoken 388 (syntoken 396 (syntoken "(&?(\\w+)|&(\\w+)?)'\\w+" :property *prop-preprocessor*) 399 (syntoken 411 (syntoken "\\$(\\d|^\\u|[][0-9!#$*()_@<>?/|,\"'])" :property *prop-keyword*) 428 (syntoken "\\\\\\d{3}|\\\\." :property *prop-string-escape*) 429 (syntoken "(\\{\\$|\\$\\{)" :property *prop-string-keyword-bold* :begin :string-varbrace) 430 (syntoken "[ [all...] |
| H A D | python.lsp | 245 (syntoken 254 (syntoken "^\\s+" :property *prop-indent*) 257 (syntoken 265 (syntoken "(\\w+\\.)+" :property *prop-preprocessor*) 268 (syntoken "\\<__[a-zA-Z0-9]+__\\>" :property *prop-keyword*) 271 (syntoken 283 (syntoken "#.*" :property *prop-comment*) 286 (syntoken "[][(){}+*/%^&<>=.,|!~:-]+" :property *prop-punctuation*) 289 (syntoken "'" :nospec t :property *prop-constant* :begin :constant) 290 (syntoken "'''" [all...] |
| H A D | c.lsp | 1006 (syntoken 1019 (syntoken 1032 (syntoken "\"" :nospec t :begin :string :contained t) 1035 (syntoken "'" :nospec t :begin :character :contained t) 1038 (syntoken "^\\s*#\\s*\\w+" :begin :preprocessor :contained t) 1041 (syntoken "/*" :nospec t :begin :comment :contained t) 1044 (syntoken "//.*" :property *prop-comment*) 1048 (syntoken "[][(){}/*+:;=<>,&.!%|^~?-][][(){}*+:;=<>,&.!%|^~?-]?" 1055 (syntoken "/*" :nospec t :property *prop-error*) 1057 (syntoken "XX [all...] |
| /xsrc/external/mit/xedit/dist/lisp/modules/ |
| H A D | syntax.lsp | 39 syntable syntoken synaugment 229 (defstruct syntoken function 235 ;; (not NIL) -> apply syntoken property 262 ;; Just a wrapper to make-syntoken. 273 (defun syntoken (pattern function 288 (make-syntoken 308 tokens ;; A list of syntoken structures. 324 ;; XXX Same comments as for syntoken about the use of a constructor for 356 (syntoken-p item) 369 :tokens (remove-if-not #'syntoken [all...] |
Completed in 12 milliseconds