Lines Matching defs:node
54 bool Serializable::GetValue(cJSON *node, const std::string &name, std::string &value) in GetValue()
65 bool Serializable::GetValue(cJSON *node, const std::string &name, int32_t &value) in GetValue()
76 bool Serializable::GetValue(cJSON *node, const std::string &name, uint32_t &value) in GetValue()
92 bool Serializable::GetValue(cJSON *node, const std::string &name, bool &value) in GetValue()
103 bool Serializable::GetValue(cJSON *node, const std::string &name, Serializable &value) in GetValue()
113 bool Serializable::GetValue(cJSON *node, const std::string &name, std::vector<std::vector<std::stri… in GetValue()
140 bool Serializable::SetValue(cJSON *node, const std::string &name, const std::string &value) in SetValue()
146 bool Serializable::SetValue(cJSON *node, const std::string &name, const int32_t &value) in SetValue()
152 bool Serializable::SetValue(cJSON *node, const std::string &name, const bool &value) in SetValue()
158 bool Serializable::SetValue(cJSON *node, const std::string &name, const Serializable &value) in SetValue()
175 bool Serializable::SetValue(cJSON *node, const std::string &name, const std::vector<std::string> &v… in SetValue()
198 bool Serializable::SetValue(cJSON *node, const std::string &name, const std::vector<std::vector<std… in SetValue()
230 cJSON *Serializable::GetSubNode(cJSON *node, const std::string &name) in GetSubNode()