Home
last modified time | relevance | path

Searched refs:IsAny (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/
Dfield-type.cc61 if (other->IsAny()) return true; in NowIs()
64 if (IsAny()) return false; in NowIs()
73 if (IsAny()) return Type::Any(); in Convert()
80 if (IsAny()) { in PrintTo()
Dfield-type.h37 bool IsAny() { return this == Any(); } in IsAny() function
Dtypes.cc538 if (this->IsAny()) return true; in NowContains()
707 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut. in Intersect()
708 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut. in Intersect()
918 if (type1->IsAny() || type2->IsNone()) return type1; in Union()
919 if (type2->IsAny() || type1->IsNone()) return type2; in Union()
1214 if (!this->AsFunction()->Receiver()->IsAny()) { in PrintTo()
Dtypes.h878 bool IsAny() { return this == Any(); } in IsAny() function
Dobjects-debug.cc310 bool type_is_any = field_type->IsAny(); in JSObjectVerify()
Dobjects.cc4332 DCHECK(new_type->IsAny()); in TryReplayPropertyTransitions()
/external/v8/test/cctest/
Dtest-hydrogen-types.cc86 CHECK(ti.IsAny()); in TEST()