• Home
  • Raw
  • Download

Lines Matching refs:CursorKind

657 class CursorKind(BaseEnumeration):  class
669 return [x for x in CursorKind._kinds if not x is None]
719 CursorKind.UNEXPOSED_DECL = CursorKind(1)
722 CursorKind.STRUCT_DECL = CursorKind(2)
725 CursorKind.UNION_DECL = CursorKind(3)
728 CursorKind.CLASS_DECL = CursorKind(4)
731 CursorKind.ENUM_DECL = CursorKind(5)
735 CursorKind.FIELD_DECL = CursorKind(6)
738 CursorKind.ENUM_CONSTANT_DECL = CursorKind(7)
741 CursorKind.FUNCTION_DECL = CursorKind(8)
744 CursorKind.VAR_DECL = CursorKind(9)
747 CursorKind.PARM_DECL = CursorKind(10)
750 CursorKind.OBJC_INTERFACE_DECL = CursorKind(11)
753 CursorKind.OBJC_CATEGORY_DECL = CursorKind(12)
756 CursorKind.OBJC_PROTOCOL_DECL = CursorKind(13)
759 CursorKind.OBJC_PROPERTY_DECL = CursorKind(14)
762 CursorKind.OBJC_IVAR_DECL = CursorKind(15)
765 CursorKind.OBJC_INSTANCE_METHOD_DECL = CursorKind(16)
768 CursorKind.OBJC_CLASS_METHOD_DECL = CursorKind(17)
771 CursorKind.OBJC_IMPLEMENTATION_DECL = CursorKind(18)
774 CursorKind.OBJC_CATEGORY_IMPL_DECL = CursorKind(19)
777 CursorKind.TYPEDEF_DECL = CursorKind(20)
780 CursorKind.CXX_METHOD = CursorKind(21)
783 CursorKind.NAMESPACE = CursorKind(22)
786 CursorKind.LINKAGE_SPEC = CursorKind(23)
789 CursorKind.CONSTRUCTOR = CursorKind(24)
792 CursorKind.DESTRUCTOR = CursorKind(25)
795 CursorKind.CONVERSION_FUNCTION = CursorKind(26)
798 CursorKind.TEMPLATE_TYPE_PARAMETER = CursorKind(27)
801 CursorKind.TEMPLATE_NON_TYPE_PARAMETER = CursorKind(28)
804 CursorKind.TEMPLATE_TEMPLATE_PARAMETER = CursorKind(29)
807 CursorKind.FUNCTION_TEMPLATE = CursorKind(30)
810 CursorKind.CLASS_TEMPLATE = CursorKind(31)
813 CursorKind.CLASS_TEMPLATE_PARTIAL_SPECIALIZATION = CursorKind(32)
816 CursorKind.NAMESPACE_ALIAS = CursorKind(33)
819 CursorKind.USING_DIRECTIVE = CursorKind(34)
822 CursorKind.USING_DECLARATION = CursorKind(35)
825 CursorKind.TYPE_ALIAS_DECL = CursorKind(36)
828 CursorKind.OBJC_SYNTHESIZE_DECL = CursorKind(37)
831 CursorKind.OBJC_DYNAMIC_DECL = CursorKind(38)
834 CursorKind.CXX_ACCESS_SPEC_DECL = CursorKind(39)
840 CursorKind.OBJC_SUPER_CLASS_REF = CursorKind(40)
841 CursorKind.OBJC_PROTOCOL_REF = CursorKind(41)
842 CursorKind.OBJC_CLASS_REF = CursorKind(42)
854 CursorKind.TYPE_REF = CursorKind(43)
855 CursorKind.CXX_BASE_SPECIFIER = CursorKind(44)
859 CursorKind.TEMPLATE_REF = CursorKind(45)
862 CursorKind.NAMESPACE_REF = CursorKind(46)
866 CursorKind.MEMBER_REF = CursorKind(47)
869 CursorKind.LABEL_REF = CursorKind(48)
873 CursorKind.OVERLOADED_DECL_REF = CursorKind(49)
877 CursorKind.VARIABLE_REF = CursorKind(50)
882 CursorKind.INVALID_FILE = CursorKind(70)
883 CursorKind.NO_DECL_FOUND = CursorKind(71)
884 CursorKind.NOT_IMPLEMENTED = CursorKind(72)
885 CursorKind.INVALID_CODE = CursorKind(73)
895 CursorKind.UNEXPOSED_EXPR = CursorKind(100)
899 CursorKind.DECL_REF_EXPR = CursorKind(101)
903 CursorKind.MEMBER_REF_EXPR = CursorKind(102)
906 CursorKind.CALL_EXPR = CursorKind(103)
909 CursorKind.OBJC_MESSAGE_EXPR = CursorKind(104)
912 CursorKind.BLOCK_EXPR = CursorKind(105)
915 CursorKind.INTEGER_LITERAL = CursorKind(106)
918 CursorKind.FLOATING_LITERAL = CursorKind(107)
921 CursorKind.IMAGINARY_LITERAL = CursorKind(108)
924 CursorKind.STRING_LITERAL = CursorKind(109)
927 CursorKind.CHARACTER_LITERAL = CursorKind(110)
932 CursorKind.PAREN_EXPR = CursorKind(111)
936 CursorKind.UNARY_OPERATOR = CursorKind(112)
939 CursorKind.ARRAY_SUBSCRIPT_EXPR = CursorKind(113)
943 CursorKind.BINARY_OPERATOR = CursorKind(114)
946 CursorKind.COMPOUND_ASSIGNMENT_OPERATOR = CursorKind(115)
949 CursorKind.CONDITIONAL_OPERATOR = CursorKind(116)
955 CursorKind.CSTYLE_CAST_EXPR = CursorKind(117)
958 CursorKind.COMPOUND_LITERAL_EXPR = CursorKind(118)
961 CursorKind.INIT_LIST_EXPR = CursorKind(119)
964 CursorKind.ADDR_LABEL_EXPR = CursorKind(120)
967 CursorKind.StmtExpr = CursorKind(121)
970 CursorKind.GENERIC_SELECTION_EXPR = CursorKind(122)
979 CursorKind.GNU_NULL_EXPR = CursorKind(123)
982 CursorKind.CXX_STATIC_CAST_EXPR = CursorKind(124)
985 CursorKind.CXX_DYNAMIC_CAST_EXPR = CursorKind(125)
988 CursorKind.CXX_REINTERPRET_CAST_EXPR = CursorKind(126)
991 CursorKind.CXX_CONST_CAST_EXPR = CursorKind(127)
1000 CursorKind.CXX_FUNCTIONAL_CAST_EXPR = CursorKind(128)
1003 CursorKind.CXX_TYPEID_EXPR = CursorKind(129)
1006 CursorKind.CXX_BOOL_LITERAL_EXPR = CursorKind(130)
1009 CursorKind.CXX_NULL_PTR_LITERAL_EXPR = CursorKind(131)
1012 CursorKind.CXX_THIS_EXPR = CursorKind(132)
1018 CursorKind.CXX_THROW_EXPR = CursorKind(133)
1022 CursorKind.CXX_NEW_EXPR = CursorKind(134)
1026 CursorKind.CXX_DELETE_EXPR = CursorKind(135)
1029 CursorKind.CXX_UNARY_EXPR = CursorKind(136)
1032 CursorKind.OBJC_STRING_LITERAL = CursorKind(137)
1035 CursorKind.OBJC_ENCODE_EXPR = CursorKind(138)
1038 CursorKind.OBJC_SELECTOR_EXPR = CursorKind(139)
1041 CursorKind.OBJC_PROTOCOL_EXPR = CursorKind(140)
1049 CursorKind.OBJC_BRIDGE_CAST_EXPR = CursorKind(141)
1056 CursorKind.PACK_EXPANSION_EXPR = CursorKind(142)
1060 CursorKind.SIZE_OF_PACK_EXPR = CursorKind(143)
1073 CursorKind.LAMBDA_EXPR = CursorKind(144)
1076 CursorKind.OBJ_BOOL_LITERAL_EXPR = CursorKind(145)
1079 CursorKind.OBJ_SELF_EXPR = CursorKind(146)
1082 CursorKind.OMP_ARRAY_SECTION_EXPR = CursorKind(147)
1085 CursorKind.OBJC_AVAILABILITY_CHECK_EXPR = CursorKind(148)
1093 CursorKind.UNEXPOSED_STMT = CursorKind(200)
1096 CursorKind.LABEL_STMT = CursorKind(201)
1099 CursorKind.COMPOUND_STMT = CursorKind(202)
1102 CursorKind.CASE_STMT = CursorKind(203)
1105 CursorKind.DEFAULT_STMT = CursorKind(204)
1108 CursorKind.IF_STMT = CursorKind(205)
1111 CursorKind.SWITCH_STMT = CursorKind(206)
1114 CursorKind.WHILE_STMT = CursorKind(207)
1117 CursorKind.DO_STMT = CursorKind(208)
1120 CursorKind.FOR_STMT = CursorKind(209)
1123 CursorKind.GOTO_STMT = CursorKind(210)
1126 CursorKind.INDIRECT_GOTO_STMT = CursorKind(211)
1129 CursorKind.CONTINUE_STMT = CursorKind(212)
1132 CursorKind.BREAK_STMT = CursorKind(213)
1135 CursorKind.RETURN_STMT = CursorKind(214)
1138 CursorKind.ASM_STMT = CursorKind(215)
1141 CursorKind.OBJC_AT_TRY_STMT = CursorKind(216)
1144 CursorKind.OBJC_AT_CATCH_STMT = CursorKind(217)
1147 CursorKind.OBJC_AT_FINALLY_STMT = CursorKind(218)
1150 CursorKind.OBJC_AT_THROW_STMT = CursorKind(219)
1153 CursorKind.OBJC_AT_SYNCHRONIZED_STMT = CursorKind(220)
1156 CursorKind.OBJC_AUTORELEASE_POOL_STMT = CursorKind(221)
1159 CursorKind.OBJC_FOR_COLLECTION_STMT = CursorKind(222)
1162 CursorKind.CXX_CATCH_STMT = CursorKind(223)
1165 CursorKind.CXX_TRY_STMT = CursorKind(224)
1168 CursorKind.CXX_FOR_RANGE_STMT = CursorKind(225)
1171 CursorKind.SEH_TRY_STMT = CursorKind(226)
1174 CursorKind.SEH_EXCEPT_STMT = CursorKind(227)
1177 CursorKind.SEH_FINALLY_STMT = CursorKind(228)
1180 CursorKind.MS_ASM_STMT = CursorKind(229)
1183 CursorKind.NULL_STMT = CursorKind(230)
1186 CursorKind.DECL_STMT = CursorKind(231)
1189 CursorKind.OMP_PARALLEL_DIRECTIVE = CursorKind(232)
1192 CursorKind.OMP_SIMD_DIRECTIVE = CursorKind(233)
1195 CursorKind.OMP_FOR_DIRECTIVE = CursorKind(234)
1198 CursorKind.OMP_SECTIONS_DIRECTIVE = CursorKind(235)
1201 CursorKind.OMP_SECTION_DIRECTIVE = CursorKind(236)
1204 CursorKind.OMP_SINGLE_DIRECTIVE = CursorKind(237)
1207 CursorKind.OMP_PARALLEL_FOR_DIRECTIVE = CursorKind(238)
1210 CursorKind.OMP_PARALLEL_SECTIONS_DIRECTIVE = CursorKind(239)
1213 CursorKind.OMP_TASK_DIRECTIVE = CursorKind(240)
1216 CursorKind.OMP_MASTER_DIRECTIVE = CursorKind(241)
1219 CursorKind.OMP_CRITICAL_DIRECTIVE = CursorKind(242)
1222 CursorKind.OMP_TASKYIELD_DIRECTIVE = CursorKind(243)
1225 CursorKind.OMP_BARRIER_DIRECTIVE = CursorKind(244)
1228 CursorKind.OMP_TASKWAIT_DIRECTIVE = CursorKind(245)
1231 CursorKind.OMP_FLUSH_DIRECTIVE = CursorKind(246)
1234 CursorKind.SEH_LEAVE_STMT = CursorKind(247)
1237 CursorKind.OMP_ORDERED_DIRECTIVE = CursorKind(248)
1240 CursorKind.OMP_ATOMIC_DIRECTIVE = CursorKind(249)
1243 CursorKind.OMP_FOR_SIMD_DIRECTIVE = CursorKind(250)
1246 CursorKind.OMP_PARALLELFORSIMD_DIRECTIVE = CursorKind(251)
1249 CursorKind.OMP_TARGET_DIRECTIVE = CursorKind(252)
1252 CursorKind.OMP_TEAMS_DIRECTIVE = CursorKind(253)
1255 CursorKind.OMP_TASKGROUP_DIRECTIVE = CursorKind(254)
1258 CursorKind.OMP_CANCELLATION_POINT_DIRECTIVE = CursorKind(255)
1261 CursorKind.OMP_CANCEL_DIRECTIVE = CursorKind(256)
1264 CursorKind.OMP_TARGET_DATA_DIRECTIVE = CursorKind(257)
1267 CursorKind.OMP_TASK_LOOP_DIRECTIVE = CursorKind(258)
1270 CursorKind.OMP_TASK_LOOP_SIMD_DIRECTIVE = CursorKind(259)
1273 CursorKind.OMP_DISTRIBUTE_DIRECTIVE = CursorKind(260)
1276 CursorKind.OMP_TARGET_ENTER_DATA_DIRECTIVE = CursorKind(261)
1279 CursorKind.OMP_TARGET_EXIT_DATA_DIRECTIVE = CursorKind(262)
1282 CursorKind.OMP_TARGET_PARALLEL_DIRECTIVE = CursorKind(263)
1285 CursorKind.OMP_TARGET_PARALLELFOR_DIRECTIVE = CursorKind(264)
1288 CursorKind.OMP_TARGET_UPDATE_DIRECTIVE = CursorKind(265)
1291 CursorKind.OMP_DISTRIBUTE_PARALLELFOR_DIRECTIVE = CursorKind(266)
1294 CursorKind.OMP_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE = CursorKind(267)
1297 CursorKind.OMP_DISTRIBUTE_SIMD_DIRECTIVE = CursorKind(268)
1300 CursorKind.OMP_TARGET_PARALLEL_FOR_SIMD_DIRECTIVE = CursorKind(269)
1303 CursorKind.OMP_TARGET_SIMD_DIRECTIVE = CursorKind(270)
1306 CursorKind.OMP_TEAMS_DISTRIBUTE_DIRECTIVE = CursorKind(271)
1315 CursorKind.TRANSLATION_UNIT = CursorKind(300)
1321 CursorKind.UNEXPOSED_ATTR = CursorKind(400)
1323 CursorKind.IB_ACTION_ATTR = CursorKind(401)
1324 CursorKind.IB_OUTLET_ATTR = CursorKind(402)
1325 CursorKind.IB_OUTLET_COLLECTION_ATTR = CursorKind(403)
1327 CursorKind.CXX_FINAL_ATTR = CursorKind(404)
1328 CursorKind.CXX_OVERRIDE_ATTR = CursorKind(405)
1329 CursorKind.ANNOTATE_ATTR = CursorKind(406)
1330 CursorKind.ASM_LABEL_ATTR = CursorKind(407)
1331 CursorKind.PACKED_ATTR = CursorKind(408)
1332 CursorKind.PURE_ATTR = CursorKind(409)
1333 CursorKind.CONST_ATTR = CursorKind(410)
1334 CursorKind.NODUPLICATE_ATTR = CursorKind(411)
1335 CursorKind.CUDACONSTANT_ATTR = CursorKind(412)
1336 CursorKind.CUDADEVICE_ATTR = CursorKind(413)
1337 CursorKind.CUDAGLOBAL_ATTR = CursorKind(414)
1338 CursorKind.CUDAHOST_ATTR = CursorKind(415)
1339 CursorKind.CUDASHARED_ATTR = CursorKind(416)
1341 CursorKind.VISIBILITY_ATTR = CursorKind(417)
1343 CursorKind.DLLEXPORT_ATTR = CursorKind(418)
1344 CursorKind.DLLIMPORT_ATTR = CursorKind(419)
1345 CursorKind.CONVERGENT_ATTR = CursorKind(438)
1346 CursorKind.WARN_UNUSED_ATTR = CursorKind(439)
1347 CursorKind.WARN_UNUSED_RESULT_ATTR = CursorKind(440)
1348 CursorKind.ALIGNED_ATTR = CursorKind(441)
1352 CursorKind.PREPROCESSING_DIRECTIVE = CursorKind(500)
1353 CursorKind.MACRO_DEFINITION = CursorKind(501)
1354 CursorKind.MACRO_INSTANTIATION = CursorKind(502)
1355 CursorKind.INCLUSION_DIRECTIVE = CursorKind(503)
1361 CursorKind.MODULE_IMPORT_DECL = CursorKind(600)
1363 CursorKind.TYPE_ALIAS_TEMPLATE_DECL = CursorKind(601)
1365 CursorKind.STATIC_ASSERT = CursorKind(602)
1367 CursorKind.FRIEND_DECL = CursorKind(603)
1370 CursorKind.OVERLOAD_CANDIDATE = CursorKind(700)
1534 assert self.kind == CursorKind.INCLUSION_DIRECTIVE
1541 return CursorKind.from_id(self._kind_id)
1709 assert self.kind == CursorKind.ENUM_DECL
1718 assert self.kind == CursorKind.ENUM_CONSTANT_DECL
1871 if self.kind == CursorKind.FIELD_DECL:
2635 return CursorKind.from_id(self.cursorKind)
3878 [CursorKind],
3890 [CursorKind],
3894 [CursorKind],
3906 [CursorKind],
3914 [CursorKind],
3918 [CursorKind],
3926 [CursorKind],
3930 [CursorKind],
3934 [CursorKind],