Lines Matching refs:deserialize
166 inline bool deserialize(Object* object, NodeType* root) { in deserialize() function
167 bool ret = deserialize(object, root, &mLastError); in deserialize()
170 inline bool deserialize(Object* o, const std::string& xml) override { in deserialize() function
174 inline bool deserialize(Object* object, NodeType* root, std::string* error) const { in deserialize() function
189 bool ret = deserialize(o, getRootChild(doc), error); in operator ()()
199 inline bool operator()(Object* o, NodeType* node) { return deserialize(o, node); } in operator ()()
201 return deserialize(o, xml); in operator ()()
320 return conv.deserialize(t, child, error); in parseChild()
331 return conv.deserialize(t, child, error); in parseOptionalChild()
343 return conv.deserialize(&**t, child, error); in parseOptionalChild()
352 if (!conv.deserialize(&v->at(i), nodes[i], error)) { in parseChildren()