Function: semanticdb-typecache-find

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

Signature

(semanticdb-typecache-find TYPE &optional PATH FIND-FILE-MATCH)

Documentation

Search the typecache for TYPE in PATH.

If type is a string, split the string, and search for the parts. If type is a list, treat the type as a pre-split string. PATH can be nil for the current buffer, or a semanticdb table. FIND-FILE-MATCH is non-nil to force all found tags to be loaded into a buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-typecache.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;; Search Routines
;;
;;;###autoload
(define-overloadable-function semanticdb-typecache-find (type &optional path find-file-match)
  "Search the typecache for TYPE in PATH.
If type is a string, split the string, and search for the parts.
If type is a list, treat the type as a pre-split string.
PATH can be nil for the current buffer, or a semanticdb table.
FIND-FILE-MATCH is non-nil to force all found tags to be loaded into a buffer.")