Home | History | Annotate | Download | only in parameter

Lines Matching refs:strValue

52 bool CSelectionCriterionType::addValuePair(int iValue, const std::string& strValue)
57 log_warning("Rejecting value pair association: 0x%X - %s for Selection Criterion Type %s", iValue, strValue.c_str(), getName().c_str());
63 if (_numToLitMap.find(strValue) != _numToLitMap.end()) {
65 log_warning("Rejecting value pair association (literal already present): 0x%X - %s for Selection Criterion Type %s", iValue, strValue.c_str(), getName().c_str());
69 _numToLitMap[strValue] = iValue;
74 bool CSelectionCriterionType::getNumericalValue(const std::string& strValue, int& iValue) const
78 Tokenizer tok(strValue, _strDelimiter);
96 return getAtomicNumericalValue(strValue, iValue);
99 bool CSelectionCriterionType::getAtomicNumericalValue(const std::string& strValue, int& iValue) const
101 NumToLitMapConstIt it = _numToLitMap.find(strValue);
112 bool CSelectionCriterionType::getLiteralValue(int iValue, std::string& strValue) const
120 strValue = it->first;