| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/ |
| D | ets_field_wrapper.h | 60 napi_property_descriptor MakeInstanceProperty(EtsClassWrapper *owner, Field *field); 61 napi_property_descriptor MakeStaticProperty(EtsClassWrapper *owner, Field *field); 69 …EtsFieldWrapper(EtsClassWrapper *owner, Field *field) : owner_(owner), field_(field), lazyRefconve… in EtsFieldWrapper() argument
|
| D | ets_method_wrapper.cpp | 29 …tsMethodWrapper> EtsMethodWrapper::CreateMethod(EtsMethodSet *etsMethodSet, EtsClassWrapper *owner) in CreateMethod() argument 31 auto wrapper = new EtsMethodWrapper(etsMethodSet, owner); in CreateMethod() 47 auto owner = ctx->GetEtsClassWrappersCache()->Lookup(etsMethodSet->GetEnclosingClass()); in GetMethod() local 48 ASSERT(owner != nullptr); in GetMethod() 50 …nique_ptr<EtsMethodWrapper> etsMethodWrapper = EtsMethodWrapper::CreateMethod(etsMethodSet, owner); in GetMethod()
|
| D | ets_method_wrapper.h | 92 …std::unique_ptr<EtsMethodWrapper> CreateMethod(EtsMethodSet *etsMethodSet, EtsClassWrapper *owner); 94 …apper(EtsMethodSet *etsMethodSet, EtsClassWrapper *owner) : etsMethodSet_(etsMethodSet), owner_(ow… in EtsMethodWrapper() argument
|
| D | ets_field_wrapper.cpp | 261 napi_property_descriptor EtsFieldWrapper::MakeInstanceProperty(EtsClassWrapper *owner, Field *field) in MakeInstanceProperty() argument 263 new (this) EtsFieldWrapper(owner, field); in MakeInstanceProperty() 268 napi_property_descriptor EtsFieldWrapper::MakeStaticProperty(EtsClassWrapper *owner, Field *field) in MakeStaticProperty() argument 270 new (this) EtsFieldWrapper(owner, field); in MakeStaticProperty()
|
| /arkcompiler/ets_frontend/ets2panda/checker/types/ |
| D | signature.h | 179 void SetOwner(ETSObjectType *owner) 181 ownerObj_ = owner; 184 void SetOwnerVar(varbinder::Variable *owner) 186 ownerVar_ = owner; 199 ETSObjectType *Owner() 204 const ETSObjectType *Owner() const
|
| /arkcompiler/runtime_core/ |
| D | LICENSE | 13 "Licensor" shall mean the copyright owner or entity authorized by 14 the copyright owner that is granting the License. 52 submitted to Licensor for inclusion in the Work by the copyright owner 54 the copyright owner. For the purposes of this definition, "submitted" 61 designated in writing by the copyright owner as "Not a Contribution." 179 Copyright [yyyy] [name of copyright owner]
|
| /arkcompiler/ets_frontend/ets2panda/ |
| D | LICENSE.txt | 13 "Licensor" shall mean the copyright owner or entity authorized by 14 the copyright owner that is granting the License. 52 submitted to Licensor for inclusion in the Work by the copyright owner 54 the copyright owner. For the purposes of this definition, "submitted" 61 designated in writing by the copyright owner as "Not a Contribution." 179 Copyright [yyyy] [name of copyright owner]
|
| /arkcompiler/toolchain/ |
| D | LICENSE | 13 "Licensor" shall mean the copyright owner or entity authorized by 14 the copyright owner that is granting the License. 52 submitted to Licensor for inclusion in the Work by the copyright owner 54 the copyright owner. For the purposes of this definition, "submitted" 61 designated in writing by the copyright owner as "Not a Contribution."
|
| /arkcompiler/runtime_core/static_core/ |
| D | LICENSE | 13 "Licensor" shall mean the copyright owner or entity authorized by 14 the copyright owner that is granting the License. 52 submitted to Licensor for inclusion in the Work by the copyright owner 54 the copyright owner. For the purposes of this definition, "submitted" 61 designated in writing by the copyright owner as "Not a Contribution."
|
| /arkcompiler/ets_runtime/ |
| D | LICENSE | 13 "Licensor" shall mean the copyright owner or entity authorized by 14 the copyright owner that is granting the License. 52 submitted to Licensor for inclusion in the Work by the copyright owner 54 the copyright owner. For the purposes of this definition, "submitted" 61 designated in writing by the copyright owner as "Not a Contribution."
|
| /arkcompiler/ets_frontend/ets2panda/ast_verifier/ |
| D | importExportAccessValid.cpp | 81 if (signature == nullptr || signature->Owner() == nullptr) { in InvariantImportExportMethod() 82 // NOTE(vpukhov): Add a synthetic owner for dynamic signatures in InvariantImportExportMethod() 88 !IsContainedIn(varCallee->Declaration()->Node(), signature->Owner()->GetDeclNode()) && in InvariantImportExportMethod() 89 varCallee->Declaration()->Node() != signature->Owner()->GetDeclNode()) { in InvariantImportExportMethod()
|
| D | helpers.cpp | 199 return classObjectType->IsDescendantOf(signature->Owner()); in ValidateMethodAccessForClass() 224 return tsInterfaceObjectType->IsDescendantOf(signature->Owner()); in ValidateMethodAccessForTSInterface() 311 auto *ownerSign = signature->Owner(); in ValidateMethodAccess()
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | vtable.h | 29 OWNER, enumerator 62 const JSHandle<JSTaggedValue> &owner, uint32_t propIndex);
|
| D | vtable.cpp | 21 const JSHandle<JSTaggedValue> &owner, uint32_t propIndex) in CreateTuple() argument 45 CVector<JSHandle<JSTaggedValue>> vec {name, type, owner, offset}; in CreateTuple()
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
| D | g1_pause_tracker.h | 57 …explicit Scope(G1PauseTracker *owner) : owner_(owner), startTimeUs_(ark::time::GetCurrentTimeInMic… in Scope() argument
|
| /arkcompiler/ets_frontend/arkguard/ |
| D | LICENSE | 13 "Licensor" shall mean the copyright owner or entity authorized by 14 the copyright owner that is granting the License. 52 submitted to Licensor for inclusion in the Work by the copyright owner 54 the copyright owner. For the purposes of this definition, "submitted" 61 designated in writing by the copyright owner as "Not a Contribution."
|
| /arkcompiler/ets_frontend/ |
| D | LICENSE | 13 "Licensor" shall mean the copyright owner or entity authorized by 14 the copyright owner that is granting the License. 52 submitted to Licensor for inclusion in the Work by the copyright owner 54 the copyright owner. For the purposes of this definition, "submitted" 61 designated in writing by the copyright owner as "Not a Contribution."
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | monitor.cpp | 103 MTManagedThread *owner = nullptr; in InflateThinLock() local 110 owner = threadManager->SuspendAndWaitThreadByInternalThreadId(ownerThreadId); in InflateThinLock() 115 if (owner != nullptr) { in InflateThinLock() 117 Inflate<true>(objHandle.GetPtr(), owner); in InflateThinLock() 122 owner->ResumeImpl(true); in InflateThinLock() 584 MTManagedThread *owner = this->GetOwner(); in Acquire() local 585 if (owner == thread) { in Acquire() 621 LOG(FATAL, RUNTIME) << "Set monitor owner failed in Acquire"; in Acquire() 643 LOG(FATAL, RUNTIME) << "Set monitor owner failed in Acquire"; in Acquire() 666 LOG(FATAL, RUNTIME) << "Set monitor owner failed in InitWithOwner"; in Acquire() [all …]
|
| /arkcompiler/ets_runtime/tools/circuit_viewer/ |
| D | README_zh.md | 19 ├── OWNER # 所有者说明
|
| /arkcompiler/runtime_core/platforms/unix/libpandabase/futex/ |
| D | mutex.h | 55 // Registers `thread` as mutex's owner and locks it 59 // Unegisters `thread` as mutex's owner and unlocks it 222 // Exclusive owner.
|
| /arkcompiler/ets_runtime/test/aottest/vtable/regression_tests/fix_duplicate_gen_class_prototype/ |
| D | fix_duplicate_gen_class_prototype.ts | 17 …atly, which causes the actual class prototype in runtime is the last time created, but the owner of
|
| /arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/futex/ |
| D | mutex.h | 54 // Registers `thread` as mutex's owner and locks it 58 // Unegisters `thread` as mutex's owner and unlocks it 222 // Exclusive owner.
|
| /arkcompiler/ets_frontend/ets2panda/checker/ets/ |
| D | function.cpp | 623 if (sig->HasSignatureFlag(SignatureFlags::PUBLIC) || sig->Owner() == containingClass || in IsSignatureAccessible() 624 …(sig->HasSignatureFlag(SignatureFlags::PROTECTED) && relation->IsSupertypeOf(sig->Owner(), contain… in IsSignatureAccessible() 792 if (mostSpecificSignature->Owner() == sig->Owner()) { in FindMostSpecificSignature() 1074 if (signature->Owner()->GetDeclNode()->IsFinal() || func->IsFinal()) { in ComposeSignature() 1284 if (func->Signature()->Owner()->GetDeclNode()->IsFinal() || func->IsFinal()) { in AddSignatureFlags() 1497 …ThrowTypeError({signature->Function()->Id()->Name(), signature, " in ", signature->Owner(), " cann… in ThrowOverrideError() 1499 overriddenSignature->Owner(), " because ", reason}, in ThrowOverrideError() 1536 if (signature->Owner()->HasObjectFlag(ETSObjectFlags::INTERFACE) && in CheckOverride() 1537 Relation()->IsIdenticalTo(itSubst->Owner(), GlobalETSObjectType()) && in CheckOverride() 1552 auto *owner = signature->Owner(); in CheckOverride() local [all …]
|
| /arkcompiler/runtime_core/static_core/runtime/coroutines/ |
| D | coroutine_events.h | 29 …* The lifetime of an event is intended to be managed manually or be bound to its owner lifetime (e…
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | task_manager.md | 14 - which component is the owner of this task (`GC`, `JIT`, etc.)
|