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

/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
H A Dp12.cpp6 template<class ...> struct Tuple { }; struct
7 template<class ... Types> int &g(Tuple<Types ...>); // #1
8 template<class T1, class ... Types> float &g(Tuple<T1, Types ...>); // #2
9 template<class T1, class ... Types> double &g(Tuple<T1, Types& ...>); // #3
12 int &ir1 = g(Tuple<>());
13 float &fr1 = g(Tuple<int, float>());
14 double &dr1 = g(Tuple<int, float&>());
15 double &dr2 = g(Tuple<int>());
/external/chromium/testing/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/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/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/openfst/src/include/fst/
H A Dstate-table.h50 // const StateTuple<StateId> &Tuple(StateId) const;
80 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } function in class:fst::HashStateTable
105 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } function in class:fst::CompactHashStateTable
127 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } function in class:fst::VectorStateTable
157 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } function in class:fst::VectorHashStateTable
177 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } function in class:fst::ErasableStateTable
199 // 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/test/CXX/temp/temp.decls/temp.variadic/
H A Dp5.cpp379 template<typename...> struct Tuple {}; struct in namespace:WorkingPaperExample
384 typedef Tuple<Pair<Args1, Args2> ... > type; // expected-error{{pack expansion contains parameter packs 'Args1' and 'Args2' that have different lengths (1 vs. 2)}}
388 typedef zip<short, int>::with<unsigned short, unsigned>::type T1; // T1 is Tuple<Pair<short, unsigned short>, Pair<int, unsigned>>
389 typedef Tuple<Pair<short, unsigned short>, Pair<int, unsigned>> T1;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dencode.h39 // stores both the Tuple of encode labels and weights to a unique
47 struct Tuple { struct in class:fst::EncodeTable
48 Tuple() {} function in struct:fst::EncodeTable::Tuple
49 Tuple(Label ilabel_, Label olabel_, Weight weight_) function in struct:fst::EncodeTable::Tuple
51 Tuple(const Tuple& tuple) function in struct:fst::EncodeTable::Tuple
59 // Comparison object for hashing EncodeTable Tuple(s).
62 bool operator()(const Tuple* x, const Tuple* y) const {
83 size_t operator()(const Tuple*
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp612 std::vector<Init*> Tuple; local
618 Tuple.push_back(DefInit::get(Reg));
643 // Replace the sub-register list with Tuple.
645 RV.setValue(ListInit::get(Tuple, RegisterRecTy));
651 // CostPerUse is aggregated from all Tuple members.
/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 ...

Completed in 1285 milliseconds