Searched defs:Tuple (Results 1 - 19 of 19) sorted by relevance

/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
H A Dp12.cpp7 template<class ...> struct Tuple { }; struct
8 template<class ... Types> int &g(Tuple<Types ...>); // #1
9 template<class T1, class ... Types> float &g(Tuple<T1, Types ...>); // #2
10 template<class T1, class ... Types> double &g(Tuple<T1, Types& ...>); // #3
13 int &ir1 = g(Tuple<>());
14 float &fr1 = g(Tuple<int, float>());
15 double &dr1 = g(Tuple<int, float&>());
16 double &dr2 = g(Tuple<int>());
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dalloc_UTypes.pass.cpp36 typedef std::tuple<MoveOnly, NoDefault> Tuple; typedef
39 Tuple,
44 Tuple,
49 typedef std::tuple<MoveOnly, MoveOnly, NoDefault> Tuple; typedef
52 Tuple,
57 Tuple,
63 typedef std::tuple<MoveOnly, NoDefault> Tuple; typedef
64 typedef std::tuple<MoveOnly, Tuple, MoveOnly, MoveOnly> NestedTuple;
73 std::allocator_arg_t, A1<int>, MoveOnly, Tuple, MoveOnly, MoveOnly
77 typedef std::tuple<MoveOnly, int> Tuple; typedef
[all...]
H A DUTypes.pass.cpp45 typedef std::tuple<MoveOnly, NoDefault> Tuple; typedef
48 Tuple,
53 Tuple,
58 typedef std::tuple<MoveOnly, MoveOnly, NoDefault> Tuple; typedef
61 Tuple,
66 Tuple,
72 typedef std::tuple<MoveOnly, NoDefault> Tuple; typedef
73 typedef std::tuple<MoveOnly, Tuple, MoveOnly, MoveOnly> NestedTuple;
82 MoveOnly, Tuple, MoveOnly, MoveOnly
86 typedef std::tuple<MoveOnly, int> Tuple; typedef
[all...]
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_nothrow_constructible.pass.cpp80 struct Tuple { struct
81 Tuple(Empty&&) noexcept {}
92 test_is_nothrow_constructible<Tuple &&, Empty> (); // See bug #19616.
100 static_assert(!std::is_constructible<Tuple&, Empty>::value, "");
101 test_is_not_nothrow_constructible<Tuple &, Empty> (); // See bug #19616.
/external/google-breakpad/src/testing/gtest/include/gtest/
H A Dgtest-printers.h77 // // element for each field. Tuple support must be enabled in
80 // const Tuple& value);
717 template <typename Tuple>
718 static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) {
721 UniversalPrinter<typename ::std::tr1::tuple_element<N - 1, Tuple>::type>
727 template <typename Tuple>
728 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
739 template <typename Tuple>
740 static void PrintPrefixTo(const Tuple&, ::std::ostream*) {} argument
742 template <typename Tuple>
743 TersePrintPrefixToStrings(const Tuple&, Strings*) argument
[all...]
/external/gtest/include/gtest/
H A Dgtest-printers.h77 // // element for each field. Tuple support must be enabled in
80 // const Tuple& value);
773 template <typename Tuple>
774 static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) {
777 UniversalPrinter<typename ::std::tr1::tuple_element<N - 1, Tuple>::type>
783 template <typename Tuple>
784 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
795 template <typename Tuple>
796 static void PrintPrefixTo(const Tuple&, ::std::ostream*) {} argument
798 template <typename Tuple>
799 TersePrintPrefixToStrings(const Tuple&, Strings*) argument
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-printers.h77 // // element for each field. Tuple support must be enabled in
80 // const Tuple& value);
714 template <typename Tuple>
715 static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) {
718 UniversalPrinter<typename ::std::tr1::tuple_element<N - 1, Tuple>::type>
724 template <typename Tuple>
725 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
736 template <typename Tuple>
737 static void PrintPrefixTo(const Tuple&, ::std::ostream*) {} argument
739 template <typename Tuple>
740 TersePrintPrefixToStrings(const Tuple&, Strings*) argument
[all...]
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-printers.h77 // // element for each field. Tuple support must be enabled in
80 // const Tuple& value);
714 template <typename Tuple>
715 static void PrintPrefixTo(const Tuple& t, ::std::ostream* os) {
718 UniversalPrinter<typename ::std::tr1::tuple_element<N - 1, Tuple>::type>
724 template <typename Tuple>
725 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
736 template <typename Tuple>
737 static void PrintPrefixTo(const Tuple&, ::std::ostream*) {} argument
739 template <typename Tuple>
740 TersePrintPrefixToStrings(const Tuple&, Strings*) argument
[all...]
/external/openfst/src/include/fst/
H A Dstate-table.h51 // const StateTuple<StateId> &Tuple(StateId) const;
86 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } function in class:fst::HashStateTable
109 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } function in class:fst::CompactHashStateTable
134 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } function in class:fst::VectorStateTable
164 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } function in class:fst::VectorHashStateTable
184 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } function in class:fst::ErasableStateTable
206 // const StateTuple<StateId> &Tuple(StateId) const;
H A Dencode.h54 // stores both the Tuple of encode labels and weights to a unique
62 struct Tuple { struct in class:fst::EncodeTable
63 Tuple() {} function in struct:fst::EncodeTable::Tuple
64 Tuple(Label ilabel_, Label olabel_, Weight weight_) function in struct:fst::EncodeTable::Tuple
66 Tuple(const Tuple& tuple) function in struct:fst::EncodeTable::Tuple
74 // Comparison object for hashing EncodeTable Tuple(s).
77 bool operator()(const Tuple* x, const Tuple* y) const {
97 size_t operator()(const Tuple*
[all...]
H A Dreplace.h70 // const StateTuple &Tuple(StateId id) const;
75 // \brief Tuple of information that uniquely defines a state in replace
224 const StateTuple &Tuple(StateId id) const { function in class:fst::VectorHashReplaceStateTable
225 return state_table_->Tuple(id);
251 using StateTable::Tuple;
499 const StateTuple& tuple = state_table_->Tuple(s);
519 StateTuple tuple = state_table_->Tuple(s);
557 StateTuple tuple = state_table_->Tuple(s);
594 StateTuple tuple = state_table_->Tuple(s);
638 StateTuple tuple = state_table_->Tuple(
[all...]
/external/clang/lib/CodeGen/
H A DEHScopeStack.h206 ConditionalCleanup(SavedTuple Tuple) : Saved(std::move(Tuple)) {} argument
267 /// Push a lazily-created cleanup on the stack. Tuple version.
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp5.cpp390 template<typename...> struct Tuple {}; struct in namespace:WorkingPaperExample
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;
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp572 std::vector<Init*> Tuple; variable
578 Tuple.push_back(DefInit::get(Reg));
605 // Replace the sub-register list with Tuple.
607 RV.setValue(ListInit::get(Tuple, RegisterRecTy));
613 // CostPerUse is aggregated from all Tuple members.
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h782 template <bool kIndexValid, int kIndex, class Tuple>
1302 // 6.1.3.2 Tuple creation functions.
1369 // 6.1.3.3 Tuple helper classes.
1371 template <typename Tuple> struct tuple_size;
1428 template <int k, class Tuple>
1431 k < (tuple_size<Tuple>::value), k, Tuple>::type type;
1434 #define GTEST_TUPLE_ELEMENT_(k, Tuple) typename tuple_element<k, Tuple >::type
1443 template <class Tuple>
9987 PrintPrefixTo(const Tuple&, ::std::ostream*) argument
9990 TersePrintPrefixToStrings(const Tuple&, Strings*) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 599 milliseconds