Home
last modified time | relevance | path

Searched defs:child (Results 1 – 25 of 28) sorted by relevance

12

/arkcompiler/ets_frontend/ets2panda/ir/
DastNode.cpp58 TransformChildren([=](AstNode *child) { in TransformChildrenRecursively()
66 Iterate([=](AstNode *child) { in IterateRecursively()
83 ast->Iterate([=](AstNode *child) { AnyChildHelper(found, cb, child); }); in AnyChildHelper()
89 Iterate([&found, cb](AstNode *child) { AnyChildHelper(&found, cb, child); }); in IsAnyChild()
104 ast->Iterate([&found, cb](AstNode *child) { FindChildHelper(found, cb, child); }); in FindChildHelper()
110 Iterate([&found, cb](AstNode *child) { FindChildHelper(found, cb, child); }); in FindChild()
/arkcompiler/toolchain/tooling/client/manager/
Dvariable_manager.cpp34 void TreeNode::AddChild(std::unique_ptr<TreeNode> child) in AddChild()
77 for (const auto &child : children) { in Print() local
103 for (const auto& child : root_->children) { in PrintRootAndImmediateChildren() local
181 for (const auto& child : node->children) { in FindNodeWithObjectIdRecursive() local
206 for (const auto &child : node->children) { in FindNodeWithInnerKeyZero() local
245 for (const auto& child : node->children) { in FindObjectByIndexRecursive() local
/arkcompiler/ets_runtime/ecmascript/
Dtagged_tree.cpp154 int child = 1; in AdjustTaggedTree() local
183 JSTaggedValue child = src < 0 ? JSTaggedValue::Hole() : JSTaggedValue(src); in Transplant() local
186 JSTaggedValue child = src < 0 ? JSTaggedValue::Hole() : JSTaggedValue(src); in Transplant() local
202 int child = left.IsHole() ? (right.IsHole() ? -1 : right.GetInt()) : left.GetInt(); in Remove() local
282 int child = GetLeftChildIndex(entry); in GetPreDecessor() local
297 int child = GetRightChildIndex(entry); in GetSuccessor() local
321 JSTaggedValue child = tree->GetLeftChild(parentIndex); in FindEntry() local
327 JSTaggedValue child = tree->GetRightChild(parentIndex); in FindEntry() local
381 JSTaggedValue child = newTree->GetLeftChild(parentIndex); in Insert() local
387 JSTaggedValue child = newTree->GetRightChild(parentIndex); in Insert() local
Dtagged_tree.h204 JSTaggedValue child = GetLeftChild(entry); in GetMinimum() local
214 JSTaggedValue child = GetRightChild(entry); in GetMaximum() local
253 JSTaggedValue child = Get(index); in GetLeftChildIndex() local
263 JSTaggedValue child = Get(index); in GetRightChildIndex() local
347 JSTaggedValue child = GetRightChild(GetParent(entry)); in GetLeftBrother() local
353 JSTaggedValue child = GetLeftChild(GetParent(entry)); in GetRightBrother() local
359 JSTaggedValue child = GetLeftChild(GetParent(entry)); in IsLeft() local
365 JSTaggedValue child = GetRightChild(GetParent(entry)); in IsRight() local
Djs_hclass-inl.h33 …nsitions(const JSThread *thread, const JSHandle<JSHClass> &parent, const JSHandle<JSHClass> &child, in AddTransitions()
62const JSHandle<JSHClass> &child, const JSHandle<JSTaggedValue> &key) in AddExtensionTransitions()
69const JSHandle<JSHClass> &child, const JSHandle<JSTaggedValue> &key, in AddProtoTransitions()
279 const JSHandle<JSHClass> &child) in UpdateRootHClass()
/arkcompiler/ets_frontend/ets2panda/linter/src/
DAutofixer.ts185 const child = children[i]; constant
DTypeScriptLinter.ts1807 for (let child of node.getChildren()) { variable
/arkcompiler/ets_frontend/ets2panda/linter-4.2/src/
DAutofixer.ts179 const child = children[i]; constant
DTypeScriptLinter.ts2135 for (let child of node.getChildren()) { variable
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_layout.cpp93 bool PGOHClassTreeDesc::DumpForChild(JSTaggedType child, ProfileType childType) in DumpForChild()
131 JSTaggedType parent, ProfileType parentType, JSTaggedType child, ProfileType childType) in UpdateForTransition()
Dpgo_profiler.cpp1252 void PGOProfiler::UpdateTranstionLayout(JSHClass *parent, JSHClass *child) in UpdateTranstionLayout()
1407 void PGOProfiler::InsertProfileType(JSTaggedType root, JSTaggedType child, ProfileType traceType) in InsertProfileType()
1424 ProfileType PGOProfiler::GetProfileType(JSTaggedType root, JSTaggedType child) in GetProfileType()
1434 ProfileType PGOProfiler::GetOrInsertProfileType(JSTaggedType root, JSTaggedType child) in GetOrInsertProfileType()
Dpgo_profiler_info.cpp651 …ProfileType rootType, JSTaggedType parent, ProfileType parentType, JSTaggedType child, ProfileType… in UpdateTransitionLayout()
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DASTVerifier.cpp94 static bool IsContainedIn(const T *child, const T *parent) in IsContainedIn()
493 body->IterateRecursively([&hasExit](ir::AstNode *child) { in operator ()()
678 ast->Iterate([&result](ir::AstNode *child) { in operator ()()
698 aux = [&ctx, &func, &aux, &result](const ir::AstNode *child) -> void { in RecursiveInvariant()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_sampling.cpp234 for (auto &child : node->children_) { in CalNodeSelfSize() local
Dheap_snapshot.cpp792 TraceNode* child = FindChild(nodeIndex); in FindOrAddChild() local
/arkcompiler/ets_runtime/test/moduletest/stubbuilder/
Dstubbuilder.js151 const child = new Parent('echo', 26); constant
802 var child = new Child(); variable
/arkcompiler/ets_runtime/ecmascript/extractortool/src/
Dzip_file.cpp274 for (const auto &child : root->children) { in GetTreeFileList() local
337 for (const auto &child : parent->children) { in GetChildNames() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dcg_ssa.cpp121 for (const auto &child : domChildren) { in RenameVariablesForBB() local
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/types/
Dpgo_profile_type.h500 TraProfileType(ProfileType root, ProfileType child) : root_(root), child_(child) {} in TraProfileType()
/arkcompiler/ets_frontend/es2panda/util/
Dhelpers.cpp582 bool Helpers::IsChild(const ir::AstNode *parent, const ir::AstNode *child) in IsChild()
/arkcompiler/ets_frontend/ts2panda/src/
Djshelpers.js246 function setParent(child, parent) { argument
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dreg_alloc_lsra.h376 void SetLiParentChild(LiveInterval *child) const in SetLiParentChild()
/arkcompiler/ets_frontend/ets2panda/checker/ets/
Dobject.cpp536 for (auto *child : childrenSet) { in HasETSFunctionType() local
/arkcompiler/ets_runtime/ecmascript/tests/
Dtagged_tree_test.cpp123 int child = index; in CheckBlackNodeNumbers() local
/arkcompiler/ets_frontend/ets2panda/public/
Des2panda_lib.cpp838 …node->IterateRecursively([=](ir::AstNode *child) { func(reinterpret_cast<es2panda_AstNode *>(child… in AstNodeForEach()
1150 …ern "C" es2panda_AstNode *CreateChainExpression(es2panda_Context *context, es2panda_AstNode *child) in CreateChainExpression()

12