D | cindex.py | 180 def from_position(tu, file, line, column): argument 185 return conf.lib.clang_getLocation(tu, file, line, column) 188 def from_offset(tu, file, offset): argument 195 return conf.lib.clang_getLocationForOffset(tu, file, offset) 437 def __init__(self, tu, memory, count): argument 438 self._tu = tu 446 def get_tokens(tu, extent): argument 455 conf.lib.clang_tokenize(tu, extent, byref(tokens_memory), 467 token_group = TokenGroup(tu, tokens_memory, tokens_count) 473 token._tu = tu [all …]
|