/external/v8/tools/clang/plugins/tests/ |
ipc.cpp | 45 struct Tuple { 55 typedef base::Tuple<T...> Tuple; 182 #define IPC_TUPLE(...) IPC::CheckedTuple<__VA_ARGS__>::Tuple
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
MathTest.java | 2000 Tuple tuple = TUPLES[i]; local 2046 Tuple tuple = TUPLES[i]; local [all...] |
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
example-tuple.cpp | 4 // Example tuple implementation from the variadic templates proposal, 54 template<typename... Values> class tuple; 56 // Basis case: zero-length tuple 57 template<> class tuple<> { }; class 60 class tuple<Head, Tail...> : private tuple<Tail...> { class in inherits:tuple 61 typedef tuple<Tail...> inherited; 64 tuple() { } function in class:tuple 67 // Construct tuple from separate arguments. 68 tuple(typename add_const_reference<Head>::type v function in class:tuple 73 template<typename... VValues> tuple(const tuple<VValues...>& other) function in class:tuple [all...] |
p5.cpp | 4 template<typename ...> struct tuple; 25 typedef tuple<pair<Types, OtherTypes>...> type; // expected-error{{pack expansion contains parameter packs 'Types' and 'OtherTypes' that have different lengths (3 vs. 2)}} 31 tuple<pair<int, unsigned int>, pair<long, unsigned long> >*il_pairs_2 = il_pairs; 159 typedef tuple<typename Meta<T>::type> type; // expected-error{{declaration type contains unexpanded parameter pack 'Meta'}} 390 template<typename...> struct Tuple {}; 395 typedef Tuple<Pair<Args1, Args2> ... > type; // expected-error{{pack expansion contains parameter packs 'Args1' and 'Args2' that have different lengths (1 vs. 2)}} 399 typedef zip<short, int>::with<unsigned short, unsigned>::type T1; // T1 is Tuple<Pair<short, unsigned short>, Pair<int, unsigned>> 400 typedef Tuple<Pair<short, unsigned short>, Pair<int, unsigned>> T1;
|
example-bind.cpp | 54 template<typename... Values> class tuple; 56 // Basis case: zero-length tuple 57 template<> class tuple<> { }; class 60 class tuple<Head, Tail...> : private tuple<Tail...> { class in inherits:tuple 61 typedef tuple<Tail...> inherited; 64 tuple() { } function in class:tuple 67 // Construct tuple from separate arguments. 68 tuple(typename add_const_reference<Head>::type v, function in class:tuple 72 // Construct tuple from another tuple. 73 template<typename... VValues> tuple(const tuple<VValues...>& other) function in class:tuple [all...] |
/external/clang/lib/CodeGen/ |
EHScopeStack.h | 199 typedef std::tuple<typename DominatingValue<As>::saved_type...> SavedTuple; 217 ConditionalCleanup(SavedTuple Tuple) : Saved(std::move(Tuple)) {} 281 /// Push a lazily-created cleanup on the stack. Tuple version. 283 void pushCleanupTuple(CleanupKind Kind, std::tuple<As...> A) {
|
/external/libbrillo/brillo/dbus/ |
data_serialization.h | 36 // | (UVW...) | std::tuple<U,V,W,...> 56 #include <tuple> 613 // std::tuple = D-Bus STRUCT with arbitrary number of members. ---------------- 617 // of a tuple<T...> from index I to N. TupleIterator<>::Read and ::Write methods 618 // are called for each element of the tuple and iteration continues until I == N 622 // Tuple is just a convenience alias to a tuple containing elements of type T. 623 using Tuple = std::tuple<T...>; 625 using ValueType = typename std::tuple_element<I, Tuple>::type [all...] |
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
TensorBase.h | 612 internal::ArgMaxTupleReducer<Tuple<Index, CoeffReturnType> >, 618 internal::ArgMaxTupleReducer<Tuple<Index, CoeffReturnType> >, 620 const Derived>(derived(), internal::ArgMaxTupleReducer<Tuple<Index, CoeffReturnType> >(), -1, in_dims); 625 internal::ArgMinTupleReducer<Tuple<Index, CoeffReturnType> >, 631 internal::ArgMinTupleReducer<Tuple<Index, CoeffReturnType> >, 633 const Derived>(derived(), internal::ArgMinTupleReducer<Tuple<Index, CoeffReturnType> >(), -1, in_dims); 638 internal::ArgMaxTupleReducer<Tuple<Index, CoeffReturnType> >, 644 internal::ArgMaxTupleReducer<Tuple<Index, CoeffReturnType> >, 646 const Derived>(derived(), internal::ArgMaxTupleReducer<Tuple<Index, CoeffReturnType> >(), return_dim, in_dims); 651 internal::ArgMinTupleReducer<Tuple<Index, CoeffReturnType> > [all...] |
TensorArgMax.h | 20 * \brief Tensor + Index Tuple class. 30 typedef Tuple<Index, typename XprTraits::Scalar> Scalar; 61 typedef Tuple<Index, typename XprType::CoeffReturnType> CoeffReturnType; 131 * \brief Converts to Tensor<Tuple<Index, Scalar> > and reduces to Tensor<Index>.
|
/external/fmtlib/test/gmock/ |
gmock.h | 242 // tr1/tuple. gmock-port.h does this via gtest-port.h, which is 243 // guaranteed to pull in the tuple header. 292 // MatcherTuple<T>::type is a tuple type where each field is a Matcher 293 // for the corresponding field in tuple type T. 294 template <typename Tuple> 298 struct MatcherTuple< ::std::tr1::tuple<> > { 299 typedef ::std::tr1::tuple< > type; 303 struct MatcherTuple< ::std::tr1::tuple<A1> > { 304 typedef ::std::tr1::tuple<Matcher<A1> > type; 308 struct MatcherTuple< ::std::tr1::tuple<A1, A2> > [all...] |
/external/clang/test/CXX/temp/temp.param/ |
p15-cxx0x.cpp | 169 template <class... Types> class Tuple;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
ast.c | 408 if (asdl_seq_LEN(e->v.Tuple.elts)) {
409 e->v.Tuple.ctx = ctx;
410 s = e->v.Tuple.elts;
473 /* If the LHS is a list or tuple, we need to set the assignment
653 result = Tuple(args, Store, LINENO(n), n->n_col_offset, c->c_arena);
722 def f((x, (y))): pass will just incur the tuple unpacking warning. */
737 "tuple parameter unpacking has been removed in 3.x"))
745 /* Loop because there can be many parens and tuple
[all...] |
/prebuilts/go/darwin-x86/src/go/types/ |
typestring.go | 138 case *Tuple: 237 func writeTuple(buf *bytes.Buffer, tup *Tuple, variadic bool, qf Qualifier, visited []Type) {
|
predicates.go | 186 case *Tuple: 189 if y, ok := y.(*Tuple); ok {
|
/prebuilts/go/linux-x86/src/go/types/ |
typestring.go | 138 case *Tuple: 237 func writeTuple(buf *bytes.Buffer, tup *Tuple, variadic bool, qf Qualifier, visited []Type) {
|
predicates.go | 186 case *Tuple: 189 if y, ok := y.(*Tuple); ok {
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
tighten.go | 20 // Tuple selectors must stay with the tuple generator.
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
tighten.go | 20 // Tuple selectors must stay with the tuple generator.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
ast.py | 57 elif isinstance(node, Tuple):
58 return tuple(map(_convert, node.elts))
163 Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
ast.py | 57 elif isinstance(node, Tuple):
58 return tuple(map(_convert, node.elts))
163 Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``
|
/external/chromium-trace/catapult/telemetry/telemetry/core/ |
platform.py | 328 Tuple of (sent_data, received_data) in kb if data can be found,
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
ast.py | 57 elif isinstance(node, Tuple): 58 return tuple(map(_convert, node.elts)) 163 Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
ast.py | 57 elif isinstance(node, Tuple): 58 return tuple(map(_convert, node.elts)) 163 Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
ast.py | 57 elif isinstance(node, Tuple): 58 return tuple(map(_convert, node.elts)) 163 Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
ast.py | 57 elif isinstance(node, Tuple): 58 return tuple(map(_convert, node.elts)) 163 Yield a tuple of ``(fieldname, value)`` for each field in ``node._fields``
|