Lines Matching refs:update
89 bool update = false;
92 if (!ParseRefString(data, update)) {
96 if (!update) {
100 if (!ParseRefResourceItemData(resourceItem, data, update)) {
103 if (!update) {
107 if (update && !resourceItem.SetData(reinterpret_cast<const int8_t *>(data.c_str()), data.length())) {
146 uint32_t ReferenceParser::ParseRefInString(string &value, bool &update) const
148 if (ParseRefString(value, update)) {
183 bool ReferenceParser::ParseRefResourceItemData(const ResourceItem &resourceItem, string &data, bool &update) const
199 update = (update || flag);
202 if (!update) {
266 bool update = false;
267 return ParseRefString(key, update);
270 bool ReferenceParser::ParseRefString(std::string &key, bool &update) const
272 update = false;
274 update = true;
277 update = true;
323 bool update = false;
324 if (!ParseRefString(value, update)) {
327 if (update) {
328 needSave = update;