Home
last modified time | relevance | path

Searched refs:IsTuple (Results 1 – 6 of 6) sorted by relevance

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
DPR22806_constrain_tuple_like_ctor.pass.cpp32 struct IsTuple : std::false_type {}; struct
35 struct IsTuple<Tuple, std::tuple<Args...>> : std::true_type {}; struct
44 template <class Tuple, class = typename std::enable_if<IsTuple<Tuple>::value>::type>
57 template <class Tuple, class = typename std::enable_if<IsTuple<Tuple>::value>::type>
/external/v8/src/compiler/
Dtypes.cc142 if (type->IsTuple()) return kOtherInternal; in Lub()
471 if (this->IsTuple()) { in SimplyEquals()
472 if (!that->IsTuple()) return false; in SimplyEquals()
1020 } else if (this->IsTuple()) { in PrintTo()
Dtypes.h562 bool IsTuple() { return IsKind(TypeBase::kTuple); } in IsTuple() function
Dtyper.cc838 if (type->IsTuple() && index < type->AsTuple()->Arity()) { in TypeProjection()
/external/v8/src/ast/
Dast-types.cc147 if (type->IsTuple()) return kOtherInternal; in Lub()
480 if (this->IsTuple()) { in SimplyEquals()
481 if (!that->IsTuple()) return false; in SimplyEquals()
1259 } else if (this->IsTuple()) { in PrintTo()
Dast-types.h833 bool IsTuple() { return IsKind(AstTypeBase::kTuple); } in IsTuple() function