Function: semantic-deep-find-tags-by-name-regexp
semantic-deep-find-tags-by-name-regexp is a macro defined in
find.el.gz.
Signature
(semantic-deep-find-tags-by-name-regexp REGEXP &optional TABLE)
Documentation
Find all tags with name matching REGEXP in TABLE.
Search in top level tags, and their components, in TABLE.
REGEXP is a string containing a regular expression,
TABLE is a tag table. See semantic-flatten-tags-table.
See also semantic-find-tags-by-name-regexp.
Consider using semantic-deep-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-deep-find-tags-by-name-regexp (regexp &optional table)
"Find all tags with name matching REGEXP in TABLE.
Search in top level tags, and their components, in TABLE.
REGEXP is a string containing a regular expression,
TABLE is a tag table. See `semantic-flatten-tags-table'.
See also `semantic-find-tags-by-name-regexp'.
Consider using `semantic-deep-find-tags-for-completion' if you are
attempting to do completions."
`(semantic-find-tags-by-name-regexp
,regexp (semantic-flatten-tags-table ,table)))