Lines Matching refs:XmlRpcValue
17 XmlRpcValue booleanFalse(false); in testBoolean()
18 XmlRpcValue booleanTrue(true); in testBoolean()
20 XmlRpcValue booleanFalseXml("<value><boolean>0</boolean></value>", &offset); in testBoolean()
22 XmlRpcValue booleanTrueXml("<value><boolean>1</boolean></value>", &offset); in testBoolean()
37 XmlRpcValue int0(0); in testInt()
38 XmlRpcValue int1(1); in testInt()
39 XmlRpcValue int10(10); in testInt()
40 XmlRpcValue int_1(-1); in testInt()
42 XmlRpcValue int0Xml("<value><int>0</int></value>", &offset); in testInt()
44 XmlRpcValue int9Xml("<value><i4>9</i4></value>", &offset); in testInt()
54 XmlRpcValue d(43.7); in testDouble()
56 XmlRpcValue dXml("<value><double>56.3</double></value>", &offset); in testDouble()
63 XmlRpcValue s("Now is the time <&"); in testString()
67 XmlRpcValue vscXml(csxml, &offset); in testString()
69 XmlRpcValue vssXml(ssxml, &offset); in testString()
73 XmlRpcValue fromXml(vssXml.toXml(), &offset); in testString()
79 XmlRpcValue emptyStringVal1(emptyStringXml, &offset); in testString()
80 XmlRpcValue emptyStringVal2(""); in testString()
85 XmlRpcValue blankStringVal(emptyStringXml, &offset); in testString()
94 …XmlRpcValue dateTime("<value><dateTime.iso8601>19040101T03:12:35</dateTime.iso8601></value>", &off… in testDateTime()
100 void testArray(XmlRpcValue const& d) in testArray()
103 XmlRpcValue a; in testArray()
123 XmlRpcValue aXml(csaXml, &offset); in testArray()
130 XmlRpcValue struct1; in testStruct()
135 XmlRpcValue a; in testStruct()
161 XmlRpcValue structXml(csStructXml, &offset); in testStruct()
164 XmlRpcValue astruct; in testStruct()
169 XmlRpcValue Event; in testStruct()
202 assert(Event[std::string(buf)] == XmlRpcValue(ii)); in testStruct()