Lines Matching refs:_KIND
7 _KIND = _info.KIND
29 return _KIND.is_type_decl(item.kind)
33 return _KIND.is_decl(item.kind)
62 if decl.kind is _KIND.TYPEDEF:
66 elif decl.kind is _KIND.FUNCTION:
69 elif decl.kind is _KIND.VARIABLE:
77 return decl.kind in (_KIND.VARIABLE, _KIND.FUNCTION)
85 if decl.kind is _KIND.FUNCTION:
104 if decl.kind is _KIND.FUNCTION:
111 if not decl.kind is _KIND.VARIABLE:
117 if not decl.kind is _KIND.VARIABLE:
127 kinds = _KIND._TYPE_DECLS
129 kinds = _KIND._TYPE_DECLS
131 okay = kind in _KIND
162 collated = {kind: [] for kind in _KIND}
173 collated = {_KIND.get_group(k): [] for k in _KIND}
175 group = _KIND.get_group(item.kind)