/external/tensorflow/tensorflow/compiler/xla/python/ |
D | pytree.h | 48 pybind11::function from_iterable; member 54 pybind11::function from_iterable);
|
D | pytree.cc | 48 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/ |
D | intercept.py | 71 current = itertools.chain.from_iterable( 91 exec_traces = itertools.chain.from_iterable(
|
/external/llvm-project/debuginfo-tests/dexter/dex/debugger/DebuggerControllers/ |
D | ControllerHelpers.py | 23 towatch = chain.from_iterable(commands[x]
|
D | DefaultController.py | 40 for command_obj in chain.from_iterable(self.step_collection.commands.values()):
|
D | ConditionalController.py | 97 for command_obj in chain.from_iterable(self.step_collection.commands.values()):
|
/external/python/cpython3/Lib/test/test_tools/test_c_analyzer/ |
D | util.py | 44 combos = itertools.chain.from_iterable(itertools.combinations(indices, r)
|
/external/python/cpython3/Lib/importlib/ |
D | metadata.py | 203 return itertools.chain.from_iterable( 493 return itertools.chain.from_iterable( 559 eps = itertools.chain.from_iterable(
|
/external/clang/tools/scan-build-py/libscanbuild/ |
D | intercept.py | 79 current = itertools.chain.from_iterable( 101 exec_traces = itertools.chain.from_iterable(
|
/external/python/setuptools/setuptools/command/ |
D | build_py.py | 108 globs_matches = itertools.chain.from_iterable(globs_expanded) 209 matches = itertools.chain.from_iterable(match_groups)
|
/external/python/setuptools/setuptools/ |
D | namespaces.py | 8 flatten = itertools.chain.from_iterable
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | reverse_ops_test.py | 44 for revdims in itertools.chain.from_iterable(
|
/external/llvm-project/debuginfo-tests/dexter/dex/command/commands/ |
D | DexExpectProgramState.py | 59 frame_expects = chain.from_iterable(frame.watches
|
/external/llvm-project/llvm/utils/lit/lit/ |
D | Test.py | 389 boolean_expressions = itertools.chain.from_iterable( 392 tokens = itertools.chain.from_iterable(
|
/external/tensorflow/tensorflow/python/ops/ |
D | concat_benchmark.py | 71 itertools.chain.from_iterable([
|
/external/python/cpython2/Lib/test/ |
D | test_itertools.py | 72 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/ |
D | test_manifest.py | 128 match_params = itertools.chain.from_iterable( 139 mismatch_params = itertools.chain.from_iterable(
|
/external/ruy/cmake/ |
D | bazel_to_cmake.py | 195 …unique_values = sorted(set(itertools.chain.from_iterable(select_dict.values()))) # sorting ensures…
|
/external/python/dateutil/dateutil/test/ |
D | test_isoparser.py | 443 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/ |
D | itertools.rst | 52 :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/ |
D | generate_api_reference_md.py | 205 for func in itertools.chain.from_iterable(
|
/external/pigweed/pw_rpc/py/pw_rpc/console_tools/ |
D | console.py | 173 all_methods = chain.from_iterable(c.rpc_client.methods()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | ctc_decoder_ops_test.py | 43 return itertools.chain.from_iterable(list_of_lists)
|
/external/tensorflow/tensorflow/python/keras/ |
D | keras_parameterized.py | 464 return itertools.chain.from_iterable(
|
/external/tensorflow/tensorflow/python/keras/saving/saved_model/ |
D | utils.py | 128 s.update(itertools.chain.from_iterable(
|