Searched refs:chain (Results 1 - 25 of 371) sorted by relevance

1234567891011>>

/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
H A Dtypelist.h67 struct chain struct in namespace:typelist
148 struct apply_<Fn, chain<Hd, Tl> >
170 struct apply_generator1_<Gn, chain<Hd, Tl> >
192 struct apply_generator2_<Gn, chain<Hd1, TlT>, chain<Hd2, TlV> >
214 struct append_<chain<Hd, Tl>, Typelist_Chain>
220 typedef chain<Hd, typename append_type::type> type;
245 struct append_typelist_<chain<Hd, null_type> >
247 typedef chain<Hd, null_type> type;
251 struct append_typelist_<chain< H
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/mingw/include/c++/4.8.3/ext/
H A Dtypelist.h67 struct chain struct in namespace:typelist
148 struct apply_<Fn, chain<Hd, Tl> >
170 struct apply_generator1_<Gn, chain<Hd, Tl> >
192 struct apply_generator2_<Gn, chain<Hd1, TlT>, chain<Hd2, TlV> >
214 struct append_<chain<Hd, Tl>, Typelist_Chain>
220 typedef chain<Hd, typename append_type::type> type;
245 struct append_typelist_<chain<Hd, null_type> >
247 typedef chain<Hd, null_type> type;
251 struct append_typelist_<chain< H
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
H A Dtypelist.h67 struct chain struct in namespace:typelist
148 struct apply_<Fn, chain<Hd, Tl> >
170 struct apply_generator1_<Gn, chain<Hd, Tl> >
192 struct apply_generator2_<Gn, chain<Hd1, TlT>, chain<Hd2, TlV> >
214 struct append_<chain<Hd, Tl>, Typelist_Chain>
220 typedef chain<Hd, typename append_type::type> type;
245 struct append_typelist_<chain<Hd, null_type> >
247 typedef chain<Hd, null_type> type;
251 struct append_typelist_<chain< H
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/utils/libcxx/test/
H A Dexecutor.py53 def __init__(self, commandPrefix, chain):
57 self.chain = chain
61 return self.chain.run(exe_path, self.commandPrefix + cmd, work_dir,
67 def __init__(self, commandPostfix, chain):
71 self.chain = chain
75 return self.chain.run(cmd + self.commandPostfix, work_dir, file_deps,
85 def __init__(self, duration, chain):
87 ['timeout', duration], chain)
[all...]
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/test/
H A Dexecutor.py53 def __init__(self, commandPrefix, chain):
57 self.chain = chain
61 return self.chain.run(exe_path, self.commandPrefix + cmd, work_dir,
67 def __init__(self, commandPostfix, chain):
71 self.chain = chain
75 return self.chain.run(cmd + self.commandPostfix, work_dir, file_deps,
85 def __init__(self, duration, chain):
87 ['timeout', duration], chain)
[all...]
/prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
H A Dframes.py115 return_iter = itertools.chain(glob, prog)
117 return_iter = itertools.chain(return_iter, objfile.frame_filters.values())
155 """ Internal function called from GDB that will execute the chain
/prebuilts/gdb/linux-x86/share/gdb/python/gdb/
H A Dframes.py115 return_iter = itertools.chain(glob, prog)
117 return_iter = itertools.chain(return_iter, objfile.frame_filters.values())
155 """ Internal function called from GDB that will execute the chain
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A Dheapq.py132 from itertools import islice, count, imap, izip, tee, chain namespace
360 Similar to sorted(itertools.chain(*iterables)) but returns a generator,
406 return [min(chain(head, it))]
407 return [min(chain(head, it), key=key)]
444 return [max(chain(head, it))]
445 return [max(chain(head, it), key=key)]
/prebuilts/gdb/linux-x86/lib/python2.7/
H A Dheapq.py132 from itertools import islice, count, imap, izip, tee, chain namespace
360 Similar to sorted(itertools.chain(*iterables)) but returns a generator,
406 return [min(chain(head, it))]
407 return [min(chain(head, it), key=key)]
444 return [max(chain(head, it))]
445 return [max(chain(head, it), key=key)]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dheapq.py132 from itertools import islice, count, imap, izip, tee, chain namespace
360 Similar to sorted(itertools.chain(*iterables)) but returns a generator,
406 return [min(chain(head, it))]
407 return [min(chain(head, it), key=key)]
444 return [max(chain(head, it))]
445 return [max(chain(head, it), key=key)]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dheapq.py132 from itertools import islice, count, imap, izip, tee, chain namespace
360 Similar to sorted(itertools.chain(*iterables)) but returns a generator,
406 return [min(chain(head, it))]
407 return [min(chain(head, it), key=key)]
444 return [max(chain(head, it))]
445 return [max(chain(head, it), key=key)]
/prebuilts/ndk/current/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
H A DpropagateNoContraction.cpp51 // Use a string to hold the access chain information, as in most cases the
52 // access chain is short and may contain only one element, which is the symbol
70 // Mapping from object nodes to their access chain info string.
206 ObjectAccessChain getFrontElement(const ObjectAccessChain& chain) argument
208 size_t pos_delimiter = chain.find(ObjectAccesschainDelimiter);
209 return pos_delimiter == std::string::npos ? chain : chain.substr(0, pos_delimiter);
212 // A helper function to get the access chain starting from the second element.
213 ObjectAccessChain subAccessChainFromSecondElement(const ObjectAccessChain& chain) argument
215 size_t pos_delimiter = chain
220 getSubAccessChainAfterPrefix(const ObjectAccessChain& chain, const ObjectAccessChain& prefix) argument
[all...]
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
H A DpropagateNoContraction.cpp51 // Use a string to hold the access chain information, as in most cases the
52 // access chain is short and may contain only one element, which is the symbol
70 // Mapping from object nodes to their access chain info string.
206 ObjectAccessChain getFrontElement(const ObjectAccessChain& chain) argument
208 size_t pos_delimiter = chain.find(ObjectAccesschainDelimiter);
209 return pos_delimiter == std::string::npos ? chain : chain.substr(0, pos_delimiter);
212 // A helper function to get the access chain starting from the second element.
213 ObjectAccessChain subAccessChainFromSecondElement(const ObjectAccessChain& chain) argument
215 size_t pos_delimiter = chain
220 getSubAccessChainAfterPrefix(const ObjectAccessChain& chain, const ObjectAccessChain& prefix) argument
[all...]
/prebuilts/devtools/tools/lib/
H A Dfat32lib.jarMETA-INF/ META-INF/MANIFEST.MF de/ de/waldheinz/ de/waldheinz/fs/ de/waldheinz/fs/FileSystem ...
/prebuilts/gradle-plugin/com/android/tools/build/fat32lib/unspecified/
H A Dfat32lib-unspecified.jarMETA-INF/ META-INF/MANIFEST.MF de/ de/waldheinz/ de/waldheinz/fs/ de/waldheinz/fs/FsDirectoryEntry ...
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
H A Dinterfaces.py80 for obj in itertools.chain(p.obj_classes, avobjs):
411 for i in itertools.chain(headers.interfaces(), headers.templates()):
503 for i in itertools.chain(headers.interfaces(), headers.templates()):
507 for interface in itertools.chain(headers.interfaces(), headers.templates()):
H A Dmatching.py77 return itertools.chain(self.children, self.bastards)
238 for iv in itertools.chain(ifset.tgt_type_all,
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_itertools.py64 for c in (chain, chain2):
72 self.assertEqual(list(chain.from_iterable(['abc', 'def'])), list('abcdef'))
73 self.assertEqual(list(chain.from_iterable(['abc'])), list('abc'))
74 self.assertEqual(list(chain.from_iterable([''])), [])
75 self.assertEqual(take(4, chain.from_iterable(['abc', 'def'])), list('abcd'))
76 self.assertRaises(TypeError, list, chain.from_iterable([2, 3]))
323 data = chain.from_iterable(repeat(range(6), n))
324 selectors = chain.from_iterable(repeat((0, 1)))
918 for f in (chain, cycle, izip, groupby):
941 self.assertEqual(''.join(chain('AB
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_itertools.py64 for c in (chain, chain2):
72 self.assertEqual(list(chain.from_iterable(['abc', 'def'])), list('abcdef'))
73 self.assertEqual(list(chain.from_iterable(['abc'])), list('abc'))
74 self.assertEqual(list(chain.from_iterable([''])), [])
75 self.assertEqual(take(4, chain.from_iterable(['abc', 'def'])), list('abcd'))
76 self.assertRaises(TypeError, list, chain.from_iterable([2, 3]))
323 data = chain.from_iterable(repeat(range(6), n))
324 selectors = chain.from_iterable(repeat((0, 1)))
918 for f in (chain, cycle, izip, groupby):
941 self.assertEqual(''.join(chain('AB
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_itertools.py64 for c in (chain, chain2):
72 self.assertEqual(list(chain.from_iterable(['abc', 'def'])), list('abcdef'))
73 self.assertEqual(list(chain.from_iterable(['abc'])), list('abc'))
74 self.assertEqual(list(chain.from_iterable([''])), [])
75 self.assertEqual(take(4, chain.from_iterable(['abc', 'def'])), list('abcd'))
76 self.assertRaises(TypeError, list, chain.from_iterable([2, 3]))
323 data = chain.from_iterable(repeat(range(6), n))
324 selectors = chain.from_iterable(repeat((0, 1)))
918 for f in (chain, cycle, izip, groupby):
941 self.assertEqual(''.join(chain('AB
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_itertools.py64 for c in (chain, chain2):
72 self.assertEqual(list(chain.from_iterable(['abc', 'def'])), list('abcdef'))
73 self.assertEqual(list(chain.from_iterable(['abc'])), list('abc'))
74 self.assertEqual(list(chain.from_iterable([''])), [])
75 self.assertEqual(take(4, chain.from_iterable(['abc', 'def'])), list('abcd'))
76 self.assertRaises(TypeError, list, chain.from_iterable([2, 3]))
323 data = chain.from_iterable(repeat(range(6), n))
324 selectors = chain.from_iterable(repeat((0, 1)))
918 for f in (chain, cycle, izip, groupby):
941 self.assertEqual(''.join(chain('AB
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
H A D__init__.py26 from itertools import chain namespace
322 return sum(len(c.perms) for c in chain(self.commons(), self.classes()))
562 for rule in chain(self.policy.role_allow_iter(),
568 for rule in chain(self.policy.avrule_iter(),
628 for constraint_ in chain(self.policy.constraint_iter(),
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/macholib/
H A Ddyld.py131 for path in dyld_image_suffix_search(chain(
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/macholib/
H A Ddyld.py131 for path in dyld_image_suffix_search(chain(
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/
H A Ddyld.py131 for path in dyld_image_suffix_search(chain(

Completed in 550 milliseconds

1234567891011>>