/developtools/global_resource_tool/src/ |
H A D | resource_append.cpp | 87 for (const auto &child : entry.GetChilds()) { in Combine() 88 if (!child->IsFile()) { in Combine() 89 cerr << "Error:" << child->GetFilePath().GetPath() << " not file" << endl; in Combine() 92 if (child->GetFilePath().GetFilename() == ID_DEFINED_FILE) { in Combine() 95 if (!LoadResourceItem(child->GetFilePath().GetPath())) { in Combine() 144 for (const auto &child : entry.GetChilds()) { in ScanSubResources() 145 if (!ResourceUtil::IslegalPath(child->GetFilePath().GetFilename())) { in ScanSubResources() 148 if (!ScanIegalResources(child->GetFilePath().GetPath(), outputPath)) { in ScanSubResources() 165 for (const auto &child : entry.GetChilds()) { in ScanSubLimitkeyResources() 166 string limitKey = child in ScanSubLimitkeyResources() [all...] |
H A D | config_parser.cpp | 249 for (cJSON *ability = abilities->child; ability; ability = ability->next) { in ParseAbilities() 306 for (cJSON *skill = skills->child; skill; skill = skill->next) { in IsMainAbility() 322 for (cJSON *action = actions->child; action; action = action->next) { in IsHomeAction() 340 cJSON *arrayItem = node->child; in ParseRefImpl() 348 cJSON *child = node->child; in ParseRefImpl() local 349 while (child) { in ParseRefImpl() 350 if (!ParseRefImpl(node, child->string, child)) { in ParseRefImpl() 353 child in ParseRefImpl() [all...] |
H A D | resconfig_parser.cpp | 46 for (cJSON *item = root_->child; item; item = item->next) { in Init() 117 for (cJSON *item = node->child; item; item = item->next) { in GetArray()
|
H A D | translatable_parser.cpp | 51 for (cJSON *item = arrayNode->child; item; item = item->next) { in ParseTranslatable()
|
H A D | json_compiler.cpp | 63 cJSON *item = root_->child; in CompileSingleFile() 118 for (cJSON *item = arrayNode->child; item; item = item->next) { in ParseJsonArrayLevel() 423 for (cJSON *item = arrayNode->child; item; item = item->next) {
|
H A D | compression_parser.cpp | 203 for (cJSON *item = filtersNode->child; item; item = item->next) { in ParseFilters() 256 for (cJSON *item = rulesNode->child; item; item = item->next) { in ParseRules() 280 for (cJSON *item = pathNode->child; item; item = item->next) { in ParsePath()
|
H A D | reference_parser.cpp | 316 for (cJSON *item = node->child; item; item = item->next) { in ParseRefJsonImpl()
|
H A D | id_defined_parser.cpp | 138 for (cJSON *item = record->child; item; item = item->next) {
in IdDefinedToResourceIds()
|
/developtools/ace_js2bundle/ace-loader/plugin/templater/ |
H A D | index.js | 262 const children = node.childNodes.filter((child) => { 264 (child.nodeName === '#text' && child.value.trim()) || 265 !REGEXP_TEXT.test(child.nodeName) 270 const child = children[i] 275 if (!REGEXP_TEXT.test(child.nodeName)) { 279 generate(child, filePath, preNode, relativePath) 282 line: child.sourceCodeLocation.startLine, 283 col: child.sourceCodeLocation.endLine, 286 componentValidator.validateAttr(filePath, 'content', child [all...] |
/developtools/hdc/hdc_rust/src/daemon_lib/ |
H A D | shell.rs | 92 pub child: Arc<Mutex<Child>>, 96 fn new(pty: Pty, child: Arc<Mutex<Child>>) -> Self { in new() 99 child, in new() 129 let child = match cmd { in init_pty_process() 161 Arc::new(Mutex::new(child)), in init_pty_process() 188 PtyChildProcessMap::put(session_id, channel_id, pty_process.child.clone()).await; 255 let mut child_lock = pty_process.child.lock().await; 270 let mut child_lock = pty_process.child.lock().await; 273 crate::debug!("subprocess_task kill child(session_id {session_id}, channel_id {channel_id}), result:{:?}", kill_result); 278 "subprocess_task waiting child exi 431 let mut child = pty_child.lock().await; global() variables [all...] |
/developtools/ace_js2bundle/ace-loader/src/lite/ |
H A D | lite-customize.js | 69 const child = children[j]; 71 child != 'attrs',
|
/developtools/hiperf/src/ |
H A D | report_json_file.cpp | 134 std::map<int, ReportCallNodeItem> *child = &callNode.childrenMap; in AddReportCallStack() local 141 ReportCallNodeItem &grandchildren = GetOrCreateMapItem(*child, funcId); in AddReportCallStack() 152 child = &grandchildren.childrenMap; in AddReportCallStack() 154 HLOGV("add child %*s %d-%d %s @%d %s", static_cast<int>(it - frames.begin()), "", libId, in AddReportCallStack() 157 HLOGV("add child failed at %s", it->ToSymbolString().c_str()); in AddReportCallStack() 166 std::map<int, ReportCallNodeItem> *child = &callNode.childrenMap; in AddReportCallStackReverse() local 173 ReportCallNodeItem &grandchildren = GetOrCreateMapItem(*child, funcId); in AddReportCallStackReverse() 183 child = &grandchildren.childrenMap; in AddReportCallStackReverse() 185 HLOGV("add child %*s %d-%d %s @%d %s", static_cast<int>(it - frames.rbegin()), "", in AddReportCallStackReverse() 189 HLOGV("add child faile in AddReportCallStackReverse() [all...] |
/developtools/smartperf_host/trace_streamer/src/parser/pbreader_parser/arkts/ |
H A D | pbreader_js_cpu_profiler_parser.cpp | 52 int child = j["children"][i]; in from_json() local 53 nodes_.emplace(child, node.id); in from_json() 54 auto children = std::to_string(child); in from_json()
|
/developtools/hiperf/test/unittest/common/native/ |
H A D | report_test.cpp | 637 ReportItemCallFrame &child = in HWTEST_F() local 639 ReportItemCallFrame &child2 = child.childs.emplace_back("funcB", 0x1234, "dso", 100, 0); in HWTEST_F() 644 ReportItemCallFrame &child = in HWTEST_F() local 646 child.childs.emplace_back("funcB", 0x1234, "dso", 100, 0); in HWTEST_F() 649 ReportItemCallFrame &child = in HWTEST_F() local 651 child.childs.emplace_back("funcC", 0x1234, "dso", 100, 0); in HWTEST_F()
|
/developtools/ace_js2bundle/ace-loader/src/ |
H A D | genAbc-plugin.js | 587 const child = childProcess.exec(genAbcCmd); 588 child.on('exit', (code) => { 599 child.on('error', (err) => { 604 child.stderr.on('data', (data) => {
|
/developtools/packing_tool/adapter/ohos/ |
H A D | Compressor.java | 3425 for (File child : children) { in deleteDirectory() 3426 deleteDirectory(child); in deleteDirectory()
|
/developtools/profiler/hiebpf/include/ |
H A D | vmlinux.h | 3896 struct ctl_table *child; member 6175 struct device_node *child; member 7416 uint16_t child; member 13042 struct resource *child; member 22706 struct sched_domain *child; member 32504 struct lpm_trie_node *child[2]; member 50667 uint64_t child; global() member 57150 struct dst_entry *child; global() member 59328 struct crypto_aead *child; global() member 59744 struct crypto_akcipher *child; global() member 59900 struct crypto_skcipher *child; global() member 59918 struct crypto_skcipher *child; global() member 59940 struct crypto_skcipher *child; global() member 59974 struct crypto_aead *child; global() member 59997 struct crypto_aead *child; global() member 92443 struct device child; global() member 97177 struct acpi_namespace_node *child; global() member 97804 union acpi_parse_object *child; global() member 104271 struct rockchip_clk_branch *child; global() member 116935 struct generic_pm_domain *child; global() member 131718 struct usb_device *child; global() member [all...] |