Lines Matching refs:__class__
323 type(member).__qualname__, cls.__class__.__qualname__))
404 metacls = cls.__class__
635 self.__class__.__name__, self._name_, self._value_)
638 return "%s.%s" % (self.__class__.__name__, self._name_)
643 for cls in self.__class__.mro()
669 return self.__class__, (self._value_, )
749 if not isinstance(other, self.__class__):
752 type(other).__qualname__, self.__class__.__qualname__))
756 cls = self.__class__
767 cls = self.__class__
783 if not isinstance(other, self.__class__):
785 return self.__class__(self._value_ | other._value_)
788 if not isinstance(other, self.__class__):
790 return self.__class__(self._value_ & other._value_)
793 if not isinstance(other, self.__class__):
795 return self.__class__(self._value_ ^ other._value_)
798 members, uncovered = _decompose(self.__class__, self._value_)
799 inverted = self.__class__(0)
800 for m in self.__class__:
803 return self.__class__(inverted)
847 if not isinstance(other, (self.__class__, int)):
849 result = self.__class__(self._value_ | self.__class__(other)._value_)
853 if not isinstance(other, (self.__class__, int)):
855 return self.__class__(self._value_ & self.__class__(other)._value_)
858 if not isinstance(other, (self.__class__, int)):
860 return self.__class__(self._value_ ^ self.__class__(other)._value_)
867 result = self.__class__(~self._value_)