Function: semanticdb-deep-find-tags-by-name
semanticdb-deep-find-tags-by-name is a byte-compiled function defined
in db-find.el.gz.
Signature
(semanticdb-deep-find-tags-by-name NAME &optional PATH FIND-FILE-MATCH)
Documentation
Search for all tags matching NAME on PATH.
Search also in all components of top level tags founds.
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
;;; Deep Searches
(defun semanticdb-deep-find-tags-by-name (name &optional path find-file-match)
"Search for all tags matching NAME on PATH.
Search also in all components of top level tags founds.
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-deep-find-tags-by-name-method table name tags))
path find-file-match))