Lines Matching defs:label
2360 label: str
2365 label: str
2817 def __init__(self, x, y, label):
2820 self.label = label
2823 label = 'B'
4110 def __init__(self, label: T,
4113 self.label = label # type: T
4124 self.assertEqual(a.label, x)
4125 self.assertEqual(b.label, x)
4126 self.assertEqual(c.label, x)
4497 def __init__(self, label: T):
4498 self.label = label
5140 Label = TypedDict('Label', [('label', str)])
6546 self.assertEqual(LabelPoint2D.__annotations__, {'x': int, 'y': int, 'label': str})
6553 other = LabelPoint2D(x=0, y=1, label='hi')
6554 self.assertEqual(other['label'], 'hi')