Home | History | Annotate | Download | only in internal

Lines Matching refs:other

13 # in the documentation and/or other materials provided with the
49 # Minimizes memory usage and disallows assignment to other attributes.
70 def __ne__(self, other):
73 return not self == other
94 # Disallows assignment to other attributes.
135 def MergeFrom(self, other):
139 self._values.extend(other._values)
176 def __eq__(self, other):
178 if self is other:
181 if isinstance(other, self.__class__):
182 return other._values == self._values
183 # We are presumably comparing against some other sequence type.
184 return other == self._values
191 # Disallows assignment to other attributes.
237 def MergeFrom(self, other):
241 self.extend(other._values)
262 def __eq__(self, other):
264 if self is other:
266 if not isinstance(other, self.__class__):
268 'other repeated composite fields.')
269 return self._values == other._values