Home | History | Annotate | Download | only in parameter

Lines Matching defs:strKey

53         std::string strKey, strValue;
59 strKey = strMappingElement;
65 strKey = strMappingElement.substr(0, iFistDelimiterOccurrence);
72 if (!addValue(strKey, strValue)) {
74 serializingContext.setError("Duplicate Mapping data: Unable to process Mapping element key = " + strKey + ", value = " + strValue + " from XML element " + xmlElement.getPath());
82 bool CMappingData::getValue(const std::string& strkey, const std::string*& pStrValue) const
84 KeyToValueMapConstIterator it = _keyToValueMap.find(strkey);
104 bool CMappingData::addValue(const std::string& strkey, const std::string& strValue)
106 if (_keyToValueMap.find(strkey) != _keyToValueMap.end()) {
110 _keyToValueMap[strkey] = strValue;