/third_party/node/deps/v8/tools/clusterfuzz/foozzie/ |
H A D | v8_suppressions.py | 32 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 D | message.py | 8 from itertools import zip_longest namespace 48 for (expected, actual) in zip_longest(
|
H A D | base.py | 5 from itertools import zip_longest namespace 149 for expected, actual in zip_longest(
|
/third_party/python/Lib/test/ |
H A D | test_itertools.py | 965 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 D | test_range.py | 32 pairs = itertools.zip_longest(xs, ys, fillvalue=sentinel)
|
H A D | test_xml_etree.py | 2340 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 D | csv_to_wxs.py | 24 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 D | generate_psa_wrappers.py | 106 pairs = enumerate(itertools.zip_longest(types, types[1:], fillvalue=''))
|
/third_party/littlefs/scripts/ |
H A D | readtree.py | 60 for a,b in it.zip_longest(gstate, ngstate.data))
|
H A D | bench.py | 175 for (lineno, name), (nlineno, _) in it.zip_longest(
|
H A D | test.py | 178 for (lineno, name), (nlineno, _) in it.zip_longest(
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/ |
H A D | hb_test_tools.py | 138 for lines in itertools.zip_longest (*files):
|
/third_party/python/Lib/asyncio/ |
H A D | base_events.py | 175 itertools.zip_longest(*addrinfos_lists)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | STLExtras.h | 519 // 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 D | inspect.py | 2272 iter = itertools.zip_longest(args, defaults, fillvalue=None)
|
/third_party/python/Tools/clinic/ |
H A D | clinic.py | 301 iterator = itertools.zip_longest(version_splitter(version1), version_splitter(version2), fillvalue=0)
|