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

  /external/chromium_org/v8/test/cctest/
test-types.cc 710 // Constant(V)->NowIs(NowOf(V))
715 CHECK(const_type->NowIs(nowof_type));
726 // Constant(V)->NowIs(T) iff NowOf(V)->NowIs(T) or T->Maybe(Constant(V))
733 CHECK(const_type->NowIs(type) ==
734 (nowof_type->NowIs(type) || type->Maybe(const_type)));
    [all...]
  /external/chromium_org/v8/src/
types.h 105 // The NowIs operator implements state-sensitive subtying, as described above.
360 bool NowIs(TypeImpl* that);
362 bool NowIs(TypeHandle that) { return this->NowIs(*that); }
    [all...]
types.cc 331 bool TypeImpl<Config>::NowIs(TypeImpl* that) {
335 // Union(Constant(V), T)->NowIs(Class(M))
objects.cc     [all...]
ic.cc 692 } else if (type->NowIs(current_type)) {
716 if (!type->NowIs(types.at(handler_to_overwrite))) {
    [all...]

Completed in 1081 milliseconds