Home
last modified time | relevance | path

Searched refs:CellRecord (Results 1 – 9 of 9) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Djs_finalization_registry.h38 class CellRecord final : public Record {
40 CAST_CHECK(CellRecord, IsCellRecord);
Djs_finalization_registry.cpp55 JSHandle<CellRecord> cellRecord = factory->NewCellRecord(); in Register()
153 JSHandle<CellRecord> cellRecord(thread, value); in DealCallBackOfMap()
188 JSHandle<CellRecord> cellRecord(thread, value); in CleanupFinalizationRegistry()
Dglobal_env_constants.cpp295 factory->NewEcmaReadOnlyHClass(hClass, CellRecord::SIZE, JSType::CELL_RECORD)); in InitRootsClass()
Dobject_factory.h159 class CellRecord; variable
657 JSHandle<CellRecord> NewCellRecord();
Ddump.cpp802 CellRecord::Cast(obj)->Dump(os); in DumpObject()
2056 void CellRecord::Dump(std::ostream &os) const in Dump()
4008 CellRecord::Cast(obj)->DumpForSnapshot(vec); in DumpObject()
4912 void CellRecord::DumpForSnapshot(std::vector<Reference> &vec) const in DumpForSnapshot()
Dobject_factory.cpp4470 JSHandle<CellRecord> ObjectFactory::NewCellRecord() in NewCellRecord()
4475 JSHandle<CellRecord> obj(thread_, header); in NewCellRecord()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_finalization_registry_test.cpp115 JSHandle<CellRecord> cellRecord = factory->NewCellRecord(); in HWTEST_F_L0()
149 JSHandle<CellRecord> cellRecord = factory->NewCellRecord(); in HWTEST_F_L0()
453 JSHandle<CellRecord> cellRecord = factory->NewCellRecord(); in HWTEST_F_L0()
Ddump_test.cpp634 CHECK_DUMP_FIELDS(Record::SIZE, CellRecord::SIZE, 2U); in HWTEST_F_L0()
635 JSHandle<CellRecord> cellRecord = factory->NewCellRecord(); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/mem/
Dobject_xray.h273 CellRecord::Cast(object)->VisitRangeSlot<visitType>(visitor); in VisitObjectBody()