Lines Matching refs:list
116 def pack_list(self, list, pack_item):
117 for item in list:
122 def pack_farray(self, n, list, pack_item):
123 if len(list) != n:
125 for item in list:
128 def pack_array(self, list, pack_item):
129 n = len(list)
131 self.pack_farray(n, list, pack_item)
226 list = []
233 list.append(item)
234 return list
237 list = []
239 list.append(unpack_item())
240 return list