Home | History | Annotate | Download | only in parameter

Lines Matching refs:strValue

61 void CSelectionCriterionRule::logValue(string& strValue, CErrorContext& errorContext) const
66 dump(strValue);
91 string strValue;
93 if (!ruleParser.next(strValue, strError)) {
107 if (!_pSelectionCriterion->getCriterionType()->getNumericalValue(strValue, _iMatchValue)) {
109 strError = "Value error: \"" + strValue + "\" is not part of criterion \"" +
128 string strValue;
129 _pSelectionCriterion->getCriterionType()->getLiteralValue(_iMatchValue, strValue);
130 strResult += strValue;
184 string strValue = xmlElement.getAttributeString("Value");
186 if (!_pSelectionCriterion->getCriterionType()->getNumericalValue(strValue, _iMatchValue)) {
188 xmlDomainImportContext.setError("Wrong Value attribute value " + strValue + " in " + getKind() + " " + xmlElement.getPath());
211 string strValue;
213 _pSelectionCriterion->getCriterionType()->getLiteralValue(_iMatchValue, strValue);
215 xmlElement.setAttributeString("Value", strValue);