/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_future_builtins.py | 24 from itertools import imap, izip, ifilter namespace 28 self.assertEqual(zip, izip)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_future_builtins.py | 24 from itertools import imap, izip, ifilter namespace 28 self.assertEqual(zip, izip)
|
/system/extras/tests/sdcard/ |
plot_sdcard.py | 40 from itertools import izip namespace 75 for t, d in izip(self.time, self.data):
|
/external/chromium_org/net/tools/testserver/ |
echo_message.py | 29 from itertools import izip namespace 264 return ''.join(chr(ord(x) ^ ord(y)) for (x, y) in izip(payload, cycle(key)))
|
/external/chromium_org/third_party/jinja2/ |
_compat.py | 41 izip = zip variable 65 from itertools import imap, izip, ifilter namespace
|
nodes.py | 19 from jinja2._compat import next, izip, with_metaclass, text_type, \ 140 for name, arg in izip(self.fields, fields): 20 method_type, function_type namespace
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
filecmp.py | 14 from itertools import ifilter, ifilterfalse, imap, izip namespace 132 a = dict(izip(imap(os.path.normcase, self.left_list), self.left_list)) 133 b = dict(izip(imap(os.path.normcase, self.right_list), self.right_list))
|
heapq.py | 132 from itertools import islice, count, imap, izip, tee, chain namespace 420 it = izip(iterable, count()) # decorate 426 it = izip(imap(key, in1), count(), in2) # decorate 458 it = izip(iterable, count(0,-1)) # decorate 464 it = izip(imap(key, in1), count(0,-1), in2) # decorate
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
filecmp.py | 14 from itertools import ifilter, ifilterfalse, imap, izip namespace 132 a = dict(izip(imap(os.path.normcase, self.left_list), self.left_list)) 133 b = dict(izip(imap(os.path.normcase, self.right_list), self.right_list))
|
heapq.py | 132 from itertools import islice, count, imap, izip, tee, chain namespace 420 it = izip(iterable, count()) # decorate 426 it = izip(imap(key, in1), count(), in2) # decorate 458 it = izip(iterable, count(0,-1)) # decorate 464 it = izip(imap(key, in1), count(0,-1), in2) # decorate
|