Lines Matching defs:CursorKind
9 from clang.cindex import CursorKind
203 if node.kind == CursorKind.FUNCTION_DECL:
206 if node.kind == CursorKind.VAR_DECL and depth == 1:
230 if node.kind == CursorKind.NAMESPACE or node.kind == CursorKind.CLASS_DECL:
235 if node.kind == CursorKind.CXX_METHOD and check_cpp_namespace(
239 if node.kind == CursorKind.FUNCTION_TEMPLATE and check_cpp_namespace(
243 if node.kind == CursorKind.DESTRUCTOR and check_cpp_namespace(depth):
245 if node.kind == CursorKind.VAR_DECL and check_cpp_namespace(
248 if node.kind == CursorKind.CONSTRUCTOR and check_cpp_namespace(depth):
267 if node.kind == CursorKind.CLASS_DECL: