Home | History | Annotate | Download | only in cindex

Lines Matching refs:tu

9     tu = index.parse(path)
10 assert tu.spelling == path
15 tu = index.parse(path)
16 c = tu.cursor
23 tu = index.parse(path, ['-DDECL_ONE=hello', '-DDECL_TWO=hi'])
24 spellings = [c.spelling for c in tu.cursor.get_children()]
31 tu = index.parse(path, ['-DDECL_ONE=hello', '-DDECL_TWO=hi'])
32 tu.reparse()
33 spellings = [c.spelling for c in tu.cursor.get_children()]
39 tu = index.parse('fake.c', ['-I./'], unsaved_files = [
49 spellings = [c.spelling for c in tu.cursor.get_children()]
56 tu = index.parse('fake.c', unsaved_files = [
58 spellings = [c.spelling for c in tu.cursor.get_children()]
82 tu = index.parse(src)
83 for i in zip(inc, tu.get_includes()):