Function: semanticdb-find-tags-by-class

semanticdb-find-tags-by-class is an autoloaded and byte-compiled function defined in db-find.el.gz.

Signature

(semanticdb-find-tags-by-class CLASS &optional PATH FIND-FILE-MATCH)

Documentation

Search for all tags of CLASS 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-class (class &optional path find-file-match)
  "Search for all tags of CLASS 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-class-method table class tags))
   path find-file-match))