Lines Matching refs:t
223 all_base_names = set(map(lambda t: t[0], tuples))
231 map(lambda t: (t[0].difference(external_names), t[1]), new_tuples))
237 first_group = list(filter(lambda t: not t[0], new_tuples))
238 other_group = list(filter(lambda t: t[0], new_tuples))
243 first_group = list(map(lambda t: t[1], first_group))
247 base_names = set(map(lambda t: t[0], first_group))
249 map(lambda t: (t[0].difference(base_names), t[1]), other_group))
256 list(map(lambda t: t[1][1], other_group))))
258 other_group = list(map(lambda t: t[1], other_group))
267 max_length = functools.reduce(lambda a, t: max(a, len(t[0])), found_pkgs, 1)
344 all_deps = dict(map(lambda t: (t[0], t), found_pkgs))
345 core_pkgs = set(map(lambda t: t[0], found_pkgs))
372 found_pkgs.sort(key=lambda t: t[0])