Function: semantic-collector-all-completions

semantic-collector-all-completions is a byte-compiled function defined in complete.el.gz.

Signature

(semantic-collector-all-completions ARG &rest ARGS)

Implementations

((obj semantic-collector-abstract) prefix) in `semantic/complete.el'.

For OBJ, retrieve all completions matching PREFIX. The returned list consists of all the tags currently matching PREFIX.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/complete.el.gz
(cl-defmethod semantic-collector-all-completions
  ((obj semantic-collector-abstract) _prefix)
  "For OBJ, retrieve all completions matching PREFIX.
The returned list consists of all the tags currently
matching PREFIX."
  (when (slot-boundp obj 'last-all-completions)
    (oref obj last-all-completions)))