Lines Matching refs:t
234 all_base_names = set(map(lambda t: t[0], tuples))
242 map(lambda t: (t[0].difference(external_names), t[1]), new_tuples))
248 first_group = list(filter(lambda t: not t[0], new_tuples))
249 other_group = list(filter(lambda t: t[0], new_tuples))
254 first_group = list(map(lambda t: t[1], first_group))
258 base_names = set(map(lambda t: t[0], first_group))
260 map(lambda t: (t[0].difference(base_names), t[1]), other_group))
267 list(map(lambda t: t[1][1], other_group))))
269 other_group = list(map(lambda t: t[1], other_group))
278 max_length = functools.reduce(lambda a, t: max(a, len(t[0])), found_pkgs, 1)
355 all_deps = dict(map(lambda t: (t[0], t), found_pkgs))
356 core_pkgs = set(map(lambda t: t[0], found_pkgs))
383 found_pkgs.sort(key=lambda t: t[0])