Lines Matching defs:type

159     _Error.MISMATCH : [ 'type mismatch', MismatchError ],
166 class _RadBuilder(type):
172 obj = type.__call__(cls, *args, **kwds)
202 """ A RAD field. Used to represent a field in a derived type. """
211 def __init__(self, type, index, unpacker = None):
213 self._type = type
219 self._name = type._fallback
233 def __init__(self, type):
235 self._type = type
248 def __init__(self, type):
250 self._type = type
260 def __init__(self, type):
262 self._type = type
263 for v in type._pvalues:
265 if type._fbvalue:
266 self.__dict__[type._fallback] = type._fbvalue
273 def __init__(self, type, arm, armvalue, value):
277 (type._name, str(armvalue)))
283 (type._name, str(armvalue)))
285 self._type = type
299 def __init__(self, type):
301 self._type = type
337 def __init__(self, type):
339 self._type = type
412 """ A RAD Derived type. """
452 """ Make the composite type using the supplied pargs and
487 """ Read and return the remote value of this derived type
525 """ Set the remote derived type that this instance represents to
543 raise Exception("Enumeration type mismatch: " +
568 """ Return the type contained in the unpacker. """
569 type = unpacker.unpack_int();
570 if type in _DERIVED:
573 return _RadTypeSet.basetypes[type]
576 """ Return the type identified by the name. """
580 """ Return the type space. """
701 """ A RAD Event type. """
732 """ A RAD type. """
786 return "< Remote RAD type: %s >" % self._api
1128 def __exit__(self, type, value, tb):
1223 """ Get the definition of the type. """
1238 """ Remember this type in the local cache. """
1300 klass = type(klass_name, (_RadObject,), {})