Home
last modified time | relevance | path

Searched refs:AsTuple (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/compiler/
Dtypes.cc491 const TupleType* this_tuple = this->AsTuple(); in SimplyEquals()
492 const TupleType* that_tuple = that.AsTuple(); in SimplyEquals()
1017 for (int i = 0, n = this->AsTuple()->Arity(); i < n; ++i) { in PrintTo()
1018 Type type_i = this->AsTuple()->Element(i); in PrintTo()
1104 const TupleType* Type::AsTuple() const { in AsTuple() function in v8::internal::compiler::Type
Dtypes.h407 const TupleType* AsTuple() const;
Dtyper.cc912 if (type.IsTuple() && index < type.AsTuple()->Arity()) { in TypeProjection()
913 return type.AsTuple()->Element(index); in TypeProjection()