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

  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement.h 23 class XmlText;
37 XmlText* AsText() { return AsTextImpl(); }
38 const XmlText* AsText() const { return AsTextImpl(); }
48 virtual XmlText* AsTextImpl() const = 0;
61 class XmlText : public XmlChild {
63 explicit XmlText(const std::string& text) :
67 explicit XmlText(const XmlText& t) :
71 explicit XmlText(const char* cstr, size_t len) :
75 virtual ~XmlText();
    [all...]
xmlelement.cc 30 bool XmlText::IsTextImpl() const {
34 XmlElement* XmlText::AsElementImpl() const {
38 XmlText* XmlText::AsTextImpl() const {
39 return const_cast<XmlText *>(this);
42 void XmlText::SetText(const std::string& text) {
46 void XmlText::AddParsedText(const char* buf, int len) {
50 void XmlText::AddText(const std::string& text) {
54 XmlText::~XmlText() {
    [all...]

Completed in 630 milliseconds