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

  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement.h 22 class XmlChild;
27 class XmlChild {
29 XmlChild* NextChild() { return next_child_; }
30 const XmlChild* NextChild() const { return next_child_; }
42 XmlChild() :
51 virtual ~XmlChild();
56 XmlChild(const XmlChild& noimpl);
58 XmlChild* next_child_;
61 class XmlText : public XmlChild {
    [all...]
xmlelement.cc 27 XmlChild::~XmlChild() {
67 XmlChild(),
87 XmlChild* pChild;
88 XmlChild ** ppLast = &first_child_;
89 XmlChild* newChild = NULL;
231 XmlChild* XmlElement::FirstChild() {
236 XmlChild* pChild;
245 XmlChild* pChild;
254 XmlChild* pChild
    [all...]

Completed in 3129 milliseconds