Home
last modified time | relevance | path

Searched refs:AddToUnion (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/ast/
Dast-types.cc874 return AddToUnion(rhs, result, size, zone); in IntersectAux()
891 return AddToUnion(lhs->IsBitset() ? rhs : lhs, result, size, zone); in IntersectAux()
894 return AddToUnion(lhs->IsClass() ? rhs : lhs, result, size, zone); in IntersectAux()
897 return AddToUnion(lhs, result, size, zone); in IntersectAux()
1003 size = AddToUnion(type1, result, size, zone); in Union()
1004 size = AddToUnion(type2, result, size, zone); in Union()
1010 int AstType::AddToUnion(AstType* type, AstUnionType* result, int size, in AddToUnion() function in v8::internal::AstType
1015 size = AddToUnion(type->AsUnion()->Get(i), result, size, zone); in AddToUnion()
Dast-types.h949 static int AddToUnion(AstType* type, AstUnionType* result, int size,
/external/v8/src/compiler/
Dtypes.cc769 return AddToUnion(lhs->IsBitset() ? rhs : lhs, result, size, zone); in IntersectAux()
772 return AddToUnion(lhs, result, size, zone); in IntersectAux()
894 size = AddToUnion(type1, result, size, zone); in Union()
895 size = AddToUnion(type2, result, size, zone); in Union()
901 int Type::AddToUnion(Type* type, UnionType* result, int size, Zone* zone) { in AddToUnion() function in v8::internal::compiler::Type
905 size = AddToUnion(type->AsUnion()->Get(i), result, size, zone); in AddToUnion()
Dtypes.h660 static int AddToUnion(Type* type, UnionType* result, int size, Zone* zone);