Searched refs:subItem (Results 1 – 4 of 4) sorted by relevance
68 SubItem subItem; in ParseSubItem() local69 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() local230 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()
449 cJSON *subItem = cJSON_GetArrayItem(subItems, j); in IsSupportApCoexist() local451 if (!GetJsonObjectStringItem(subItem, "IF", interface, sizeof(interface))) { in IsSupportApCoexist()457 if (!GetJsonObjectInt32Item(subItem, "MODE", (int32_t *)&mode)) { in IsSupportApCoexist()
62 for (auto subItem : item.subItemList) { in GetSubItemValue() local63 if (subItem.name == "tag") { in GetSubItemValue()64 subItemValue = subItem.value; in GetSubItemValue()
176 shared_ptr<JsValue> subItem = item->GetElement(runtime, j); in GetValueAsString() local177 std::string subItemStr = subItem->ToString(runtime); in GetValueAsString()