HomeSort by relevance Sort by last modified time
    Searched defs:Tuple (Results 1 - 12 of 12) sorted by null

  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
p12.cpp 6 template<class ...> struct Tuple { };
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/openfst/src/include/fst/
state-table.h 47 // // Lookup state ID by tuple. If it doesn't exist, then add it.
49 // // Lookup state tuple by state ID.
50 // const StateTuple<StateId> &Tuple(StateId) const;
55 // A state tuple has the form:
66 // An implementation using a hash map for the tuple to state ID mapping.
67 // The state tuple T must have == defined and the default constructor
68 // must produce a tuple that will never be seen. H is the hash function.
79 StateId FindState(const StateTuple &tuple) { return FindId(tuple); }
80 const StateTuple &Tuple(StateId s) const { return FindEntry(s);
    [all...]
encode.h 54 // stores both the Tuple of encode labels and weights to a unique
62 struct Tuple {
63 Tuple() {}
64 Tuple(Label ilabel_, Label olabel_, Weight weight_)
66 Tuple(const Tuple& tuple)
67 : ilabel(tuple.ilabel), olabel(tuple.olabel), weight(tuple.weight) {
224 const Tuple* tuple = encode_tuples_[i]; local
264 Tuple* tuple = new Tuple(); local
448 const typename EncodeTable<A>::Tuple* tuple = table_->Decode(arc.ilabel); local
    [all...]
replace.h 66 // // Lookup state ID by tuple. If it doesn't exist, then add it.
67 // StateId FindState(const StateTuple &tuple);
69 // // Lookup state tuple by ID.
70 // const StateTuple &Tuple(StateId id) const;
75 // \brief Tuple of information that uniquely defines a state in replace
109 bool operator()(const ReplaceStateTuple<S, P> &tuple) const {
110 return tuple.prefix_id == 0;
123 uint64 operator()(const ReplaceStateTuple<S, P> &tuple) const {
124 return tuple.prefix_id * (cumulative_size_array_->back()) +
125 cumulative_size_array_->at(tuple.fst_id - 1)
499 const StateTuple& tuple = state_table_->Tuple(s); local
519 StateTuple tuple = state_table_->Tuple(s); local
557 StateTuple tuple = state_table_->Tuple(s); local
594 StateTuple tuple = state_table_->Tuple(s); local
638 StateTuple tuple = state_table_->Tuple(s); local
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
encode.h 39 // stores both the Tuple of encode labels and weights to a unique
47 struct Tuple {
48 Tuple() {}
49 Tuple(Label ilabel_, Label olabel_, Weight weight_)
51 Tuple(const Tuple& tuple)
52 : ilabel(tuple.ilabel), olabel(tuple.olabel), weight(tuple.weight) {
137 const Tuple* tuple = encode_tuples_[i]; local
165 Tuple* tuple = new Tuple(); local
247 const typename EncodeTable<A>::Tuple* tuple = local
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
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'}}
379 template<typename...> struct Tuple {};
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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
MathTest.java 1933 Tuple tuple = TUPLES[i]; local
1980 Tuple tuple = TUPLES[i]; local
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 389 std::vector<Init*> Tuple;
395 Tuple.push_back(DefInit::get(Reg));
420 // Replace the sub-register list with Tuple.
422 RV.setValue(ListInit::get(Tuple, RegisterRecTy));
428 // CostPerUse is aggregated from all Tuple members.
    [all...]
  /prebuilt/common/jython/
jython.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 413 milliseconds