Function: semanticdb-find-tags-by-name-regexp
semanticdb-find-tags-by-name-regexp is a byte-compiled function
defined in db-find.el.gz.
Signature
(semanticdb-find-tags-by-name-regexp REGEXP &optional PATH FIND-FILE-MATCH)
Documentation
Search for all tags matching REGEXP on PATH.
See semanticdb-find-translate-path for details on PATH.
FIND-FILE-MATCH indicates that any time a match is found, the file
associated with that tag should be loaded into a buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-find.el.gz
;;;###autoload
(defun semanticdb-find-tags-by-name-regexp (regexp &optional path find-file-match)
"Search for all tags matching REGEXP on PATH.
See `semanticdb-find-translate-path' for details on PATH.
FIND-FILE-MATCH indicates that any time a match is found, the file
associated with that tag should be loaded into a buffer."
(semanticdb-find-tags-collector
(lambda (table tags)
(semanticdb-find-tags-by-name-regexp-method table regexp tags))
path find-file-match))