MCPcopy Create free account
hub / github.com/bulletphysics/bullet3 / SetText

Method SetText

examples/ThirdPartyLibs/tinyxml2/tinyxml2.cpp:1651–1660  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1649}
1650
1651void XMLElement::SetText(const char* inText)
1652{
1653 if (FirstChild() && FirstChild()->ToText())
1654 FirstChild()->SetValue(inText);
1655 else
1656 {
1657 XMLText* theText = GetDocument()->NewText(inText);
1658 InsertFirstChild(theText);
1659 }
1660}
1661
1662void XMLElement::SetText(int v)
1663{

Callers 15

GWEN_CONTROL_INLINEMethod · 0.45
GWEN_CONTROL_INLINEMethod · 0.45
GWEN_CONTROL_INLINEMethod · 0.45
GWEN_CONTROL_INLINEMethod · 0.45
GWEN_CONTROL_INLINEMethod · 0.45
GWEN_CONTROL_INLINEMethod · 0.45
GWEN_CONTROL_INLINEMethod · 0.45
GWEN_CONTROL_INLINEMethod · 0.45
GWEN_CONTROL_INLINEMethod · 0.45
GWEN_CONTROL_INLINEMethod · 0.45
dumpRecursiveMethod · 0.45
UpdateTextMethod · 0.45

Calls 4

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

Tested by

no test coverage detected