Function: semanticdb-deep-find-tags-for-completion

semanticdb-deep-find-tags-for-completion is a byte-compiled function defined in db-find.el.gz.

Signature

(semanticdb-deep-find-tags-for-completion PREFIX &optional PATH FIND-FILE-MATCH)

Documentation

Search for all tags matching PREFIX 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
(defun semanticdb-deep-find-tags-for-completion (prefix &optional path find-file-match)
  "Search for all tags matching PREFIX 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-for-completion-method table prefix tags))
   path find-file-match))