Home
last modified time | relevance | path

Searched refs:from_iterable (Results 1 – 25 of 61) sorted by relevance

123

/external/tensorflow/tensorflow/compiler/xla/python/
Dpytree.h48 pybind11::function from_iterable; member
54 pybind11::function from_iterable);
Dpytree.cc48 py::function from_iterable) { in Register() argument
53 registration->from_iterable = std::move(from_iterable); in Register()
287 return node.custom->from_iterable(node.node_data, tuple); in MakeNode()
652 py::function from_iterable) { in BuildPytreeSubmodule() argument
653 return CustomNodeRegistry::Register(type, to_iterable, from_iterable); in BuildPytreeSubmodule()
/external/llvm-project/clang/tools/scan-build-py/libscanbuild/
Dintercept.py71 current = itertools.chain.from_iterable(
91 exec_traces = itertools.chain.from_iterable(
/external/llvm-project/debuginfo-tests/dexter/dex/debugger/DebuggerControllers/
DControllerHelpers.py23 towatch = chain.from_iterable(commands[x]
DDefaultController.py40 for command_obj in chain.from_iterable(self.step_collection.commands.values()):
DConditionalController.py97 for command_obj in chain.from_iterable(self.step_collection.commands.values()):
/external/python/cpython3/Lib/test/test_tools/test_c_analyzer/
Dutil.py44 combos = itertools.chain.from_iterable(itertools.combinations(indices, r)
/external/python/cpython3/Lib/importlib/
Dmetadata.py203 return itertools.chain.from_iterable(
493 return itertools.chain.from_iterable(
559 eps = itertools.chain.from_iterable(
/external/clang/tools/scan-build-py/libscanbuild/
Dintercept.py79 current = itertools.chain.from_iterable(
101 exec_traces = itertools.chain.from_iterable(
/external/python/setuptools/setuptools/command/
Dbuild_py.py108 globs_matches = itertools.chain.from_iterable(globs_expanded)
209 matches = itertools.chain.from_iterable(match_groups)
/external/python/setuptools/setuptools/
Dnamespaces.py8 flatten = itertools.chain.from_iterable
/external/tensorflow/tensorflow/compiler/tests/
Dreverse_ops_test.py44 for revdims in itertools.chain.from_iterable(
/external/llvm-project/debuginfo-tests/dexter/dex/command/commands/
DDexExpectProgramState.py59 frame_expects = chain.from_iterable(frame.watches
/external/llvm-project/llvm/utils/lit/lit/
DTest.py389 boolean_expressions = itertools.chain.from_iterable(
392 tokens = itertools.chain.from_iterable(
/external/tensorflow/tensorflow/python/ops/
Dconcat_benchmark.py71 itertools.chain.from_iterable([
/external/python/cpython2/Lib/test/
Dtest_itertools.py72 self.assertEqual(list(chain.from_iterable(['abc', 'def'])), list('abcdef'))
73 self.assertEqual(list(chain.from_iterable(['abc'])), list('abc'))
74 self.assertEqual(list(chain.from_iterable([''])), [])
75 self.assertEqual(take(4, chain.from_iterable(['abc', 'def'])), list('abcd'))
76 self.assertRaises(TypeError, list, chain.from_iterable([2, 3]))
338 data = chain.from_iterable(repeat(range(6), n))
339 selectors = chain.from_iterable(repeat((0, 1)))
1016 self.assertEqual(''.join(chain.from_iterable(['ABC', 'DEF'])), 'ABCDEF')
1147 self.makecycle(chain.from_iterable([a]), a)
1519 it = chain.from_iterable(() for unused in xrange(10000000))
/external/python/setuptools/setuptools/tests/
Dtest_manifest.py128 match_params = itertools.chain.from_iterable(
139 mismatch_params = itertools.chain.from_iterable(
/external/ruy/cmake/
Dbazel_to_cmake.py195 …unique_values = sorted(set(itertools.chain.from_iterable(select_dict.values()))) # sorting ensures…
/external/python/dateutil/dateutil/test/
Dtest_isoparser.py443 ex_naive = list(it.chain.from_iterable(x[0:2] for x in outputs))
450 return list(it.chain.from_iterable(outputs))
/external/python/cpython3/Doc/library/
Ditertools.rst52 :func:`chain.from_iterable` iterable p0, p1, ... plast, q0, q1, ... …
186 .. classmethod:: chain.from_iterable(iterable)
191 def from_iterable(iterables):
192 # chain.from_iterable(['ABC', 'DEF']) --> A B C D E F
767 return chain.from_iterable(repeat(tuple(iterable), n))
774 return chain.from_iterable(list_of_lists)
820 return chain.from_iterable(combinations(s, r) for r in range(len(s)+1))
/external/sl4a/Docs/
Dgenerate_api_reference_md.py205 for func in itertools.chain.from_iterable(
/external/pigweed/pw_rpc/py/pw_rpc/console_tools/
Dconsole.py173 all_methods = chain.from_iterable(c.rpc_client.methods()
/external/tensorflow/tensorflow/python/kernel_tests/
Dctc_decoder_ops_test.py43 return itertools.chain.from_iterable(list_of_lists)
/external/tensorflow/tensorflow/python/keras/
Dkeras_parameterized.py464 return itertools.chain.from_iterable(
/external/tensorflow/tensorflow/python/keras/saving/saved_model/
Dutils.py128 s.update(itertools.chain.from_iterable(

123