Lines Matching refs:strFormattedDescription
132 std::string strFormattedDescription; in getFormattedDescription() local
139 utility::appendTitle(strFormattedDescription, getName() + ":"); in getFormattedDescription()
142 strFormattedDescription += "Possible states "; in getFormattedDescription()
145 strFormattedDescription += "("; in getFormattedDescription()
146 strFormattedDescription += _pType->isTypeInclusive() ? "Inclusive" : "Exclusive"; in getFormattedDescription()
147 strFormattedDescription += "): "; in getFormattedDescription()
150 strFormattedDescription += _pType->listPossibleValues() + "\n"; in getFormattedDescription()
153 strFormattedDescription += "Current state"; in getFormattedDescription()
156 strFormattedDescription = getName(); in getFormattedDescription()
160 strFormattedDescription += " = " + _pType->getFormattedState(_iState); in getFormattedDescription()
163 strFormattedDescription = "Criterion name: " + getName(); in getFormattedDescription()
167 strFormattedDescription += ", type kind: "; in getFormattedDescription()
168 strFormattedDescription += _pType->isTypeInclusive() ? "inclusive" : "exclusive"; in getFormattedDescription()
172 strFormattedDescription += ", current state: " + _pType->getFormattedState(_iState); in getFormattedDescription()
176 strFormattedDescription += ", states: " + _pType->listPossibleValues(); in getFormattedDescription()
179 return strFormattedDescription; in getFormattedDescription()