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.cc143 if (type->IsTuple()) return kOtherInternal; in Lub()
486 if (this->IsTuple()) { in SimplyEquals()
487 if (!that->IsTuple()) return false; in SimplyEquals()
1026 } else if (this->IsTuple()) { in PrintTo()
Dtypes.h581 bool IsTuple() { return IsKind(TypeBase::kTuple); } in IsTuple() function
Dtyper.cc854 if (type->IsTuple() && index < type->AsTuple()->Arity()) { in TypeProjection()
/external/v8/src/ast/
Dast-types.cc148 if (type->IsTuple()) return kOtherInternal; in Lub()
481 if (this->IsTuple()) { in SimplyEquals()
482 if (!that->IsTuple()) return false; in SimplyEquals()
1260 } else if (this->IsTuple()) { in PrintTo()
Dast-types.h826 bool IsTuple() { return IsKind(AstTypeBase::kTuple); } in IsTuple() function