• Home
  • Raw
  • Download

Lines Matching refs:dispatch

485     dispatch = {}  variable in Marshaller
516 f = self.dispatch[type(value)]
525 if type_ in self.dispatch.keys():
529 f = self.dispatch["_arbitrary_instance"]
536 dispatch[type(None)] = dump_nil
542 dispatch[bool] = dump_bool
550 dispatch[int] = dump_long
559 dispatch[float] = dump_double
565 dispatch[str] = dump_unicode
572 dispatch[bytes] = dump_bytes
573 dispatch[bytearray] = dump_bytes
586 dispatch[tuple] = dump_array
587 dispatch[list] = dump_array
605 dispatch[dict] = dump_struct
611 dispatch[datetime] = dump_datetime
622 dispatch[DateTime] = dump_instance
623 dispatch[Binary] = dump_instance
626 dispatch["_arbitrary_instance"] = dump_instance
682 if self._value and tag not in self.dispatch:
692 f = self.dispatch[tag]
697 f = self.dispatch[tag.split(':')[-1]]
708 f = self.dispatch[tag]
713 f = self.dispatch[tag.split(':')[-1]]
721 dispatch = {} variable in Unmarshaller
726 dispatch["nil"] = end_nil
736 dispatch["boolean"] = end_boolean
741 dispatch["i1"] = end_int
742 dispatch["i2"] = end_int
743 dispatch["i4"] = end_int
744 dispatch["i8"] = end_int
745 dispatch["int"] = end_int
746 dispatch["biginteger"] = end_int
751 dispatch["double"] = end_double
752 dispatch["float"] = end_double
757 dispatch["bigdecimal"] = end_bigdecimal
764 dispatch["string"] = end_string
765 dispatch["name"] = end_string # struct keys are always strings
772 dispatch["array"] = end_array
783 dispatch["struct"] = end_struct
792 dispatch["base64"] = end_base64
800 dispatch["dateTime.iso8601"] = end_dateTime
807 dispatch["value"] = end_value
811 dispatch["params"] = end_params
815 dispatch["fault"] = end_fault
822 dispatch["methodName"] = end_methodName