Home | History | Annotate | Download | only in mdcompact

Lines Matching refs:rx

46 (require 'rx)
49 mdcomp-constr-rx
50 (rx "(match_operand" (? ":" (1+ (or punct alnum)))
65 (rx-define mdcomp-name (1+ (or alnum "_")))
67 (defconst mdcomp-attr-rx
68 (rx "(set_attr" (1+ space) "\""
76 (when (re-search-forward mdcomp-attr-rx nil t)
83 (rx "\\") ""
85 (rx (1+ (or space ",")))))))))
96 (beg (re-search-backward (rx bol (1+ space) "["))))
99 (delete-region beg (re-search-forward (rx "]")))))
111 (replace-regexp-in-region (rx "\\" eol (0+ space)) " " beg (point-max)))))
114 (cl-loop while (re-search-forward mdcomp-constr-rx nil t)
123 (rx (1+ ","))))))
142 (re-search-forward (rx (or "\"" ")")))
162 while (re-search-forward (rx bol (0+ space) (or (group-n 1 "* return")
207 (end (re-search-forward (rx eol)))
214 (align-regexp beg (point) (rx (group-n 1 "") "["))
215 (align-regexp beg (point) (rx (group-n 1 "") (or "," ";")) nil nil t)
216 (align-regexp beg (point) (rx (group-n 1 "") "]"))
224 (when (re-search-forward (rx (1+ (or space eol)) ")") nil t)
230 (end (re-search-forward (rx bol (1+ ")")))))
243 (re-search-forward (rx "\"" (group-n 1 (1+ (not "\""))) "\""))
263 (rx "match_operand" (1+ any) letter (0+ space) "," (0+ space) letter) nil t)
269 (re-search-forward (rx ")" eol eol))))))
272 (defconst mdcomp-file-rx (rx bol alpha (0+ not-newline) ".md" eol))
286 (directory-files-recursively folder mdcomp-file-rx)
287 (directory-files folder t mdcomp-file-rx)))