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

  /external/chromium_org/v8/src/
types-inl.h 30 typename TypeImpl<Config>::TypeHandle TypeImpl<Config>::NowOf(
types.h 356 inline static TypeHandle NowOf(i::Object* value, Region* region);
357 static TypeHandle NowOf(i::Handle<i::Object> value, Region* region) {
358 return NowOf(*value, region);
    [all...]
typing.cc 64 Type* lower = Type::NowOf(value, zone());
ic.cc 734 : HeapType::NowOf(object, isolate);
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 234 TypeHandle NowOf(Handle<i::Object> value) {
235 return Type::NowOf(value, region_);
709 void NowOf() {
710 // Constant(V)->NowIs(NowOf(V))
714 TypeHandle nowof_type = T.NowOf(value);
718 // NowOf(V)->Is(Of(V))
721 TypeHandle nowof_type = T.NowOf(value);
726 // Constant(V)->NowIs(T) iff NowOf(V)->NowIs(T) or T->Maybe(Constant(V))
732 TypeHandle nowof_type = T.NowOf(value);
738 // Constant(V)->Is(T) implies NowOf(V)->Is(T) or T->Maybe(Constant(V)
    [all...]

Completed in 84 milliseconds