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

  /external/chromium_org/v8/src/
types.cc 473 bool TypeImpl<Config>::NowIs(TypeImpl* that) {
477 // Union(Constant(V), T)->NowIs(Class(M))
    [all...]
types.h 121 // The NowIs operator implements state-sensitive subtying, as described above.
412 bool NowIs(TypeImpl* that);
414 bool NowIs(TypeHandle that) { return this->NowIs(*that); }
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 752 // Constant(V)->NowIs(NowOf(V))
757 CHECK(const_type->NowIs(nowof_type));
768 // If NowOf(V)->NowIs(T), then Constant(V)->NowIs(T)
775 CHECK(!nowof_type->NowIs(type) || const_type->NowIs(type));
779 // If Constant(V)->NowIs(T),
780 // then NowOf(V)->NowIs(T) or T->Maybe(Constant(V))
787 CHECK(!const_type->NowIs(type) ||
788 nowof_type->NowIs(type) || type->Maybe(const_type))
    [all...]

Completed in 81 milliseconds