| /arkcompiler/ets_frontend/ets2panda/ir/ |
| D | astNode.cpp | 132 [=](AstNode *child) { in TransformChildrenRecursivelyPreorder() 143 [=](AstNode *child) { in TransformChildrenRecursivelyPostorder() 157 Iterate([=](AstNode *child) { in IterateRecursivelyPreorder() 165 Iterate([=](AstNode *child) { in IterateRecursivelyPostorder() 182 ast->Iterate([=](AstNode *child) { AnyChildHelper(found, cb, child); }); in AnyChildHelper() 188 Iterate([&found, cb](AstNode *child) { AnyChildHelper(&found, cb, child); }); in IsAnyChild() 203 ast->Iterate([&found, cb](AstNode *child) { FindChildHelper(found, cb, child); }); in FindChildHelper() 209 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_frontend/ets2panda/ast_verifier/ |
| D | helpers.h | 43 bool IsContainedIn(const T *child, const T *parent) in IsContainedIn()
|
| D | arithmeticOperationValid.cpp | 42 ast->Iterate([&result, &ctx, &isBitwise](ir::AstNode *child) { in operator ()()
|
| D | checkInfiniteLoop.cpp | 63 …[&hasExit](ir::AstNode *child) { hasExit |= child->IsBreakStatement() || child->IsReturnStatement(… in HasBreakOrReturnStatement()
|
| /arkcompiler/ets_frontend/ets2panda/linter/lib/utils/functions/ |
| D | ContainsThis.ts | 34 for (const child of tsNode.getChildren()) { constant
|
| /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 283 int child = GetLeftChildIndex(entry); in GetPreDecessor() local 298 int child = GetRightChildIndex(entry); in GetSuccessor() local 322 JSTaggedValue child = tree->GetLeftChild(parentIndex); in FindEntry() local 328 JSTaggedValue child = tree->GetRightChild(parentIndex); in FindEntry() local 437 JSTaggedValue child = newTree->GetLeftChild(parentIndex); in Insert() local 443 JSTaggedValue child = newTree->GetRightChild(parentIndex); in Insert() local
|
| D | tagged_tree.h | 160 JSTaggedValue child = GetLeftChild(entry); in GetMinimum() local 170 JSTaggedValue child = GetRightChild(entry); in GetMaximum() local 209 JSTaggedValue child = Get(index); in GetLeftChildIndex() local 219 JSTaggedValue child = Get(index); in GetRightChildIndex() local 303 JSTaggedValue child = GetRightChild(GetParent(entry)); in GetLeftBrother() local 309 JSTaggedValue child = GetLeftChild(GetParent(entry)); in GetRightBrother() local 315 JSTaggedValue child = GetLeftChild(GetParent(entry)); in IsLeft() local 321 JSTaggedValue child = GetRightChild(GetParent(entry)); in IsRight() local
|
| D | js_hclass-inl.h | 46 …nsitions(const JSThread *thread, const JSHandle<JSHClass> &parent, const JSHandle<JSHClass> &child, in AddTransitions() 79 … const JSHandle<JSHClass> &child, const JSHandle<JSTaggedValue> &key) in AddExtensionTransitions() 86 … const JSHandle<JSHClass> &child, const JSHandle<JSTaggedValue> &key, in AddProtoTransitions() 337 const JSHandle<JSHClass> &child) in UpdateRootHClass()
|
| D | tagged_dictionary.cpp | 543 bool FunctionProtoTransitionTable::TryInsertFakeParentItem(JSTaggedType child, JSTaggedType parent) in TryInsertFakeParentItem() 574 JSTaggedType FunctionProtoTransitionTable::GetFakeParent(JSTaggedType child) in GetFakeParent()
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/types/ |
| D | pgo_type_generator.h | 29 static ProfileType GenerateProfileType(JSTaggedType child, ProfileType rootType) in GenerateProfileType()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/native/escompat/ |
| D | Process.cpp | 58 static void SpawnChildProcess(EtsEnv *env, ets_object child, ets_string cmd, ets_int timeout, ets_i… in SpawnChildProcess() 114 static void ReadFinalizer(EtsEnv *env, ets_object child, bool isStdErr) in ReadFinalizer() 136 static void ReadChildProcessStdOut(EtsEnv *env, ets_object child) in ReadChildProcessStdOut() 176 static void ReadChildProcessStdErr(EtsEnv *env, ets_object child) in ReadChildProcessStdErr() 218 static void WaitChildProcess(EtsEnv *env, ets_object child) in WaitChildProcess() 245 static void KillChildProcess(EtsEnv *env, ets_object child, ets_int signal) in KillChildProcess() 267 static void CloseChildProcess(EtsEnv *env, ets_object child) in CloseChildProcess()
|
| /arkcompiler/ets_frontend/es2panda/test/parser/sendable_class/ |
| D | sendable-class-field-type.ts | 32 child: Person | null; property in Person
|
| /arkcompiler/toolchain/tooling/test/testcases/js/ |
| D | variable_second.js | 153 function customClass(a, b, child) { argument
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
| D | pgo_profiler_layout.cpp | 124 bool PGOHClassTreeDesc::DumpForChild(JSTaggedType child, ProfileType childType) in DumpForChild() 156 JSTaggedType parent, ProfileType parentType, JSTaggedType child, ProfileType childType) in UpdateForTransition()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/pgo_type/ |
| D | pgo_type_manager.cpp | 69 for (auto& child: root.second) { in GetSymbolCountFromHClassData() local 98 for (auto& child: root.second) { in GenSymbolInfo() local 143 for (auto& child: root.second) { in GenHClassInfo() local
|
| D | pgo_type_manager.h | 149 for (const auto& child: root.second) { in DumpHClassData() local
|
| /arkcompiler/ets_frontend/ets2panda/compiler/lowering/ |
| D | util.cpp | 71 node->Iterate([doNode](ir::AstNode *child) -> void { in ClearTypesVariablesAndScopes()
|
| /arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
| D | heap_sampling.cpp | 234 for (auto &child : node->children_) { in CalNodeSelfSize() 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/runtime_core/static_core/libllvmbackend/transforms/passes/ |
| D | ark_gvn.cpp | 105 for (const auto &child : tree.getNode(block)->children()) { in RunOnFunction() local
|
| /arkcompiler/ets_runtime/ecmascript/extractortool/src/ |
| D | zip_file.cpp | 270 for (const auto &child : root->children) { in GetTreeFileList() local 334 for (const auto &child : parent->children) { in GetChildNames() local
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | cg_ssa.cpp | 126 for (const auto &child : domChildren) { in RenameVariablesForBB() local
|
| D | cg_dominance.cpp | 556 BB *child = cgFunc.GetBBFromID(childId); in GeneratePdomTreeDot() local
|
| /arkcompiler/ets_frontend/es2panda/util/ |
| D | helpers.cpp | 602 bool Helpers::IsChild(const ir::AstNode *parent, const ir::AstNode *child) in IsChild() 615 bool Helpers::IsChildScope(const binder::Scope *parent, const binder::Scope *child) in IsChildScope()
|