/external/clang/bindings/python/tests/cindex/ |
test_location.py | 5 from .util import get_cursor namespace 17 one = get_cursor(tu, 'one') 18 two = get_cursor(tu, 'two') 28 one = get_cursor(tu, 'one') 29 two = get_cursor(tu, 'two') 39 one = get_cursor(tu, 'one') 40 two = get_cursor(tu, 'two') 53 one = get_cursor(tu, 'one') 74 one = get_cursor(tu, 'one') 75 two = get_cursor(tu, 'two' [all...] |
test_cursor.py | 6 from .util import get_cursor namespace 111 cls = get_cursor(tu, 'X') 112 foo = get_cursor(tu, 'foo') 113 bar = get_cursor(tu, 'bar') 123 typedef = get_cursor(tu, 'foo') 140 decl = get_cursor(tu, 'C') 148 decl = get_cursor(tu, 'C') 156 enum = get_cursor(tu, 'TEST') 165 enum = get_cursor(tu, 'TEST') 173 i = get_cursor(tu, 'i' [all...] |
test_type.py | 7 from .util import get_cursor namespace 30 teststruct = get_cursor(tu, 'teststruct') 107 teststruct = get_cursor(tu, 'teststruct') 121 a = get_cursor(tu, 'a') 122 b = get_cursor(tu, 'b') 123 v = get_cursor(tu, 'v') 138 a = get_cursor(tu, 'a') 146 f = get_cursor(tu, 'f') 170 f = get_cursor(tu, 'f') 182 f = get_cursor(tu, 'f' [all...] |
util.py | 33 def get_cursor(source, spelling): function 54 result = get_cursor(cursor, spelling) 90 'get_cursor',
|
test_translation_unit.py | 13 from .util import get_cursor namespace 147 foo = get_cursor(tu2, 'foo')
|