OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:XmlText
(Results
1 - 2
of
2
) sorted by null
/external/chromium/third_party/libjingle/source/talk/xmllite/
xmlelement.h
43
class
XmlText
;
60
XmlText
* AsText() { return AsTextImpl(); }
61
const
XmlText
* AsText() const { return AsTextImpl(); }
72
virtual
XmlText
* AsTextImpl() const = 0;
84
class
XmlText
: public XmlChild {
86
explicit
XmlText
(const std::string & text) :
90
explicit
XmlText
(const
XmlText
& t) :
94
explicit
XmlText
(const char * cstr, size_t len) :
98
virtual ~
XmlText
();
[
all
...]
xmlelement.cc
51
XmlText
::IsTextImpl() const {
56
XmlText
::AsElementImpl() const {
60
XmlText
*
61
XmlText
::AsTextImpl() const {
62
return const_cast<
XmlText
*>(this);
66
XmlText
::SetText(const std::string & text) {
71
XmlText
::AddParsedText(const char * buf, int len) {
76
XmlText
::AddText(const std::string & text) {
80
XmlText
::~
XmlText
() {
[
all
...]
Completed in 16 milliseconds