Lines Matching refs:dispatch
472 # Check the type dispatch table
474 f = self.dispatch.get(t)
479 # Check private dispatch table if any, or else copyreg.dispatch_table
637 # Methods below this point are dispatched through the dispatch table
639 dispatch = {}
643 dispatch[type(None)] = save_none
650 dispatch[bool] = save_bool
678 dispatch[int] = save_long
685 dispatch[float] = save_float
703 dispatch[bytes] = save_bytes
721 dispatch[str] = save_str
772 dispatch[tuple] = save_tuple
783 dispatch[list] = save_list
823 dispatch[dict] = save_dict
825 dispatch[PyStringMap] = save_dict
880 dispatch[set] = save_set
903 dispatch[frozenset] = save_frozenset
980 dispatch[FunctionType] = save_global
981 dispatch[type] = save_type
1043 dispatch = self.dispatch
1050 dispatch[key[0]](self)
1064 dispatch = {}
1071 dispatch[PROTO[0]] = load_proto
1078 dispatch[FRAME[0]] = load_frame
1087 dispatch[PERSID[0]] = load_persid
1092 dispatch[BINPERSID[0]] = load_binpersid
1096 dispatch[NONE[0]] = load_none
1100 dispatch[NEWFALSE[0]] = load_false
1104 dispatch[NEWTRUE[0]] = load_true
1115 dispatch[INT[0]] = load_int
1119 dispatch[BININT[0]] = load_binint
1123 dispatch[BININT1[0]] = load_binint1
1127 dispatch[BININT2[0]] = load_binint2
1134 dispatch[LONG[0]] = load_long
1140 dispatch[LONG1[0]] = load_long1
1149 dispatch[LONG4[0]] = load_long4
1153 dispatch[FLOAT[0]] = load_float
1157 dispatch[BINFLOAT[0]] = load_binfloat
1176 dispatch[STRING[0]] = load_string
1185 dispatch[BINSTRING[0]] = load_binstring
1193 dispatch[BINBYTES[0]] = load_binbytes
1197 dispatch[UNICODE[0]] = load_unicode
1205 dispatch[BINUNICODE[0]] = load_binunicode
1213 dispatch[BINUNICODE8[0]] = load_binunicode8
1221 dispatch[BINBYTES8[0]] = load_binbytes8
1227 dispatch[SHORT_BINSTRING[0]] = load_short_binstring
1232 dispatch[SHORT_BINBYTES[0]] = load_short_binbytes
1237 dispatch[SHORT_BINUNICODE[0]] = load_short_binunicode
1242 dispatch[TUPLE[0]] = load_tuple
1246 dispatch[EMPTY_TUPLE[0]] = load_empty_tuple
1250 dispatch[TUPLE1[0]] = load_tuple1
1254 dispatch[TUPLE2[0]] = load_tuple2
1258 dispatch[TUPLE3[0]] = load_tuple3
1262 dispatch[EMPTY_LIST[0]] = load_empty_list
1266 dispatch[EMPTY_DICT[0]] = load_empty_dictionary
1270 dispatch[EMPTY_SET[0]] = load_empty_set
1275 dispatch[FROZENSET[0]] = load_frozenset
1280 dispatch[LIST[0]] = load_list
1287 dispatch[DICT[0]] = load_dict
1311 dispatch[INST[0]] = load_inst
1318 dispatch[OBJ[0]] = load_obj
1325 dispatch[NEWOBJ[0]] = load_newobj
1333 dispatch[NEWOBJ_EX[0]] = load_newobj_ex
1340 dispatch[GLOBAL[0]] = load_global
1348 dispatch[STACK_GLOBAL[0]] = load_stack_global
1353 dispatch[EXT1[0]] = load_ext1
1358 dispatch[EXT2[0]] = load_ext2
1363 dispatch[EXT4[0]] = load_ext4
1399 dispatch[REDUCE[0]] = load_reduce
1406 dispatch[POP[0]] = load_pop
1410 dispatch[POP_MARK[0]] = load_pop_mark
1414 dispatch[DUP[0]] = load_dup
1419 dispatch[GET[0]] = load_get
1424 dispatch[BINGET[0]] = load_binget
1429 dispatch[LONG_BINGET[0]] = load_long_binget
1436 dispatch[PUT[0]] = load_put
1443 dispatch[BINPUT[0]] = load_binput
1450 dispatch[LONG_BINPUT[0]] = load_long_binput
1455 dispatch[MEMOIZE[0]] = load_memoize
1462 dispatch[APPEND[0]] = load_append
1473 dispatch[APPENDS[0]] = load_appends
1481 dispatch[SETITEM[0]] = load_setitem
1488 dispatch[SETITEMS[0]] = load_setitems
1499 dispatch[ADDITEMS[0]] = load_additems
1523 dispatch[BUILD[0]] = load_build
1529 dispatch[MARK[0]] = load_mark
1534 dispatch[STOP[0]] = load_stop