Function: semantic-analyze-split-name
semantic-analyze-split-name is a byte-compiled function defined in
fcn.el.gz.
Signature
(semantic-analyze-split-name NAME)
Documentation
Split a tag NAME into a sequence.
Sometimes NAMES are gathered from the parser that are compounded,
such as in C++ where foo::bar means:
"The class BAR in the namespace FOO."
Return the string NAME for no change, or a list if it needs to be split.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/analyze/fcn.el.gz
;;; Small Mode Specific Options
;;
;; These queries allow a major mode to help the analyzer make decisions.
;;
(define-overloadable-function semantic-analyze-split-name (name)
"Split a tag NAME into a sequence.
Sometimes NAMES are gathered from the parser that are compounded,
such as in C++ where foo::bar means:
\"The class BAR in the namespace FOO.\"
Return the string NAME for no change, or a list if it needs to be split.")