Home
last modified time | relevance | path

Searched refs:TiXmlBase (Results 1 – 7 of 7) sorted by relevance

/external/tinyxml/
Dtinyxmlparser.cpp34 TiXmlBase::Entity TiXmlBase::entity[ NUM_ENTITY ] =
57 const int TiXmlBase::utf8ByteTable[256] =
79 void TiXmlBase::ConvertUTF32ToUTF8( unsigned long input, char* output, int* length ) in ConvertUTF32ToUTF8()
120 /*static*/ int TiXmlBase::IsAlpha( unsigned char anyByte, TiXmlEncoding /*encoding*/ ) in IsAlpha()
141 /*static*/ int TiXmlBase::IsAlphaNum( unsigned char anyByte, TiXmlEncoding /*encoding*/ ) in IsAlphaNum()
280 int step = TiXmlBase::utf8ByteTable[*((unsigned char*)p)]; in Stamp()
305 const char* TiXmlBase::SkipWhiteSpace( const char* p, TiXmlEncoding encoding ) in SkipWhiteSpace()
356 /*static*/ bool TiXmlBase::StreamWhiteSpace( TIXML_ISTREAM * in, TIXML_STRING * tag ) in StreamWhiteSpace()
371 /*static*/ bool TiXmlBase::StreamTo( TIXML_ISTREAM * in, int character, TIXML_STRING * tag ) in StreamTo()
389 const char* TiXmlBase::ReadName( const char* p, TIXML_STRING * name, TiXmlEncoding encoding ) in ReadName()
[all …]
Dxmltest.cpp499 if ( doc.Error() && doc.ErrorId() == TiXmlBase::TIXML_ERROR_OPENING_FILE ) { in main()
650 TiXmlBase::SetCondenseWhiteSpace( false ); in main()
660 TiXmlBase::SetCondenseWhiteSpace( true ); in main()
682 TiXmlBase::SetCondenseWhiteSpace( false ); in main()
684 TiXmlBase::SetCondenseWhiteSpace( true ); in main()
918 TiXmlBase::SetCondenseWhiteSpace( false ); in main()
934 TiXmlBase::SetCondenseWhiteSpace( true ); in main()
1005 …XmlTest( "Empty document error TIXML_ERROR_DOCUMENT_EMPTY", TiXmlBase::TIXML_ERROR_DOCUMENT_EMPTY,… in main()
1021 TiXmlBase::SetCondenseWhiteSpace(false); in main()
Dtinyxml.h152 class TiXmlBase
159 TiXmlBase() : userData(0) {} in TiXmlBase() function
160 virtual ~TiXmlBase() {} in ~TiXmlBase()
356 TiXmlBase( const TiXmlBase& ); // not implemented.
357 void operator=( const TiXmlBase& base ); // not allowed.
382 class TiXmlNode : public TiXmlBase
694 class TiXmlAttribute : public TiXmlBase
700 TiXmlAttribute() : TiXmlBase() in TiXmlAttribute()
Dtinyxmlerror.cpp34 const char* TiXmlBase::errorString[ TIXML_ERROR_STRING_COUNT ] =
Dtinyxml.cpp33 bool TiXmlBase::condenseWhiteSpace = true;
35 void TiXmlBase::PutString( const TIXML_STRING& str, TIXML_OSTREAM* stream ) in PutString()
42 void TiXmlBase::PutString( const TIXML_STRING& str, TIXML_STRING* outString ) in PutString()
127 TiXmlBase::StringToBuffer::StringToBuffer( const TIXML_STRING& str ) in StringToBuffer()
137 TiXmlBase::StringToBuffer::~StringToBuffer() in ~StringToBuffer()
144 TiXmlNode::TiXmlNode( NodeType _type ) : TiXmlBase() in TiXmlNode()
Dreadme.txt261 first 2 approaches. Call TiXmlBase::SetCondenseWhiteSpace( bool ) to set the desired behavior.
264 If you change the default, you should call TiXmlBase::SetCondenseWhiteSpace( bool )
312 in a text file. The TiXmlBase::Row() and TiXmlBase::Column() methods return
Dchanges.txt152 - User Data are now defined in TiXmlBase instead of TiXmlNode