MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / PushText

Method PushText

native/thirdpart/tinyxml2/tinyxml2.cpp:2825–2838  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2823
2824
2825void XMLPrinter::PushText( const char* text, bool cdata )
2826{
2827 _textDepth = _depth-1;
2828
2829 SealElementIfJustOpened();
2830 if ( cdata ) {
2831 Write( "<![CDATA[" );
2832 Write( text );
2833 Write( "]]>" );
2834 }
2835 else {
2836 PrintString( text, true );
2837 }
2838}
2839
2840
2841void XMLPrinter::PushText( int64_t value )

Callers

nothing calls this directly

Calls 1

WriteFunction · 0.70

Tested by

no test coverage detected