Home
last modified time | relevance | path

Searched refs:TypeInvalid (Results 1 – 2 of 2) sorted by relevance

/external/xmlrpcpp/src/
DXmlRpcValue.h27 TypeInvalid, enumerator
46 XmlRpcValue() : _type(TypeInvalid) { _value.asBinary = 0; } in XmlRpcValue()
67 XmlRpcValue(std::string const& xml, int* offset) : _type(TypeInvalid) in XmlRpcValue()
68 { if ( ! fromXml(xml,offset)) _type = TypeInvalid; } in XmlRpcValue()
71 XmlRpcValue(XmlRpcValue const& rhs) : _type(TypeInvalid) { *this = rhs; } in XmlRpcValue()
103 bool valid() const { return _type != TypeInvalid; } in valid()
DXmlRpcValue.cpp64 _type = TypeInvalid; in invalidate()
72 if (_type == TypeInvalid) in assertTypeOrInvalid()
99 if (_type == TypeInvalid) { in assertArray()
111 if (_type == TypeInvalid) { in assertStruct()