Lines Matching refs:string
40 using std::string;
42 const std::string CElement::gDescriptionPropertyName = "Description";
44 CElement::CElement(const string &strName) : _strName(strName)
53 void CElement::setDescription(const string &strDescription)
58 const string &CElement::getDescription() const
69 bool CElement::init(string &strError)
83 string CElement::dumpContent(utility::ErrorContext &errorContext, const size_t depth) const
85 string output;
86 string strIndent;
105 string strValue = logValue(errorContext);
123 void CElement::showProperties(string &strResult) const
129 void CElement::showDescriptionProperty(std::string &strResult) const
137 string CElement::logValue(utility::ErrorContext & /*ctx*/) const
213 const string &description = getDescription();
222 string strName = getName();
231 void CElement::setName(const string &strName)
236 const string &CElement::getName() const
241 bool CElement::rename(const string &strName, string &strError)
263 string CElement::getPathName() const
330 void CElement::listChildren(string &strChildList) const
339 string CElement::listQualifiedPaths(bool bDive, size_t level) const
341 string strResult;
359 void CElement::listChildrenPaths(string &strChildList) const
411 string *pStrChildName = pathNavigator.next();
430 string *pStrChildName = pathNavigator.next();
460 CElement *CElement::findChild(const string &strName)
473 const CElement *CElement::findChild(const string &strName) const
486 CElement *CElement::findChildOfKind(const string &strKind)
499 const CElement *CElement::findChildOfKind(const string &strKind) const
512 string CElement::getPath() const
522 string CElement::getQualifiedPath() const
527 string CElement::getXmlElementName() const