Home | History | Annotate | Download | only in fontTools

Lines Matching refs:_children

53 			self._children = []
57 self._children = []
118 if hasattr(self, '_children'):
119 return len(self._children)
125 if hasattr(self, '_children'):
130 self._children = children
136 if not hasattr(self, '_children'):
137 self._children = [None] * len(self)
138 c = self._children[n]
141 c = self._children[n] = Row(self, n, k, v, self._font)