HomeSort by relevance Sort by last modified time
    Searched refs:asTime (Results 1 - 2 of 2) sorted by null

  /external/xmlrpcpp/src/
XmlRpcValue.cpp 58 case TypeDateTime: delete _value.asTime; break;
77 case TypeDateTime: _value.asTime = new struct tm(); break;
130 case TypeDateTime: _value.asTime = new struct tm(*rhs._value.asTime); break;
159 case TypeDateTime: return tmEq(*_value.asTime, *other._value.asTime);
413 _value.asTime = new struct tm(t);
420 struct tm* t = _value.asTime;
572 struct tm* t = _value.asTime;
XmlRpcValue.h 58 { _value.asTime = new struct tm(*value); }
93 operator struct tm&() { assertTypeOrInvalid(TypeDateTime); return *_value.asTime; }
180 struct tm* asTime;

Completed in 495 milliseconds