Function: semanticdb-brute-deep-find-tags-by-name

semanticdb-brute-deep-find-tags-by-name is a byte-compiled function defined in db-find.el.gz.

Signature

(semanticdb-brute-deep-find-tags-by-name NAME &optional PATH FIND-FILE-MATCH)

Documentation

Search for all tags matching NAME on PATH.

See semanticdb-find-translate-path for details on PATH. The argument BRUTISH will be set so that searching includes all tables in the current project. 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
;;; Brutish Search Routines
;;
(defun semanticdb-brute-deep-find-tags-by-name (name &optional path find-file-match)
  "Search for all tags matching NAME on PATH.
See `semanticdb-find-translate-path' for details on PATH.
The argument BRUTISH will be set so that searching includes all tables
in the current project.
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 t))