Home
last modified time | relevance | path

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

/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Resource/
H A DXMLElement.cpp477 XMLElement stringElem = CreateChild("string"); in SetStringVector() local
478 if (!stringElem) in SetStringVector()
480 stringElem.SetAttribute("value", *i); in SetStringVector()
901 XMLElement stringElem = GetChild("string"); in GetStringVector() local
902 while (stringElem) in GetStringVector()
904 ret.Push(stringElem.GetAttributeCString("value")); in GetStringVector()
905 stringElem = stringElem.GetNext("string"); in GetStringVector()