Home
last modified time | relevance | path

Searched refs:NowIs (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/v8/test/cctest/
Dtest-types.cc757 CHECK(const_type->NowIs(nowof_type)); in NowOf()
775 CHECK(!nowof_type->NowIs(type) || const_type->NowIs(type)); in NowOf()
787 CHECK(!const_type->NowIs(type) || in NowOf()
788 nowof_type->NowIs(type) || type->Maybe(const_type)); in NowOf()
1095 void NowIs() { in NowIs() function
1099 CHECK(T.None->NowIs(type)); in NowIs()
1105 CHECK(type->NowIs(T.Any)); in NowIs()
1111 if (type->NowIs(T.None)) CheckEqual(type, T.None); in NowIs()
1117 if (T.Any->NowIs(type)) CheckEqual(type, T.Any); in NowIs()
1123 CHECK(type->NowIs(type)); in NowIs()
[all …]
/external/chromium_org/v8/src/
Dtypes.h412 bool NowIs(TypeImpl* that);
414 bool NowIs(TypeHandle that) { return this->NowIs(*that); } in NowIs() function
Dtypes.cc473 bool TypeImpl<Config>::NowIs(TypeImpl* that) { in NowIs() function in v8::internal::TypeImpl
Dobjects.cc2250 if (!descriptors->GetFieldType(i)->NowIs( in FindLastMatchMap()
2301 if (type1->NowIs(type2)) return type2; in GeneralizeFieldType()
2302 if (type2->NowIs(type1)) return type1; in GeneralizeFieldType()
2307 DCHECK(type1->NowIs(type)); in GeneralizeFieldType()
2308 DCHECK(type2->NowIs(type)); in GeneralizeFieldType()
2325 if (new_field_type->NowIs(old_field_type)) { in GeneralizeFieldType()
2328 isolate)->NowIs(old_field_type)); in GeneralizeFieldType()
2399 DCHECK(old_descriptors->GetFieldType(modify_index)->NowIs( in GeneralizeRepresentation()
2425 (!new_field_type->NowIs(old_descriptors->GetFieldType(modify_index)) || in GeneralizeRepresentation()
2493 new_field_type->NowIs( in GeneralizeRepresentation()
[all …]
/external/chromium_org/v8/src/ic/
Dic.cc667 } else if (type->NowIs(current_type)) { in UpdatePolymorphicIC()
696 if (!type->NowIs(types.at(handler_to_overwrite))) { in UpdatePolymorphicIC()