Searched refs:IsKind (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/compiler/ |
D | types.h | 275 static bool IsKind(Type* type, Kind kind) { in IsKind() function 311 DCHECK(IsKind(type, kOtherNumberConstant)); in cast() 340 DCHECK(IsKind(type, kHeapConstant)); in NON_EXPORTED_BASE() 393 DCHECK(IsKind(type, kRange)); in cast() 462 DCHECK(IsKind(type, kTuple)); in cast() 486 DCHECK(IsKind(type, kUnion)); in cast() 557 bool IsRange() { return IsKind(TypeBase::kRange); } in IsRange() 558 bool IsHeapConstant() { return IsKind(TypeBase::kHeapConstant); } in IsHeapConstant() 560 return IsKind(TypeBase::kOtherNumberConstant); in IsOtherNumberConstant() 562 bool IsTuple() { return IsKind(TypeBase::kTuple); } in IsTuple() [all …]
|
/external/v8/src/ast/ |
D | ast-types.h | 377 static bool IsKind(AstType* type, Kind kind) { in IsKind() function 412 DCHECK(IsKind(type, kClass)); in cast() 443 DCHECK(IsKind(type, kConstant)); in cast() 505 DCHECK(IsKind(type, kRange)); in cast() 534 DCHECK(IsKind(type, kContext)); in cast() 562 DCHECK(IsKind(type, kArray)); in cast() 634 DCHECK(IsKind(type, kFunction)); in cast() 661 DCHECK(IsKind(type, kTuple)); in cast() 687 DCHECK(IsKind(type, kUnion)); in cast() 827 bool IsRange() { return IsKind(AstTypeBase::kRange); } in IsRange() [all …]
|