Searched refs:nextTagIs (Results 1 – 7 of 7) sorted by relevance
/external/xmlrpcpp/test/ |
D | FileClient.cpp | 90 while (XmlRpcUtil::nextTagIs(PARAM_TAG, xml, &offset)) { in parseRequest() 99 (void) XmlRpcUtil::nextTagIs(PARAM_ETAG, xml, &offset); in parseRequest() 104 (void) XmlRpcUtil::nextTagIs(PARAMS_ETAG, xml, &offset); in parseRequest()
|
/external/xmlrpcpp/ |
D | xmlrpc++_0.7.patch | 41 if ((XmlRpcUtil::nextTagIs(PARAMS_TAG,_response,&offset) && 42 XmlRpcUtil::nextTagIs(PARAM_TAG,_response,&offset)) || 43 - XmlRpcUtil::nextTagIs(FAULT_TAG,_response,&offset) && (_isFault = true)) 44 + (XmlRpcUtil::nextTagIs(FAULT_TAG,_response,&offset) && (_isFault = true)))
|
/external/xmlrpcpp/src/ |
D | XmlRpcClient.cpp | 395 if ((XmlRpcUtil::nextTagIs(PARAMS_TAG,_response,&offset) && in parseResponse() 396 XmlRpcUtil::nextTagIs(PARAM_TAG,_response,&offset)) || in parseResponse() 397 (XmlRpcUtil::nextTagIs(FAULT_TAG,_response,&offset) && (_isFault = true))) in parseResponse()
|
D | XmlRpcServerConnection.cpp | 242 while (XmlRpcUtil::nextTagIs(PARAM_TAG, _request, &offset)) { in parseRequest() 244 (void) XmlRpcUtil::nextTagIs(PARAM_ETAG, _request, &offset); in parseRequest() 247 (void) XmlRpcUtil::nextTagIs(PARAMS_ETAG, _request, &offset); in parseRequest()
|
D | XmlRpcValue.cpp | 220 if ( ! XmlRpcUtil::nextTagIs(VALUE_TAG, valueXml, offset)) in fromXml() 480 if ( ! XmlRpcUtil::nextTagIs(DATA_TAG, valueXml, offset)) in arrayFromXml() 490 (void) XmlRpcUtil::nextTagIs(DATA_ETAG, valueXml, offset); in arrayFromXml() 520 while (XmlRpcUtil::nextTagIs(MEMBER_TAG, valueXml, offset)) { in structFromXml() 532 (void) XmlRpcUtil::nextTagIs(MEMBER_ETAG, valueXml, offset); in structFromXml()
|
D | XmlRpcUtil.h | 42 static bool nextTagIs(const char* tag, std::string const& xml, int* offset);
|
D | XmlRpcUtil.cpp | 134 XmlRpcUtil::nextTagIs(const char* tag, std::string const& xml, int* offset) in nextTagIs() function in XmlRpcUtil
|