Home
last modified time | relevance | path

Searched refs:imap (Results 1 - 25 of 37) sorted by relevance

12

/third_party/curl/lib/
H A Dimap.c65 #include "imap.h"
177 /* SASL parameters for the imap protocol */
179 "imap", /* The service name */
256 struct IMAP *imap = data->req.p.imap; in imap_endofresp() local
286 if((!imap->custom && !imap_matchresp(line, len, "LIST")) || in imap_endofresp()
287 (imap->custom && !imap_matchresp(line, len, imap->custom) && in imap_endofresp()
288 (!strcasecompare(imap->custom, "STORE") || in imap_endofresp()
290 !strcasecompare(imap in imap_endofresp()
648 struct IMAP *imap = data->req.p.imap; imap_perform_list() local
683 struct IMAP *imap = data->req.p.imap; imap_perform_select() local
722 struct IMAP *imap = data->req.p.imap; imap_perform_fetch() local
764 struct IMAP *imap = data->req.p.imap; imap_perform_append() local
835 struct IMAP *imap = data->req.p.imap; imap_perform_search() local
1083 struct IMAP *imap = data->req.p.imap; imap_state_select_resp() local
1425 struct IMAP *imap; imap_init() local
1503 struct IMAP *imap = data->req.p.imap; imap_done() local
1563 struct IMAP *imap = data->req.p.imap; imap_perform() local
1689 struct IMAP *imap = data->req.p.imap; imap_dophase_done() local
1957 struct IMAP *imap = data->req.p.imap; imap_parse_url_path() local
2088 struct IMAP *imap = data->req.p.imap; imap_parse_custom_request() local
[all...]
/third_party/vk-gl-cts/scripts/opengl/
H A Dgen_wrapper.py28 from itertools import imap namespace
30 imap=map variable
46 defines = imap(commandAliasDefinition, iface.commands)
47 prototypes = imap(commandWrapperDeclaration, iface.commands)
/third_party/vk-gl-cts/scripts/egl/
H A Dgtf_wrapper.py31 from itertools import imap namespace
33 imap=map variable
97 defines = imap(commandAliasDefinition, defaultIface.commands)
98 prototypes = imap(commandWrapperDeclaration, defaultIface.commands)
H A Dlibrary.py29 from itertools import imap namespace
31 imap=map variable
/third_party/python/Doc/includes/
H A Dmp_pool.py54 imap_it = pool.imap(calculatestar, TASKS)
62 print('Ordered results using pool.imap():')
98 print(list(pool.imap(f, list(range(10)))))
100 print('\tGot ZeroDivisionError as expected from list(pool.imap())')
104 it = pool.imap(f, list(range(10)))
138 it = pool.imap(calculatestar, TASKS)
/third_party/curl/tests/
H A Dserverhelp.pm107 /^((ftp|http|imap|pop3|smtp|http-pipe)s?)(\d*)(-ipv6|)$/) {
195 $trailer = '_stunnel.log' if(lc($proto) =~ /^(ftp|http|imap|pop3|smtp)s$/);
236 (lc($proto) =~ /^(ftp|imap|pop3|smtp)s?$/));
248 (lc($proto) =~ /^(ftp|imap|pop3|smtp)s?$/));
H A Dservers.pm219 for my $proto (('ftp', 'gopher', 'http', 'imap', 'pop3', 'smtp', 'http/2', 'http/3')) {
248 for my $proto (('http', 'imap', 'pop3', 'smtp', 'http/2', 'http/3')) {
452 if($server =~ /^(ftp|imap|pop3|smtp)s?(\d*)(-ipv6|)$/) {
462 if($server =~ /^(ftp|http|imap|pop3|smtp)s((\d*)(-ipv6|-unix|))$/) {
466 elsif($server =~ /^(ftp|http|imap|pop3|smtp)((\d*)(-ipv6|-unix|))$/) {
1044 'imap' => \&verifyftp,
1475 if($proto !~ /^(?:ftp|imap|pop3|smtp)$/) {
2237 if($proto =~ /^(?:ftp|imap|pop3|smtp)$/) {
2333 if($what =~ /^(ftp|gopher|http|imap|pop3|smtp)s((\d*)(-ipv6|-unix|))$/) {
2339 ($what eq "imap") ||
[all...]
H A Dprocesshelp.pm347 return if($proto !~ /^(ftp|imap|pop3|smtp)$/);
387 for my $proto (('ftp', 'imap', 'pop3', 'smtp')) {
/third_party/python/Lib/test/
H A Dtest_imaplib.py487 with self.imap_class(*server.server_address) as imap:
488 imap.login('user', 'pass')
495 with self.imap_class(*server.server_address) as imap:
496 imap.login('user', 'pass')
498 imap.logout()
924 with self.imap_class(*server.server_address) as imap:
925 imap.login('user', 'pass')
933 with self.imap_class(*server.server_address) as imap:
934 imap.login('user', 'pass')
936 imap
[all...]
/third_party/node/tools/inspector_protocol/jinja2/
H A D_compat.py41 imap = map variable
66 from itertools import imap, izip, ifilter namespace
H A Dexceptions.py11 from jinja2._compat import imap, text_type, PY2, implements_to_string namespace
75 u', '.join(imap(text_type, names))
H A Dfilters.py22 from jinja2._compat import imap, string_types, text_type, iteritems, PY2 namespace
401 value = imap(make_attrgetter(eval_ctx.environment, attribute), value)
405 return text_type(d).join(imap(text_type, value))
424 return soft_unicode(d).join(imap(soft_unicode, value))
872 iterable = imap(make_attrgetter(environment, attribute), iterable)
H A Druntime.py21 from jinja2._compat import imap, text_type, iteritems, \
46 iterator = imap(soft_unicode, seq)
56 return concat(imap(text_type, seq))
23 with_metaclass global() namespace
H A Denvironment.py31 from jinja2._compat import imap, ifilter, string_types, iteritems, \
1127 return [tuple(imap(int, x.split('='))) for x in
33 encode_filename, PY2, PYPY global() namespace
/third_party/jinja2/
H A D_compat.py32 imap = map variable
61 from itertools import imap, izip, ifilter namespace
/third_party/node/deps/v8/third_party/jinja2/
H A D_compat.py32 imap = map variable
61 from itertools import imap, izip, ifilter namespace
H A Dexceptions.py2 from ._compat import imap namespace
98 imap(text_type, parts)
H A Dfilters.py16 from ._compat import imap namespace
475 value = imap(make_attrgetter(eval_ctx.environment, attribute), value)
479 return text_type(d).join(imap(text_type, value))
498 return soft_unicode(d).join(imap(soft_unicode, value))
1008 iterable = imap(make_attrgetter(environment, attribute), iterable)
H A Druntime.py12 from ._compat import imap namespace
65 iterator = imap(soft_unicode, seq)
75 return concat(imap(text_type, seq))
/third_party/skia/third_party/externals/jinja2/
H A D_compat.py32 imap = map variable
61 from itertools import imap, izip, ifilter namespace
H A Dexceptions.py2 from ._compat import imap namespace
98 imap(text_type, parts)
H A Dfilters.py16 from ._compat import imap namespace
475 value = imap(make_attrgetter(eval_ctx.environment, attribute), value)
479 return text_type(d).join(imap(text_type, value))
498 return soft_unicode(d).join(imap(soft_unicode, value))
1008 iterable = imap(make_attrgetter(environment, attribute), iterable)
H A Druntime.py12 from ._compat import imap namespace
65 iterator = imap(soft_unicode, seq)
75 return concat(imap(text_type, seq))
/third_party/node/deps/v8/tools/vim/
H A Dninja-build.vim114 imap <D-k> <esc>:CrCompileFile<cr>
117 imap <C-F7> <esc>:CrCompileFile<cr>
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dbtree_test.cc1174 std::map<int, int> imap; in TEST() local
1175 imap.insert(std::make_pair(1, 2)); in TEST()
1177 absl::btree_multimap<int, int> tmmap(imap.begin(), imap.end()); in TEST()
1179 absl::btree_map<int, int> tmap(imap.begin(), imap.end()); in TEST()

Completed in 23 milliseconds

12