Home
last modified time | relevance | path

Searched refs:subItem (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/services/resschedmgr/resschedfwk/src/
H A Dconfig_reader.cpp68 SubItem subItem; in ParseSubItem() local
69 ParseProperties(*currNodePtr, subItem.properties); in ParseSubItem()
70 subItem.name = reinterpret_cast<const char*>(currNodePtr->name); in ParseSubItem()
74 subItem.value = std::move(itemValue); in ParseSubItem()
77 item.subItemList.emplace_back(subItem); in ParseSubItem()
229 for (auto subItem : item.subItemList) { in DumpItem() local
230 result.append("subItemName : ").append(subItem.name).append(" "); in DumpItem()
231 for (auto subItemProPerty : subItem.properties) { in DumpItem()
234 result.append(" value :").append(subItem.value).append(" \n"); in DumpItem()
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/net_builder/src/
H A Dlnn_network_info.c449 cJSON *subItem = cJSON_GetArrayItem(subItems, j); in IsSupportApCoexist() local
451 if (!GetJsonObjectStringItem(subItem, "IF", interface, sizeof(interface))) { in IsSupportApCoexist()
457 if (!GetJsonObjectInt32Item(subItem, "MODE", (int32_t *)&mode)) { in IsSupportApCoexist()
/ohos5.0/foundation/resourceschedule/resource_schedule_service/ressched/test/unittest/src/
H A Dplugin_mgr_test.cpp62 for (auto subItem : item.subItemList) { in GetSubItemValue() local
63 if (subItem.name == "tag") { in GetSubItemValue()
64 subItemValue = subItem.value; in GetSubItemValue()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Djsi_engine.cpp176 shared_ptr<JsValue> subItem = item->GetElement(runtime, j); in GetValueAsString() local
177 std::string subItemStr = subItem->ToString(runtime); in GetValueAsString()