Lines Matching full:two
16 baseInput="int one;\nint two;\n"
28 two = get_cursor(tu, 'two')
31 self.assertIsNotNone(two)
34 self.assert_location(two.location,line=2,column=5,offset=13)
39 two = get_cursor(tu, 'two')
42 self.assertIsNotNone(two)
45 self.assert_location(two.location,line=3,column=5,offset=14)
50 two = get_cursor(tu, 'two')
53 self.assert_location(two.location,line=2,column=5,offset=14)
85 two = get_cursor(tu, 'two')
91 self.assert_location(two.extent.start,line=2,column=1,offset=9)
92 self.assert_location(two.extent.end,line=2,column=8,offset=16)
93 self.assertEqual(baseInput[two.extent.start.offset:two.extent.end.offset], "int two")