Function: semantic-find-tags-by-name-regexp
semantic-find-tags-by-name-regexp is a macro defined in find.el.gz.
Signature
(semantic-find-tags-by-name-regexp REGEXP &optional TABLE)
Documentation
Find all tags with name matching REGEXP in TABLE.
REGEXP is a string containing a regular expression,
TABLE is a tag table. See semantic-something-to-tag-table.
Consider using semantic-find-tags-for-completion if you are
attempting to do completions.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/find.el.gz
(defmacro semantic-find-tags-by-name-regexp (regexp &optional table)
"Find all tags with name matching REGEXP in TABLE.
REGEXP is a string containing a regular expression,
TABLE is a tag table. See `semantic-something-to-tag-table'.
Consider using `semantic-find-tags-for-completion' if you are
attempting to do completions."
`(let ((case-fold-search semantic-case-fold))
(semantic--find-tags-by-macro
(string-match ,regexp (semantic-tag-name (car tags)))
,table)))