• Home
  • Raw
  • Download

Lines Matching refs:XmlRpcValue

19   XmlRpcValue booleanFalse(false);  in testBoolean()
20 XmlRpcValue booleanTrue(true); in testBoolean()
22 XmlRpcValue booleanFalseXml("<value><boolean>0</boolean></value>", &offset); in testBoolean()
24 XmlRpcValue booleanTrueXml("<value><boolean>1</boolean></value>", &offset); in testBoolean()
40 XmlRpcValue int0(0); in testInt()
41 XmlRpcValue int1(1); in testInt()
42 XmlRpcValue int10(10); in testInt()
43 XmlRpcValue int_1(-1); in testInt()
45 XmlRpcValue int0Xml("<value><int>0</int></value>", &offset); in testInt()
47 XmlRpcValue int9Xml("<value><i4>9</i4></value>", &offset); in testInt()
57 XmlRpcValue d(43.7); in testDouble()
59 XmlRpcValue dXml("<value><double>56.3</double></value>", &offset); in testDouble()
66 XmlRpcValue s("Now is the time <&"); in testString()
70 XmlRpcValue vscXml(csxml, &offset); in testString()
72 XmlRpcValue vssXml(ssxml, &offset); in testString()
76 XmlRpcValue fromXml(vssXml.toXml(), &offset); in testString()
82 XmlRpcValue emptyStringVal1(emptyStringXml, &offset); in testString()
83 XmlRpcValue emptyStringVal2(""); in testString()
88 XmlRpcValue blankStringVal(emptyStringXml, &offset); in testString()
97XmlRpcValue dateTime("<value><dateTime.iso8601>19040101T03:12:35</dateTime.iso8601></value>", &off… in testDateTime()
103 void testArray(XmlRpcValue const& d) in testArray()
106 XmlRpcValue a; in testArray()
126 XmlRpcValue aXml(csaXml, &offset); in testArray()
133 XmlRpcValue struct1; in testStruct()
138 XmlRpcValue a; in testStruct()
164 XmlRpcValue structXml(csStructXml, &offset); in testStruct()
167 XmlRpcValue astruct; in testStruct()
172 XmlRpcValue Event; in testStruct()
205 assert(Event[buf] == XmlRpcValue(ii)); in testStruct()