/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/ |
p12.cpp | 7 template<class ...> struct Tuple { }; 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/openfst/src/include/fst/ |
state-table.h | 48 // // Lookup state ID by tuple. If it doesn't exist, then add it. 50 // // Lookup state tuple by state ID. 51 // const StateTuple<StateId> &Tuple(StateId) const; 56 // A state tuple has the form: 68 // An implementation using a hash map for the tuple to state ID mapping. 69 // The state tuple T must have == defined. H is the hash function. 85 StateId FindState(const StateTuple &tuple) { return FindId(tuple); } 86 const StateTuple &Tuple(StateId s) const { return FindEntry(s); } 90 // An implementation using a hash map for the tuple to state ID mapping [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'}} 389 template<typename...> struct Tuple {}; 394 typedef Tuple<Pair<Args1, Args2> ... > type; // expected-error{{pack expansion contains parameter packs 'Args1' and 'Args2' that have different lengths (1 vs. 2)}} 398 typedef zip<short, int>::with<unsigned short, unsigned>::type T1; // T1 is Tuple<Pair<short, unsigned short>, Pair<int, unsigned>> 399 typedef Tuple<Pair<short, unsigned short>, Pair<int, unsigned>> T1;
|
/external/chromium_org/third_party/jinja2/ |
nodes.py | 71 d[attr] = tuple(storage) 185 """Find all the nodes of a given type. If the type is a tuple, 186 the check is performed for any of the tuple items. 230 tuple(self.iter_fields()) == tuple(other.iter_fields()) 277 :class:`Name` or :class:`Tuple`), `iter` the iterable. `body` is a list 466 class Tuple(Literal): 468 for subscripts. Like for :class:`Name` `ctx` specifies if the tuple 475 return tuple(x.as_const(eval_ctx) for x in self.items)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 11 if t is tuple or t is list: 74 return tuple(flatten(self.nodes)) 79 return tuple(nodelist) 106 return tuple(flatten(self.nodes)) 111 return tuple(nodelist) 137 return tuple(flatten(self.nodes)) 142 return tuple(nodelist) 157 return tuple(children) 164 return tuple(nodelist) 179 return tuple(children [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 11 if t is tuple or t is list: 74 return tuple(flatten(self.nodes)) 79 return tuple(nodelist) 106 return tuple(flatten(self.nodes)) 111 return tuple(nodelist) 137 return tuple(flatten(self.nodes)) 142 return tuple(nodelist) 157 return tuple(children) 164 return tuple(nodelist) 179 return tuple(children [all...] |
/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 | 583 std::vector<Init*> Tuple; 589 Tuple.push_back(DefInit::get(Reg)); 616 // Replace the sub-register list with Tuple. 618 RV.setValue(ListInit::get(Tuple, RegisterRecTy)); 624 // CostPerUse is aggregated from all Tuple members. [all...] |
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
Python-ast.h | 308 } Tuple; 508 #define Tuple(a0, a1, a2, a3, a4) _Py_Tuple(a0, a1, a2, a3, a4)
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
Python-ast.h | 308 } Tuple; 508 #define Tuple(a0, a1, a2, a3, a4) _Py_Tuple(a0, a1, a2, a3, a4)
|
/prebuilts/devtools/tools/lib/ |
jython-standalone-2.5.3.jar | |
/prebuilts/misc/common/jython/ |
jython.jar | |
/prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/ |
jython-2.5.3.jar | |
/prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/ |
jython-standalone-2.5.3.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 | |
/prebuilts/misc/common/groovy/ |
groovy-all-1.7.0.jar | |