Function: semantic-brute-find-tag-by-name-regexp

semantic-brute-find-tag-by-name-regexp is a byte-compiled function defined in find.el.gz.

Signature

(semantic-brute-find-tag-by-name-regexp REGEX STREAMORBUFFER &optional SEARCH-PARTS SEARCH-INCLUDES)

Documentation

Find all tags whose name match REGEX in STREAMORBUFFER.

Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to semantic-brute-find-tag-by-function.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/find.el.gz
(defun semantic-brute-find-tag-by-name-regexp
  (regex streamorbuffer &optional search-parts search-includes)
  "Find all tags whose name match REGEX in STREAMORBUFFER.
Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to
`semantic-brute-find-tag-by-function'."
  (semantic-brute-find-tag-by-function
   (lambda (tag) (string-match regex (semantic-tag-name tag)))
    streamorbuffer search-parts search-includes)
  )