Home | History | Annotate | Download | only in cindex

Lines Matching refs:tu

28     tu = get_tu(kInput)
30 teststruct = get_cursor(tu, 'teststruct')
82 tu = get_tu('int x;')
83 children = list(tu.cursor.get_children())
92 del tu
96 # If the TU was destroyed, this should cause a segfault.
105 tu = get_tu(constarrayInput)
107 teststruct = get_cursor(tu, 'teststruct')
119 tu = get_tu(source)
121 a = get_cursor(tu, 'a')
122 b = get_cursor(tu, 'b')
123 v = get_cursor(tu, 'v')
137 tu = get_tu('int a;')
138 a = get_cursor(tu, 'a')
145 tu = get_tu('void f(int, int);')
146 f = get_cursor(tu, 'f')
169 tu = get_tu('void f(int, int);')
170 f = get_cursor(tu, 'f')
181 tu = get_tu('void f(int, int);')
182 f = get_cursor(tu, 'f')
190 tu = get_tu('void f(int, int);')
191 f = get_cursor(tu, 'f')
199 tu = get_tu('int i;')
200 i = get_cursor(tu, 'i')
207 tu = get_tu('int i; void f();')
208 i = get_cursor(tu, 'i')
209 f = get_cursor(tu, 'f')
227 tu = get_tu(source)
228 foo = get_cursor(tu, 'foo')
229 bar = get_cursor(tu, 'bar')
240 tu = get_tu('int c[5]; int i[]; int x; int v[x];')
241 c = get_cursor(tu, 'c')
242 i = get_cursor(tu, 'i')
243 v = get_cursor(tu, 'v')
258 tu = get_tu('int i;')
259 i = get_cursor(tu, 'i')
265 tu = get_tu('int i[5]; int j;')
266 i = get_cursor(tu, 'i')
267 j = get_cursor(tu, 'j')
283 tu = get_tu('volatile int i = 4; int j = 2;')
285 i = get_cursor(tu, 'i')
286 j = get_cursor(tu, 'j')
298 tu = get_tu('struct s { void * restrict i; void * j; };')
300 i = get_cursor(tu, 'i')
301 j = get_cursor(tu, 'j')
329 tu = get_tu(source, flags=flags)
330 teststruct = get_cursor(tu, 'a')
364 tu = get_tu(source)
365 teststruct = get_cursor(tu, 'Test')