/arkcompiler/ets_frontend/ets2panda/ir/ |
D | astNode.cpp | 58 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/ |
D | variable_manager.cpp | 34 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/ |
D | tagged_tree.cpp | 154 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
|
D | tagged_tree.h | 204 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
|
D | js_hclass-inl.h | 33 …nsitions(const JSThread *thread, const JSHandle<JSHClass> &parent, const JSHandle<JSHClass> &child, in AddTransitions() 62 … const JSHandle<JSHClass> &child, const JSHandle<JSTaggedValue> &key) in AddExtensionTransitions() 69 … const JSHandle<JSHClass> &child, const JSHandle<JSTaggedValue> &key, in AddProtoTransitions() 279 const JSHandle<JSHClass> &child) in UpdateRootHClass()
|
/arkcompiler/ets_frontend/ets2panda/linter/src/ |
D | Autofixer.ts | 185 const child = children[i]; constant
|
D | TypeScriptLinter.ts | 1807 for (let child of node.getChildren()) { variable
|
/arkcompiler/ets_frontend/ets2panda/linter-4.2/src/ |
D | Autofixer.ts | 179 const child = children[i]; constant
|
D | TypeScriptLinter.ts | 2135 for (let child of node.getChildren()) { variable
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
D | pgo_profiler_layout.cpp | 93 bool PGOHClassTreeDesc::DumpForChild(JSTaggedType child, ProfileType childType) in DumpForChild() 131 JSTaggedType parent, ProfileType parentType, JSTaggedType child, ProfileType childType) in UpdateForTransition()
|
D | pgo_profiler.cpp | 1252 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()
|
D | pgo_profiler_info.cpp | 651 …ProfileType rootType, JSTaggedType parent, ProfileType parentType, JSTaggedType child, ProfileType… in UpdateTransitionLayout()
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
D | ASTVerifier.cpp | 94 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/ |
D | heap_sampling.cpp | 234 for (auto &child : node->children_) { in CalNodeSelfSize() local
|
D | heap_snapshot.cpp | 792 TraceNode* child = FindChild(nodeIndex); in FindOrAddChild() local
|
/arkcompiler/ets_runtime/test/moduletest/stubbuilder/ |
D | stubbuilder.js | 151 const child = new Parent('echo', 26); constant 802 var child = new Child(); variable
|
/arkcompiler/ets_runtime/ecmascript/extractortool/src/ |
D | zip_file.cpp | 274 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/ |
D | cg_ssa.cpp | 121 for (const auto &child : domChildren) { in RenameVariablesForBB() local
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/types/ |
D | pgo_profile_type.h | 500 TraProfileType(ProfileType root, ProfileType child) : root_(root), child_(child) {} in TraProfileType()
|
/arkcompiler/ets_frontend/es2panda/util/ |
D | helpers.cpp | 582 bool Helpers::IsChild(const ir::AstNode *parent, const ir::AstNode *child) in IsChild()
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | jshelpers.js | 246 function setParent(child, parent) { argument
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
D | reg_alloc_lsra.h | 376 void SetLiParentChild(LiveInterval *child) const in SetLiParentChild()
|
/arkcompiler/ets_frontend/ets2panda/checker/ets/ |
D | object.cpp | 536 for (auto *child : childrenSet) { in HasETSFunctionType() local
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | tagged_tree_test.cpp | 123 int child = index; in CheckBlackNodeNumbers() local
|
/arkcompiler/ets_frontend/ets2panda/public/ |
D | es2panda_lib.cpp | 838 …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()
|