Home
last modified time | relevance | path

Searched defs:found (Results 1 – 25 of 92) sorted by relevance

1234

/arkcompiler/ets_frontend/ets2panda/ir/
DastNode.cpp72 void AnyChildHelper(bool *found, const NodePredicate &cb, AstNode *ast) in AnyChildHelper()
88 bool found = false; in IsAnyChild() local
93 void FindChildHelper(AstNode *&found, const NodePredicate &cb, AstNode *ast) in FindChildHelper()
109 AstNode *found = nullptr; in FindChild() local
/arkcompiler/ets_frontend/ets2panda/checker/types/ts/
DobjectType.cpp70 varbinder::LocalVariable *found = otherObj->Desc()->FindProperty(it->Name()); in Identical() local
120 varbinder::LocalVariable *found = source->GetProperty(it->Name(), true); in AssignProperties() local
205 auto *found = GetProperty(it->Name(), true); in CheckExcessProperties() local
/arkcompiler/ets_frontend/es2panda/typescript/types/
DobjectType.cpp71 binder::LocalVariable *found = otherObj->Desc()->FindProperty(it->Name()); in Identical() local
121 binder::LocalVariable *found = source->GetProperty(it->Name(), true); in AssignProperties() local
205 auto *found = GetProperty(it->Name(), true); in checkExcessProperties() local
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/escompat/array_js_suites/
Dtest_find.js38 let found = arr.find(fnTrue); variable
Dtest_find_index.js33 let found = arr.findIndex(fnTrue); variable
/arkcompiler/ets_frontend/ets2panda/varbinder/
Dscope.cpp645 auto found = typeAliasScope_->Bindings().find(name); in FindLocal() local
652 auto found = instanceFieldScope_->Bindings().find(name); in FindLocal() local
659 auto found = staticFieldScope_->Bindings().find(name); in FindLocal() local
666 auto found = instanceDeclScope_->Bindings().find(name); in FindLocal() local
673 auto found = staticDeclScope_->Bindings().find(name); in FindLocal() local
680 auto found = instanceMethodScope_->Bindings().find(name); in FindLocal() local
687 auto found = staticMethodScope_->Bindings().find(name); in FindLocal() local
/arkcompiler/ets_runtime/test/moduletest/arrayfind/
Darrayfind.js18 const found = array1.find((element) => element > 10); constant
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsOptionalType.cpp43 auto found = checker->NodeCache().find(this); in GetType() local
DtsParenthesizedType.cpp43 auto found = checker->NodeCache().find(this); in GetType() local
DtsLiteralType.cpp43 auto found = checker->NodeCache().find(this); in GetType() local
DtsRestType.cpp43 auto found = checker->NodeCache().find(this); in GetType() local
DtsTypeQuery.cpp43 auto found = checker->NodeCache().find(this); in GetType() local
DtsTypeReference.cpp56 auto found = checker->NodeCache().find(this); in GetType() local
DtsIndexSignature.cpp50 auto found = checker->NodeCache().find(this); in Check() local
DtsIndexedAccessType.cpp63 auto found = checker->NodeCache().find(this); in GetType() local
DtsTypeLiteral.cpp56 auto found = checker->NodeCache().find(this); in GetType() local
DtsUnionType.cpp49 auto found = checker->NodeCache().find(this); in GetType() local
DtsSignatureDeclaration.cpp57 auto found = checker->NodeCache().find(this); in Check() local
/arkcompiler/ets_runtime/ecmascript/
Djs_file_path.cpp64 auto found = jsPandaFileDesc.find(JSPandaFile::BUNDLE_INSTALL_PATH); in GetHapName() local
Djs_proxy.cpp321 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in GetOwnProperty() local
415 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in DefineOwnProperty() local
498 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in HasProperty() local
560 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in GetProperty() local
636 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in SetProperty() local
696 bool found = JSTaggedValue::GetOwnProperty(thread, targetHandle, key, targetDesc); in DeleteProperty() local
/arkcompiler/ets_frontend/es2panda/typescript/core/
Dobject.cpp293 auto found = type->CachedSyntheticPropertis().find(name); in GetPropertyOfUnionType() local
353 auto found = nodeCache_.find(key); in CheckComputedPropertyName() local
536 binder::Variable *found = type->GetProperty(prop->Name(), false); in ValidateInterfaceMemberRedeclaration() local
/arkcompiler/runtime_core/static_core/runtime/tests/
Dintrusive_gc_test_api_test.cpp68 bool found = false; in TEST_P() local
/arkcompiler/runtime_core/static_core/libpandabase/os/
Dfilesystem.cpp54 size_t found = filepath.find_last_of("/\\"); in GetParentDir() local
/arkcompiler/ets_frontend/es2panda/ir/statements/
DvariableDeclarator.cpp121 auto found = checker->NodeCache().find(this); in Check() local
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/
DetsObjectType.cpp138 auto const addSignature = [funcType, flags](varbinder::LocalVariable *found) -> void { in CollectSignaturesForSyntheticType()
155 if (auto *found = GetOwnProperty<PropertyType::STATIC_METHOD>(name); found != nullptr) { in CollectSignaturesForSyntheticType() local
167 if (auto *found = GetOwnProperty<PropertyType::INSTANCE_METHOD>(name); found != nullptr) { in CollectSignaturesForSyntheticType() local
433 auto found = properties_[static_cast<size_t>(PropertyType::INSTANCE_METHOD)].find("invoke"); in AssignmentTarget() local

1234