/arkcompiler/ets_frontend/ets2panda/checker/types/ts/ |
H A D | objectDescriptor.cpp | 34 void ObjectDescriptor::Copy(ArenaAllocator *allocator, ObjectDescriptor *copiedDesc, TypeRelation *relation, in Copy() function in ark::es2panda::checker::ObjectDescriptor 39 auto *copiedProp = it->Copy(allocator, it->Declaration()); in Copy() 45 copiedDesc->callSignatures.push_back(it->Copy(allocator, relation, globalTypes)); in Copy() 49 copiedDesc->constructSignatures.push_back(it->Copy(allocator, relation, globalTypes)); in Copy() 53 copiedDesc->numberIndexInfo = numberIndexInfo->Copy(allocator, relation, globalTypes); in Copy() 57 copiedDesc->stringIndexInfo = stringIndexInfo->Copy(allocator, relation, globalTypes); in Copy()
|
H A D | indexInfo.cpp | 21 IndexInfo *IndexInfo::Copy(ArenaAllocator *allocator, TypeRelation *relation, GlobalTypesHolder *globalTypes) in Copy() function in ark::es2panda::checker::IndexInfo
|
H A D | objectDescriptor.h | 48 void Copy(ArenaAllocator *allocator, ObjectDescriptor *copiedDesc, TypeRelation *relation,
|
H A D | constructorType.cpp | 47 desc_->Copy(allocator, copiedDesc, relation, globalTypes); in Instantiate()
|
H A D | indexInfo.h | 71 IndexInfo *Copy(ArenaAllocator *allocator, TypeRelation *relation, GlobalTypesHolder *globalTypes);
|
H A D | functionType.cpp | 57 desc_->Copy(allocator, copiedDesc, relation, globalTypes); in Instantiate()
|
H A D | objectLiteralType.cpp | 88 desc_->Copy(allocator, copiedDesc, relation, globalTypes); in Instantiate()
|
/arkcompiler/ets_frontend/es2panda/typescript/types/ |
H A D | objectDescriptor.cpp | 35 void ObjectDescriptor::Copy(ArenaAllocator *allocator, ObjectDescriptor *copiedDesc, TypeRelation *relation, in Copy() function in panda::es2panda::checker::ObjectDescriptor 41 auto *copiedProp = it->Copy(allocator, it->Declaration()); in Copy() 47 copiedDesc->callSignatures.push_back(it->Copy(allocator, relation, globalTypes)); in Copy() 51 copiedDesc->constructSignatures.push_back(it->Copy(allocator, relation, globalTypes)); in Copy() 55 copiedDesc->numberIndexInfo = numberIndexInfo->Copy(allocator, relation, globalTypes); in Copy() 59 copiedDesc->stringIndexInfo = stringIndexInfo->Copy(allocator, relation, globalTypes); in Copy()
|
H A D | signature.h | 36 params.push_back(it->Copy(allocator, it->Declaration())); in SignatureInfo() 42 restVar = other->restVar->Copy(allocator, other->restVar->Declaration()); in SignatureInfo() 115 Signature *Copy(ArenaAllocator *allocator, TypeRelation *relation, GlobalTypesHolder *globalTypes);
|
H A D | indexInfo.cpp | 22 IndexInfo *IndexInfo::Copy(ArenaAllocator *allocator, TypeRelation *relation, GlobalTypesHolder *globalTypes) in Copy() function in panda::es2panda::checker::IndexInfo
|
H A D | constructorType.cpp | 48 desc_->Copy(allocator, copiedDesc, relation, globalTypes); in Instantiate()
|
H A D | objectDescriptor.h | 49 void Copy(ArenaAllocator *allocator, ObjectDescriptor *copiedDesc, TypeRelation *relation,
|
H A D | indexInfo.h | 72 IndexInfo *Copy(ArenaAllocator *allocator, TypeRelation *relation, GlobalTypesHolder *globalTypes);
|
H A D | functionType.cpp | 58 desc_->Copy(allocator, copiedDesc, relation, globalTypes); in Instantiate()
|
H A D | objectLiteralType.cpp | 89 desc_->Copy(allocator, copiedDesc, relation, globalTypes); in Instantiate()
|
/arkcompiler/ets_frontend/ets2panda/checker/types/ |
H A D | signature.h | 42 params.push_back(it->Copy(allocator, it->Declaration())); in SignatureInfo() 49 restVar = other->restVar->Copy(allocator, other->restVar->Declaration()); in SignatureInfo() 266 Signature *Copy(ArenaAllocator *allocator, TypeRelation *relation, GlobalTypesHolder *globalTypes);
|
H A D | signature.cpp | 51 newParam = param->Copy(allocator, param->Declaration()); in Substitute() 61 newSigInfo->restVar = signatureInfo_->restVar->Copy(allocator, signatureInfo_->restVar->Declaration()); in Substitute() 103 Signature *Signature::Copy(ArenaAllocator *allocator, TypeRelation *relation, GlobalTypesHolder *globalTypes) in Copy() function in ark::es2panda::checker::Signature
|
/arkcompiler/ets_frontend/ets2panda/varbinder/ |
H A D | variable.cpp | 39 LocalVariable *LocalVariable::Copy(ArenaAllocator *allocator, Decl *decl) const in Copy() function in ark::es2panda::varbinder::LocalVariable
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
H A D | ets_itable_builder.cpp | 65 itable[i] = superItable[i].Copy(allocator); in LinearizeITable() 79 itable[shift++] = item.Copy(allocator); in LinearizeITable()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | vtable.h | 64 static JSHandle<VTable> Copy(const JSThread *thread, const JSHandle<VTable> &vtable);
|
H A D | tagged_array-inl.h | 68 inline void TaggedArray::Copy(const JSThread* thread, uint32_t dstStart, uint32_t srcStart, 72 ASSERT((dstStart + count <= GetLength()) && "TaggedArray::Copy dst count is out of range"); 73 ASSERT((srcStart + count <= srcArray->GetLength()) && "TaggedArray::Copy src count is out of range");
|
H A D | vtable.cpp | 100 JSHandle<VTable> VTable::Copy(const JSThread *thread, const JSHandle<VTable> &vtable) in Copy() function in panda::ecmascript::VTable
|
H A D | weak_vector.h | 46 static JSHandle<WeakVector> Copy(const JSThread *thread, const JSHandle<WeakVector> &vec, bool needExtend = false);
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | itable.h | 50 Entry Copy(mem::InternalAllocatorPtr allocator) const in Copy() function in ark::ITable::Entry
|
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/ |
H A D | cpu_affinity.cpp | 100 void CpuSet::Copy(CpuSet &destination, const CpuSet &source) in Copy() function in ark::os::CpuSet 215 CpuSet::Copy(middleCpuSet_, weakCpuSet_); in LoadCpuFreq()
|