/external/deqp/scripts/egl/ |
H A D | library.py | 26 from itertools import imap, chain namespace
|
/external/deqp/scripts/opengl/ |
H A D | gen_wrapper.py | 25 from itertools import imap, chain namespace 41 defines = imap(commandAliasDefinition, iface.commands) 42 prototypes = imap(commandWrapperDeclaration, iface.commands)
|
/external/python/cpython2/Lib/test/ |
H A D | test_future_builtins.py | 24 from itertools import imap, izip, ifilter namespace 27 self.assertEqual(map, imap)
|
H A D | seq_tests.py | 83 from itertools import chain, imap namespace 86 return chain(imap(lambda x:x, iterfunc(IterGen(Sequence(seqn)))))
|
H A D | test_heapq.py | 322 from itertools import chain, imap namespace 325 return chain(imap(lambda x:x, R(Ig(G(seqn)))))
|
H A D | test_set.py | 1590 from itertools import chain, imap namespace 1593 return chain(imap(lambda x:x, R(Ig(G(seqn)))))
|
/external/libmojo/third_party/jinja2/ |
H A D | exceptions.py | 11 from jinja2._compat import imap, text_type, PY2, implements_to_string namespace 75 u', '.join(imap(text_type, names))
|
H A D | _compat.py | 40 imap = map variable 65 from itertools import imap, izip, ifilter namespace
|
H A D | filters.py | 21 from jinja2._compat import next, imap, string_types, text_type, iteritems namespace 314 value = imap(make_attrgetter(eval_ctx.environment, attribute), value) 318 return text_type(d).join(imap(text_type, value)) 337 return soft_unicode(d).join(imap(soft_unicode, value)) 732 iterable = imap(make_attrgetter(environment, attribute), iterable)
|
H A D | parser.py | 14 from jinja2._compat import next, imap namespace 56 expected.extend(imap(describe_token_expr, exprs))
|
H A D | runtime.py | 17 from jinja2._compat import next, imap, text_type, iteritems, \ 40 iterator = imap(soft_unicode, seq) 50 return concat(imap(text_type, seq)) 18 implements_iterator, implements_to_string, string_types, PY2 namespace
|
H A D | compiler.py | 20 iteritems, NativeStringIO, imap namespace 1034 'update((%s))' % ', '.join(imap(repr, discarded_names))) 1370 ', '.join(imap(repr, public_names)))
|
H A D | environment.py | 30 from jinja2._compat import imap, ifilter, string_types, iteritems, \ 1051 return [tuple(imap(int, x.split('='))) for x in 32 get_next, encode_filename, PY2, PYPY namespace
|
/external/python/cpython2/Lib/ |
H A D | 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))
|
H A D | heapq.py | 132 from itertools import islice, count, imap, izip, tee, chain namespace 431 it = izip(imap(key, in1), count(), in2) # decorate 469 it = izip(imap(key, in1), count(0,-1), in2) # decorate
|
/external/e2fsprogs/resize/ |
H A D | resize2fs.h | 113 ext2_extent imap; member in struct:ext2_resize_struct
|
/external/python/cpython2/Lib/multiprocessing/ |
H A D | 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()`
|
/external/tremolo/Tremolo/ |
H A D | floor0.c | 160 ogg_uint32_t imap= (1UL<<31) / ln; local 174 ogg_uint32_t nextbark=MULT31(imap>>1,tBnyq1); 204 wi=vorbis_coslook2_i((map*imap)>>15); 340 nextbark=MULT31((map+1)*(imap>>1),tBnyq1);
|
/external/parameter-framework/upstream/tools/xmlGenerator/ |
H A D | EddParser.py | 38 from itertools import imap namespace 179 optionsStrip = list(imap(str.strip, options))
|
/external/curl/lib/ |
H A D | imap.c | 70 #include "imap.h" 214 /* SASL parameters for the imap protocol */ 216 "imap", /* The service name */ 290 struct IMAP *imap = conn->data->req.protop; local 324 if((!imap->custom && !imap_matchresp(line, len, "LIST")) || 325 (imap->custom && !imap_matchresp(line, len, imap->custom) && 326 (strcmp(imap->custom, "STORE") || 328 strcmp(imap->custom, "SELECT") && 329 strcmp(imap 651 struct IMAP *imap = data->req.protop; local 686 struct IMAP *imap = data->req.protop; local 725 struct IMAP *imap = conn->data->req.protop; local 759 struct IMAP *imap = conn->data->req.protop; local 800 struct IMAP *imap = conn->data->req.protop; local 1054 struct IMAP *imap = conn->data->req.protop; local 1379 struct IMAP *imap; local 1459 struct IMAP *imap = data->req.protop; local 1521 struct IMAP *imap = data->req.protop; local 1644 struct IMAP *imap = conn->data->req.protop; local 1974 struct IMAP *imap = data->req.protop; local 2104 struct IMAP *imap = data->req.protop; local [all...] |
/external/icu/icu4c/source/test/cintltst/ |
H A D | nucnvtst.c | 1033 static const uint8_t imap[] = { local 1098 testConvertFromU(unicode, UPRV_LENGTHOF(unicode), imap, sizeof(imap), "IMAP-mailbox-name", fromUnicodeOffsets,FALSE); 1100 testConvertToU(imap, sizeof(imap), unicode, UPRV_LENGTHOF(unicode), "IMAP-mailbox-name", toUnicodeOffsets,FALSE);
|