Function: semantic-brute-find-tag-by-attribute
semantic-brute-find-tag-by-attribute is a byte-compiled function
defined in find.el.gz.
Signature
(semantic-brute-find-tag-by-attribute ATTR STREAMORBUFFER &optional SEARCH-PARTS SEARCH-INCLUDES)
Documentation
Find all tags with a given ATTR in STREAMORBUFFER.
ATTR is a symbol key into the attributes list.
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-attribute
(attr streamorbuffer &optional search-parts search-includes)
"Find all tags with a given ATTR in STREAMORBUFFER.
ATTR is a symbol key into the attributes list.
Optional argument SEARCH-PARTS and SEARCH-INCLUDES are passed to
`semantic-brute-find-tag-by-function'."
(semantic-brute-find-tag-by-function
(lambda (tag) (semantic-tag-get-attribute tag attr))
streamorbuffer search-parts search-includes)
)