/external/libcxx/benchmarks/ |
D | CartesianBenchmarks.hpp | 62 class... T, class... Tuples> 64 Tuples... rest) { in makeBenchmarkImpl() 111 template <template <class...> class B, class... Tuples, class... Args> 115 internal::makeBenchmarkImpl<B>(V, std::tuple<>(), Tuples()...); in makeCartesianProductBenchmark()
|
/external/llvm-project/libcxx/benchmarks/ |
D | CartesianBenchmarks.h | 61 class... T, class... Tuples> 63 Tuples... rest) { in makeBenchmarkImpl() 110 template <template <class...> class B, class... Tuples, class... Args> 114 internal::makeBenchmarkImpl<B>(V, std::tuple<>(), Tuples()...); in makeCartesianProductBenchmark()
|
/external/rust/crates/itertools/src/ |
D | tuple_impl.rs | 81 pub struct Tuples<I, T> struct 90 pub fn tuples<I, T>(iter: I) -> Tuples<I, T> in tuples() argument 94 Tuples { in tuples() 100 impl<I, T> Iterator for Tuples<I, T> implementation 111 impl<I, T> Tuples<I, T> implementation
|
D | lib.rs | 149 pub use crate::tuple_impl::{TupleBuffer, TupleWindows, CircularTupleWindows, Tuples}; 702 fn tuples<T>(self) -> Tuples<Self, T> in tuples()
|
/external/python/cpython2/Tools/pybench/ |
D | Setup.py | 30 from Tuples import *
|
/external/llvm-project/libcxx/docs/ |
D | Cxx1yStatusPaperStatus.csv | 15 "`3670 <https://wg21.link/n3670>`__","LWG","Addressing Tuples by Type","Bristol","|Complete|","3.4"
|
/external/tensorflow/tensorflow/compiler/xla/g3doc/ |
D | custom_call.md | 190 ### Tuples in CPU custom-calls 197 ### Tuples in GPU custom-calls
|
/external/python/cpython2/Doc/tutorial/ |
D | datastructures.rst | 415 Tuples and Sequences 431 >>> # Tuples may be nested: 435 >>> # Tuples are immutable: 455 Tuples are :term:`immutable`, and usually contain a heterogeneous sequence of 546 any immutable type; strings and numbers can always be keys. Tuples can be used
|
/external/python/cpython3/Doc/tutorial/ |
D | datastructures.rst | 370 Tuples and Sequences 386 >>> # Tuples may be nested: 390 >>> # Tuples are immutable: 410 Tuples are :term:`immutable`, and usually contain a heterogeneous sequence of 500 any immutable type; strings and numbers can always be keys. Tuples can be used
|
/external/python/cpython3/Doc/faq/ |
D | design.rst | 408 fundamentally different ways. Tuples can be thought of as being similar to 421 Tuples are immutable, meaning that once a tuple has been created, you can't 474 list ``L``. Tuples are immutable and can therefore be used as dictionary keys.
|
/external/python/cpython2/Doc/faq/ |
D | design.rst | 488 fundamentally different ways. Tuples can be thought of as being similar to 501 Tuples are immutable, meaning that once a tuple has been created, you can't 556 list ``L``. Tuples are immutable and can therefore be used as dictionary keys.
|
/external/libcxx/include/ |
D | tuple | 78 template <class... Tuples> tuple<CTypes...> tuple_cat(Tuples&&... tpls); // constexpr in C++14
|
/external/llvm/lib/Target/ARM/ |
D | ARMRegisterInfo.td | 381 // Tuples of 4 D regs that isn't also a pair of Q regs.
|
/external/llvm-project/libcxx/include/ |
D | tuple | 88 template <class... Tuples> tuple<CTypes...> tuple_cat(Tuples&&... tpls); // constexpr in C++14
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.1rc1.rst | 592 In Programming FAQ "Sequences (Tuples/Lists)" section, add "How do you
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMRegisterInfo.td | 530 // Tuples of 4 D regs that isn't also a pair of Q regs.
|
/external/llvm-project/llvm/lib/Target/ARM/ |
D | ARMRegisterInfo.td | 541 // Tuples of 4 D regs that isn't also a pair of Q regs.
|
/external/starlark-go/doc/ |
D | spec.md | 69 * [Tuples](#tuples) 768 ### Tuples subsection 773 Tuples are constructed using parenthesized list notation: 807 Tuples are iterable sequences, so they may be used as the operand of a 813 Tuples are hashable (assuming their elements are hashable), 816 Tuples may be concatenated using the `+` operator.
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | xla_data.proto | 190 // Tuples are a special case in that they have rank zero and have tuple_shapes
|
/external/rust/crates/rayon/ |
D | RELEASES.md | 83 - Tuples up to length 12 now implement `IntoParallelIterator`, creating a
|
/external/python/jinja/docs/ |
D | templates.rst | 1233 Tuples are like lists that cannot be modified ("immutable"). If a tuple 1235 Tuples are usually used to represent items of two or more elements.
|
/external/python/cpython3/Doc/library/ |
D | stdtypes.rst | 1221 Tuples section in Sequence Types --- :class:`list`, :class:`tuple`, :class:`range` 1226 Tuples are immutable sequences, typically used to store collections of 1228 built-in). Tuples are also used for cases where an immutable sequence of 1234 Tuples may be constructed in a number of ways: 1255 Tuples implement all of the :ref:`common <typesseq-common>` sequence
|
D | collections.rst | 809 :func:`namedtuple` Factory Function for Tuples with Named Fields
|
/external/python/cpython2/Doc/library/ |
D | collections.rst | 561 :func:`namedtuple` Factory Function for Tuples with Named Fields
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 342 Tuples 348 The items of a tuple are arbitrary Python objects. Tuples of two or more items
|