Home | History | Annotate | Download | only in cindex

Lines Matching refs:location

23     assert_location(one.location,line=1,column=5,offset=4)
24 assert_location(two.location,line=2,column=5,offset=13)
34 assert_location(one.location,line=2,column=5,offset=5)
35 assert_location(two.location,line=3,column=5,offset=14)
42 assert_location(one.location,line=1,column=6,offset=5)
43 assert_location(two.location,line=2,column=5,offset=14)
45 # define the expected location ourselves and see if it matches
46 # the returned location
50 location = SourceLocation.from_position(tu, file, 1, 5)
51 cursor = Cursor.from_location(tu, location)
59 assert location == location2