Searched defs:_kinds (Results 1 - 1 of 1) sorted by relevance

/external/clang/bindings/python/clang/
H A Dcindex.py483 _kinds = [] variable in class:CursorKind
487 if value >= len(CursorKind._kinds):
488 CursorKind._kinds += [None] * (value - len(CursorKind._kinds) + 1)
489 if CursorKind._kinds[value] is not None:
492 CursorKind._kinds[value] = self
510 if id >= len(CursorKind._kinds) or CursorKind._kinds[id] is None:
512 return CursorKind._kinds[id]
517 return filter(None, CursorKind._kinds)
1403 _kinds = [] variable in class:TypeKind
[all...]

Completed in 53 milliseconds