Home
last modified time | relevance | path

Searched refs:children (Results 1 - 19 of 19) sorted by relevance

/arkcompiler/ets_runtime/tools/ap_file_viewer/src/ap/component/sheet/
H A DTabPaneApSummary.js131 if (item.children.length > 0) {
132 this.refreshSelectDepth(item.children);
171 if (rowNode.children && this.expandedNodeList.has(rowNode.id)) {
172 this.createRowNodeTableEL(rowNode.children, tableTreeEl, tableRightDivs);
181 if (rowNode.children && rowNode.children.length > 0) {
248 children: [],
258 let moduleNode = root.children.find((node) => node.apName === item.moduleName);
266 id: id, depth: 3, children: [], apName: item.type, type: '',
273 offsetNode.children
[all...]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/reports/
H A Dspec_node.py28 self.children: List[SpecNode] = []
30 parent.children.append(self)
32 # Counters with recursive accumulation from children:
82 if len(self.children) > 0:
83 ret['subsections'] = self.children
H A Dspec_report.py135 self.__report_nodes(self.spec.children, lines)
168 for _ in range(len(node.children), num):
170 node = node.children[num - 1]
223 self.__report_nodes(node.children, lines)
/arkcompiler/ets_runtime/ecmascript/extractortool/src/
H A Dzip_file.cpp144 auto it = parent->children.find(nodeName); in AddEntryToTree()
145 if (it != parent->children.end()) { in AddEntryToTree()
149 parent->children.emplace(nodeName, node); in AddEntryToTree()
219 dirRoot_->children.clear(); in Close()
253 auto it = parent->children.find(nodeName); in IsDirExist()
254 if (it == parent->children.end()) { in IsDirExist()
267 if (root->children.empty()) { in GetTreeFileList()
270 for (const auto &child : root->children) { in GetTreeFileList()
298 auto it = parent->children.find(nodeName); in GetAllFileList()
299 if (it == parent->children in GetAllFileList()
[all...]
H A Dzip_file.h158 std::unordered_map<std::string, std::shared_ptr<DirTreeNode>> children; member
/arkcompiler/toolchain/tooling/client/manager/
H A Dvariable_manager.cpp26 children.push_back(std::make_unique<TreeNode>(std::move(descriptor))); in AddChild()
31 children.push_back(std::make_unique<TreeNode>(std::move(descriptorMap))); in AddChild()
36 children.push_back(std::move(child)); in AddChild()
77 for (const auto &child : children) { in Print()
91 root_->children.push_back(std::make_unique<TreeNode>(childData)); in Tree()
103 for (const auto& child : root_->children) { in PrintRootAndImmediateChildren()
181 for (const auto& child : node->children) { in FindNodeWithObjectIdRecursive()
206 for (const auto &child : node->children) { in FindNodeWithInnerKeyZero()
245 for (const auto& child : node->children) { in FindObjectByIndexRecursive()
H A Dvariable_manager.h39 std::vector<std::unique_ptr<TreeNode>> children; member in OHOS::ArkCompiler::Toolchain::TreeNode
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/
H A Dsamples_record.cpp63 profileInfo_->nodes[0].children.push_back(methodNode.id); in NodeInit()
70 profileInfo_->nodes[0].children.push_back(methodNode.id); in NodeInit()
97 profileInfo_->nodes[methodNode.parentId - 1].children.push_back(id); in AddSample()
198 + std::to_string(node.hitCount) + ",\"children\":["; in StringifyNodes()
199 CVector<int> children = node.children; in StringifyNodes() local
200 size_t childrenCount = children.size(); in StringifyNodes()
202 sampleData_ += std::to_string(children[j]) + ","; in StringifyNodes()
H A Dsamples_record.h55 CVector<int> children; member
/arkcompiler/ets_runtime/ecmascript/dfx/tracing/
H A Dtracing.cpp210 args += "\"children\":["; in TraceEventUpdateCpuProfiler()
211 for (auto &it : nodeInfo.children) { in TraceEventUpdateCpuProfiler()
214 if (nodeInfo.children.size() != 0) { in TraceEventUpdateCpuProfiler()
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/
H A Dark_gvn.cpp105 for (const auto &child : tree.getNode(block)->children()) { in RunOnFunction()
/arkcompiler/runtime_core/static_core/tests/cts-generator/
H A Dtest-runner.rb307 FileUtils.rm_rf $tmp_dir if File.exist?($tmp_dir) && Dir.children($tmp_dir).empty?
/arkcompiler/runtime_core/tests/cts-generator/
H A Dtest-runner.rb307 FileUtils.rm_rf $tmp_dir if File.exist?($tmp_dir) && Dir.children($tmp_dir).empty?
/arkcompiler/toolchain/tooling/test/
H A Ddebugger_types_test.cpp1776 "children":[]
1791 const std::vector<std::unique_ptr<SamplingHeapProfileNode>> *children = object->GetChildren();
1792 ASSERT_NE(children, nullptr);
1793 EXPECT_EQ((int)children->size(), 0);
1810 "children":[]
1838 ret = json->GetArray("children", &tmpJson);
1875 "children":[]
1895 const std::vector<std::unique_ptr<SamplingHeapProfileNode>> *children = head->GetChildren();
1896 ASSERT_NE(children, nullptr);
1897 EXPECT_EQ((int)children
[all...]
H A Dpt_types_test.cpp640 ptJson->Add("children", array); in HWTEST_F_L0()
697 std::vector<int32_t> children {0, 1, 2, 3}; // 1: element 2:element, 3:element in HWTEST_F_L0()
704 node.SetChildren(children); in HWTEST_F_L0()
719 cpuProfileNode.children.push_back(0); in HWTEST_F_L0()
720 cpuProfileNode.children.push_back(1); // 1: element in HWTEST_F_L0()
814 ptJson->Add("children", attribute.c_str()); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/base/
H A Dpt_types.cpp2271 std::unique_ptr<PtJson> children; in Create() local
2272 ret = params.GetArray("children", &children); in Create()
2274 int32_t len = children->GetSize(); in Create()
2276 std::unique_ptr<PtJson> arrayEle = children->Get(i); in Create()
2280 error += "'children' format invalid;"; in Create()
2286 error += "Unknown or wrong type of 'children';"; in Create()
2311 result->Add("children", childrens); in ToJson()
2491 std::unique_ptr<PtJson> children; in Create() local
2492 ret = params.GetArray("children", in Create()
[all...]
H A Dpt_types.h1932 SamplingHeapProfileNode &SetChildren(std::vector<std::unique_ptr<SamplingHeapProfileNode>> children) in SetChildren() argument
1934 children_ = std::move(children); in SetChildren()
2088 ProfileNode &SetChildren(std::vector<int32_t> children) in SetChildren() argument
2090 children_ = std::move(children); in SetChildren()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins.cpp3848 JSHandle<JSTaggedValue> children(factory_->NewEmptyJSObject()); in InitializeCjsModule()
3859 SetNonConstantObject(cjsModulePrototype, "children", children); in InitializeCjsModule()
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
H A Dcocos_worker_test.js687 let t = this.node.children;
694 t = this.bulletRoot.children;
5241 this.children = [];
5640 this.children = [];
9102 1635: "reorderChild: this child is not in children list.",
9135 3510: "%s's scene graph node not contains in the parent's children",
[all...]

Completed in 56 milliseconds