Function: semantic-brute-find-tag-by-property
semantic-brute-find-tag-by-property is a byte-compiled function
defined in find.el.gz.
Signature
(semantic-brute-find-tag-by-property PROPERTY VALUE STREAMORBUFFER &optional SEARCH-PARTS SEARCH-INCLUDES)
Documentation
Find all tags with PROPERTY equal to VALUE 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-property
(property value streamorbuffer &optional search-parts search-includes)
"Find all tags with PROPERTY equal to VALUE 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) (equal (semantic--tag-get-property tag property) value))
streamorbuffer search-parts search-includes)
)