• Home
  • Raw
  • Download

Lines Matching refs:dispatch

491     dispatch = {}  variable in Marshaller
522 f = self.dispatch[type(value)]
531 if type_ in self.dispatch.keys():
535 f = self.dispatch["_arbitrary_instance"]
542 dispatch[type(None)] = dump_nil
548 dispatch[bool] = dump_bool
556 dispatch[int] = dump_long
565 dispatch[float] = dump_double
571 dispatch[str] = dump_unicode
578 dispatch[bytes] = dump_bytes
579 dispatch[bytearray] = dump_bytes
592 dispatch[tuple] = dump_array
593 dispatch[list] = dump_array
611 dispatch[dict] = dump_struct
617 dispatch[datetime] = dump_datetime
628 dispatch[DateTime] = dump_instance
629 dispatch[Binary] = dump_instance
632 dispatch["_arbitrary_instance"] = dump_instance
688 if self._value and tag not in self.dispatch:
698 f = self.dispatch[tag]
703 f = self.dispatch[tag.split(':')[-1]]
714 f = self.dispatch[tag]
719 f = self.dispatch[tag.split(':')[-1]]
727 dispatch = {} variable in Unmarshaller
732 dispatch["nil"] = end_nil
742 dispatch["boolean"] = end_boolean
747 dispatch["i1"] = end_int
748 dispatch["i2"] = end_int
749 dispatch["i4"] = end_int
750 dispatch["i8"] = end_int
751 dispatch["int"] = end_int
752 dispatch["biginteger"] = end_int
757 dispatch["double"] = end_double
758 dispatch["float"] = end_double
763 dispatch["bigdecimal"] = end_bigdecimal
770 dispatch["string"] = end_string
771 dispatch["name"] = end_string # struct keys are always strings
778 dispatch["array"] = end_array
789 dispatch["struct"] = end_struct
798 dispatch["base64"] = end_base64
806 dispatch["dateTime.iso8601"] = end_dateTime
813 dispatch["value"] = end_value
817 dispatch["params"] = end_params
821 dispatch["fault"] = end_fault
828 dispatch["methodName"] = end_methodName