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) 420 def __init__(self, tu, memory, count): argument 421 self._tu = tu 429 def get_tokens(tu, extent): argument 438 conf.lib.clang_tokenize(tu, extent, byref(tokens_memory), 450 token_group = TokenGroup(tu, tokens_memory, tokens_count) 456 token._tu = tu [all …]
|