HomeSort by relevance Sort by last modified time
    Searched defs:izip (Results 1 - 9 of 9) sorted by null

  /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)))
  /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
  /external/chromium_org/third_party/jinja2/
nodes.py 16 from itertools import chain, izip namespace
139 for name, arg in izip(self.fields, fields):

Completed in 78 milliseconds