Searched refs:powerset (Results 1 – 5 of 5) sorted by relevance
/external/jemalloc_new/scripts/ |
D | gen_run_tests.py | 16 def powerset(items): function 50 for compiler_opts in powerset(possible_compiler_opts): 51 for config_opts in powerset(possible_config_opts): 52 for malloc_conf_opts in powerset(possible_malloc_conf_opts):
|
/external/python/cpython3/Lib/test/ |
D | test_set.py | 740 def powerset(s): function 748 u = len({h & mask for h in map(hash, powerset(nums(n)))}) 1797 def powerset(U): function 1802 for S in powerset(U): 1812 for x in powerset(range(n))])
|
/external/python/cpython2/Lib/test/ |
D | test_set.py | 1682 def powerset(U): function 1687 for S in powerset(U): 1697 for x in powerset(range(n))])
|
/external/python/cpython3/Doc/library/ |
D | itertools.rst | 787 def powerset(iterable): 788 "powerset([1,2,3]) --> () (1,) (2,) (3,) (1,2) (1,3) (2,3) (1,2,3)"
|
/external/python/cpython2/Doc/library/ |
D | itertools.rst | 771 def powerset(iterable): 772 "powerset([1,2,3]) --> () (1,) (2,) (3,) (1,2) (1,3) (2,3) (1,2,3)"
|