Home
last modified time | relevance | path

Searched refs:zip_longest (Results 1 - 16 of 16) sorted by relevance

/third_party/node/deps/v8/tools/clusterfuzz/foozzie/
H A Dv8_suppressions.py32 from itertools import zip_longest namespace
35 from itertools import izip_longest as zip_longest namespace
118 return zip_longest(
173 for ((line1, lookahead1), (line2, lookahead2)) in zip_longest(
/third_party/node/deps/v8/tools/testrunner/outproc/
H A Dmessage.py8 from itertools import zip_longest namespace
48 for (expected, actual) in zip_longest(
H A Dbase.py5 from itertools import zip_longest namespace
149 for expected, actual in zip_longest(
/third_party/python/Lib/test/
H A Dtest_itertools.py965 self.assertEqual(list(zip_longest(*args)), target)
966 self.assertEqual(list(zip_longest(*args, **{})), target)
968 self.assertEqual(list(zip_longest(*args, **dict(fillvalue='X'))), target)
970 self.assertEqual(take(3,zip_longest('abcdef', count())), list(zip('abcdef', range(3)))) # take 3 from infinite input
972 self.assertEqual(list(zip_longest()), list(zip()))
973 self.assertEqual(list(zip_longest([])), list(zip([])))
974 self.assertEqual(list(zip_longest('abcdef')), list(zip('abcdef')))
976 self.assertEqual(list(zip_longest('abc', 'defg', **{})),
978 self.assertRaises(TypeError, zip_longest, 3)
979 self.assertRaises(TypeError, zip_longest, rang
[all...]
H A Dtest_range.py32 pairs = itertools.zip_longest(xs, ys, fillvalue=sentinel)
H A Dtest_xml_etree.py2340 for (child1, child2) in itertools.zip_longest(element_foo, element_foo2):
2364 for (child1, child2) in itertools.zip_longest(element_foo, element_foo2):
2388 for (child1, child2) in itertools.zip_longest(element_foo, element_foo2):
/third_party/python/Tools/msi/
H A Dcsv_to_wxs.py24 from itertools import chain, zip_longest namespace
116 if all(x.rstrip('\r\n') == y for x, y in zip_longest(f, lines)):
/third_party/mbedtls/tests/scripts/
H A Dgenerate_psa_wrappers.py106 pairs = enumerate(itertools.zip_longest(types, types[1:], fillvalue=''))
/third_party/littlefs/scripts/
H A Dreadtree.py60 for a,b in it.zip_longest(gstate, ngstate.data))
H A Dbench.py175 for (lineno, name), (nlineno, _) in it.zip_longest(
H A Dtest.py178 for (lineno, name), (nlineno, _) in it.zip_longest(
/third_party/skia/third_party/externals/harfbuzz/test/shape/
H A Dhb_test_tools.py138 for lines in itertools.zip_longest (*files):
/third_party/python/Lib/asyncio/
H A Dbase_events.py175 itertools.zip_longest(*addrinfos_lists)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSTLExtras.h519 // forward declarations required by zip_shortest/zip_first/zip_longest
799 detail::zip_longest_range<T, U, Args...> zip_longest(T &&t, U &&u, in zip_longest() function
/third_party/python/Lib/
H A Dinspect.py2272 iter = itertools.zip_longest(args, defaults, fillvalue=None)
/third_party/python/Tools/clinic/
H A Dclinic.py301 iterator = itertools.zip_longest(version_splitter(version1), version_splitter(version2), fillvalue=0)

Completed in 29 milliseconds