Lines Matching full:one
19 baseInput = "int one;\nint two;\n"
30 one = get_cursor(tu, "one")
33 self.assertIsNotNone(one)
36 self.assert_location(one.location, line=1, column=5, offset=4)
41 one = get_cursor(tu, "one")
44 self.assertIsNotNone(one)
47 self.assert_location(one.location, line=2, column=5, offset=5)
52 one = get_cursor(tu, "one")
55 self.assert_location(one.location, line=1, column=6, offset=5)
66 one = get_cursor(tu, "one")
67 self.assertIsNotNone(one)
68 self.assertEqual(one, cursor)
79 for n in [n for n in tu.cursor.get_children() if n.spelling == "one"]:
87 one = get_cursor(tu, "one")
90 self.assert_location(one.extent.start, line=1, column=1, offset=0)
91 self.assert_location(one.extent.end, line=1, column=8, offset=7)
93 baseInput[one.extent.start.offset : one.extent.end.offset], "int one"
124 int one;
130 one = get_cursor(tu, "one")
132 self.assertFalse(one.location.is_in_system_header)