HomeSort by relevance Sort by last modified time
    Searched defs:NowIs (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
field-type.cc 60 bool FieldType::NowIs(FieldType* other) {
70 bool FieldType::NowIs(Handle<FieldType> other) { return NowIs(*other); }
types.cc 548 bool Type::NowIs(Type* that) {
552 // Union(Constant(V), T)->NowIs(Class(M))
    [all...]
  /external/v8/test/cctest/
test-types.cc 558 // Constant(V)->NowIs(NowOf(V))
563 CHECK(const_type->NowIs(nowof_type));
574 // If NowOf(V)->NowIs(T), then Constant(V)->NowIs(T)
581 CHECK(!nowof_type->NowIs(type) || const_type->NowIs(type));
585 // If Constant(V)->NowIs(T),
586 // then NowOf(V)->NowIs(T) or T->Maybe(Constant(V))
593 CHECK(!const_type->NowIs(type) ||
594 nowof_type->NowIs(type) || type->Maybe(const_type))
    [all...]

Completed in 183 milliseconds