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

Method SetText

native/thirdpart/tinyxml2/tinyxml2.cpp:1675–1683  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1673
1674
1675void XMLElement::SetText( const char* inText )
1676{
1677 if ( FirstChild() && FirstChild()->ToText() )
1678 FirstChild()->SetValue( inText );
1679 else {
1680 XMLText* theText = GetDocument()->NewText( inText );
1681 InsertFirstChild( theText );
1682 }
1683}
1684
1685
1686void XMLElement::SetText( int v )

Callers 2

append_elementFunction · 0.80
insert_next_elementFunction · 0.80

Calls 4

FirstChildFunction · 0.85
GetDocumentFunction · 0.85
NewTextMethod · 0.80
SetValueMethod · 0.45

Tested by

no test coverage detected