OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Tuple
(Results
1 - 7
of
7
) 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/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_
tuple
s_[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'}}
373
template<typename...> struct
Tuple
{};
378
typedef
Tuple
<Pair<Args1, Args2> ... > type; // expected-error{{pack expansion contains parameter packs 'Args1' and 'Args2' that have different lengths (1 vs. 2)}}
382
typedef zip<short, int>::with<unsigned short, unsigned>::type T1; // T1 is
Tuple
<Pair<short, unsigned short>, Pair<int, unsigned>>
383
typedef
Tuple
<Pair<short, unsigned short>, Pair<int, unsigned>> T1;
/external/llvm/utils/TableGen/
CodeGenRegisters.cpp
192
std::vector<Init*>
Tuple
;
198
Tuple
.push_back(DefInit::get(Reg));
217
// Replace the sub-register list with
Tuple
.
219
RV.setValue(new ListInit(
Tuple
, RegisterRecTy));
225
// CostPerUse is aggregated from all
Tuple
members.
/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
...]
/prebuilt/common/jython/
jython.jar
/prebuilt/common/groovy/
groovy-all-1.7.0.jar
Completed in 756 milliseconds