Function: ede-locate-create/update-root-database
ede-locate-create/update-root-database is a byte-compiled function
defined in locate.el.gz.
Signature
(ede-locate-create/update-root-database ARG &rest ARGS)
Implementations
(ede-locate-create/update-root-database (LOC (subclass ede-locate-cscope)) ROOT) in `ede/locate.el'.
Create or update the Cscope database for the current project.
(ede-locate-create/update-root-database (LOC (subclass ede-locate-idutils)) ROOT) in `ede/locate.el'.
Create or update the GNU Global database for the current project.
(ede-locate-create/update-root-database (LOC (subclass ede-locate-global)) ROOT) in `ede/locate.el'.
Create or update the GNU Global database for the current project.
(ede-locate-create/update-root-database (LOC (subclass ede-locate-base)) ROOT) in `ede/locate.el'.
Create or update the database for the current project. You cannot create projects for the baseclass.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/locate.el.gz
(cl-defmethod ede-locate-create/update-root-database
((loc (subclass ede-locate-base)) _root)
"Create or update the database for the current project.
You cannot create projects for the baseclass."
(error "Cannot create/update a database of type %S"
(eieio-object-name loc)))