HomeSort by relevance Sort by last modified time
    Searched refs:imap (Results 126 - 150 of 171) sorted by null

1 2 3 4 56 7

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/gcc-4.8.3/python/libstdcxx/v6/
printers.py 658 counter = itertools.imap (self.format_count, itertools.count())
691 counter = itertools.imap (self.format_count, itertools.count())
693 data = self.flatten (itertools.imap (self.format_one, Tr1HashtableIterator (self.hashtable())))
    [all...]
  /prebuilts/gdb/darwin-x86/share/pretty-printers/libstdcxx/gcc-4.8.3/
printers.py 658 counter = itertools.imap (self.format_count, itertools.count())
691 counter = itertools.imap (self.format_count, itertools.count())
693 data = self.flatten (itertools.imap (self.format_one, Tr1HashtableIterator (self.hashtable())))
    [all...]
  /prebuilts/gdb/linux-x86/share/pretty-printers/libstdcxx/gcc-4.8.3/
printers.py 658 counter = itertools.imap (self.format_count, itertools.count())
691 counter = itertools.imap (self.format_count, itertools.count())
693 data = self.flatten (itertools.imap (self.format_one, Tr1HashtableIterator (self.hashtable())))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.8/
printers.py 658 counter = itertools.imap (self.format_count, itertools.count())
691 counter = itertools.imap (self.format_count, itertools.count())
693 data = self.flatten (itertools.imap (self.format_one, Tr1HashtableIterator (self.hashtable())))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/share/pretty-printers/libstdcxx/gcc-4.8/
printers.py 658 counter = itertools.imap (self.format_count, itertools.count())
691 counter = itertools.imap (self.format_count, itertools.count())
693 data = self.flatten (itertools.imap (self.format_one, Tr1HashtableIterator (self.hashtable())))
    [all...]
  /external/pdfium/testing/tools/
test_runner.py 280 worker_results = pool.imap(worker_func, self.test_cases)
  /external/libmojo/third_party/jinja2/
environment.py 30 from jinja2._compat import imap, ifilter, string_types, iteritems, \
    [all...]
parser.py 14 from jinja2._compat import next, imap
56 expected.extend(imap(describe_token_expr, exprs))
    [all...]
compiler.py 20 iteritems, NativeStringIO, imap
    [all...]
  /external/parameter-framework/upstream/tools/xmlGenerator/
EddParser.py 38 from itertools import imap
179 optionsStrip = list(imap(str.strip, options))
  /external/curl/tests/
runtests.pl 134 my $IMAPPORT; # IMAP
135 my $IMAP6PORT; # IMAP IPv6 server port
378 for my $proto (('ftp', 'http', 'imap', 'pop3', 'smtp', 'http/2')) {
399 for my $proto (('http', 'imap', 'pop3', 'smtp', 'http/2')) {
708 if($server =~ /^(ftp|imap|pop3|smtp)s?(\d*)(-ipv6|)$/) {
718 if($server =~ /^(ftp|http|imap|pop3|smtp|httppipe)s((\d*)(-ipv6|-unix|))$/) {
722 elsif($server =~ /^(ftp|http|imap|pop3|smtp|httppipe)((\d*)(-ipv6|-unix|))$/) {
    [all...]
ftpserver.pl 27 # that are similar in spirit. Like POP3, IMAP and SMTP in addition to the FTP
614 elsif($proto eq 'imap') {
645 '* OK curl IMAP server ready to serve'."\r\n")
1064 # What was deleted by IMAP STORE / POP3 DELE commands
1068 ################ IMAP commands
1077 # Any IMAP parameter can come in escaped and in double quotes.
    [all...]
  /external/python/cpython2/Lib/test/
test_multiprocessing.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/ccbench/
ccbench.py 29 map = itertools.imap
  /external/python/cpython2/Tools/ccbench/
ccbench.py 29 map = itertools.imap
  /external/python/cpython3/Tools/ccbench/
ccbench.py 27 map = itertools.imap
  /prebuilts/gdb/darwin-x86/lib/python2.7/
collections.py 14 from itertools import imap as _imap
  /prebuilts/gdb/linux-x86/lib/python2.7/
collections.py 14 from itertools import imap as _imap
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
collections.py 14 from itertools import imap as _imap
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
collections.py 14 from itertools import imap as _imap
  /external/python/cpython3/Lib/test/
_test_multiprocessing.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_multiprocessing.py 1067 it = self.pool.imap(sqr, range(10))
1070 it = self.pool.imap(sqr, range(10))
1075 it = self.pool.imap(sqr, range(1000), chunksize=100)
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java 34 import com.android.email.mail.store.imap.ImapResponse;
35 import com.android.email.mail.store.imap.ImapTestUtils;
101 /** The tag for the current IMAP command; used for mock transport responses */
157 testAuth.setConnection("imap", "server", 999);
237 * Test the generation of the IMAP ID keys
320 * Test of the internal generator for IMAP ID strings, specifically looking for proper
343 * Test that IMAP ID uid's are per-username
352 testAuth.setConnection("imap", "server", 999);
360 testAuth.setConnection("imap", "server", 999);
368 testAuth.setConnection("imap", "server", 999)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
collections.py 14 from itertools import imap as _imap
  /external/python/cpython2/Lib/multiprocessing/
pool.py 253 def imap(self, func, iterable, chunksize=1): member in class:Pool
255 Equivalent of `itertools.imap()` -- can be MUCH slower than `Pool.map()`
273 Like `imap()` method but ordering of results is arbitrary
629 # Class whose instances are returned by `Pool.imap()`

Completed in 1490 milliseconds

1 2 3 4 56 7