Lines Matching refs:root
83 Json::Value root; in ParserPdpProfileJson() local
86 if (!reader->parse(rawJson.c_str(), rawJson.c_str() + contentLength, &root, &err)) { in ParserPdpProfileJson()
92 Json::Value itemRoots = root[ITEM_OPERATOR_INFOS]; in ParserPdpProfileJson()
101 void ParserUtil::ParserPdpProfileInfos(std::vector<PdpProfile> &vec, Json::Value &root) in ParserPdpProfileInfos() argument
103 for (int32_t i = 0; i < static_cast<int32_t>(root.size()); i++) { in ParserPdpProfileInfos()
104 Json::Value itemRoot = root[i]; in ParserPdpProfileInfos()
186 Json::Value root; in ParserOpKeyJson() local
189 if (!reader->parse(rawJson.c_str(), rawJson.c_str() + contentLength, &root, &err)) { in ParserOpKeyJson()
195 Json::Value itemRoots = root[ITEM_OPERATOR_ID]; in ParserOpKeyJson()
204 void ParserUtil::ParserOpKeyInfos(std::vector<OpKey> &vec, Json::Value &root) in ParserOpKeyInfos() argument
206 for (int i = 0; i < (int)root.size(); i++) { in ParserOpKeyInfos()
207 Json::Value itemRoot = root[i]; in ParserOpKeyInfos()