Home | History | Annotate | Download | only in parameter

Lines Matching defs:strKey

45         std::string strKey, strValue;
51 strKey = strMappingElement;
57 strKey = strMappingElement.substr(0, iFistDelimiterOccurrence);
63 if (!addValue(strKey, strValue)) {
65 error = "Unable to process Mapping element key = " + strKey + ", value = " + strValue +
74 bool CMappingData::getValue(const std::string &strkey, const std::string *&pStrValue) const
76 KeyToValueMapConstIterator it = _keyToValueMap.find(strkey);
92 bool CMappingData::addValue(const std::string &strkey, const std::string &strValue)
94 if (_keyToValueMap.find(strkey) != _keyToValueMap.end()) {
98 _keyToValueMap[strkey] = strValue;