Searched refs:strKey (Results 1 – 14 of 14) sorted by relevance
/external/parameter-framework/parameter/ |
D | MappingContext.cpp | 85 assert(_pstItemArray[uiIndex].strKey != pStrKey); in setItem() 95 _pstItemArray[uiItemType].strKey = pStrKey; in setItem() 121 const string* CMappingContext::getItem(const string& strKey) const in getItem() 127 if (_pstItemArray[uiItemType].strKey != NULL && in getItem() 128 strKey == *_pstItemArray[uiItemType].strKey) { in getItem()
|
D | Subsystem.cpp | 355 const string& strKey, in getMappingError() argument 360 "mapping:\n" + strKey + " " + in getMappingError() 366 bool CSubsystem::getMappingData(const std::string& strKey, const std::string*& pStrValue) const in getMappingData() argument 370 return _pMappingData->getValue(strKey, pStrValue); in getMappingData() 386 const string& strKey = _contextMappingKeyArray[uiItem]; in handleMappingContext() local 389 if (pConfigurableElementWithMapping->getMappingData(strKey, pStrValue)) { in handleMappingContext() 391 if (!context.setItem(uiItem, &strKey, pStrValue)) { in handleMappingContext() 393 strError = getMappingError(strKey, "Already set", pConfigurableElementWithMapping); in handleMappingContext() 416 string strKey = pSubsystemObjectCreator->getMappingKey(); in handleSubsystemObjectCreation() local 420 if (pInstanceConfigurableElement->getMappingData(strKey, pStrValue)) { in handleSubsystemObjectCreation() [all …]
|
D | MappingData.cpp | 53 std::string strKey, strValue; in fromXml() local 59 strKey = strMappingElement; in fromXml() 65 strKey = strMappingElement.substr(0, iFistDelimiterOccurrence); in fromXml() 72 if (!addValue(strKey, strValue)) { in fromXml() 74 …ror("Duplicate Mapping data: Unable to process Mapping element key = " + strKey + ", value = " + s… in fromXml()
|
D | ComponentType.cpp | 52 bool CComponentType::getMappingData(const std::string& strKey, const std::string*& pStrValue) const in getMappingData() argument 55 …return base::getMappingData(strKey, pStrValue) || (_pExtendsComponentType && _pExtendsComponentTyp… in getMappingData()
|
D | ComponentInstance.cpp | 52 bool CComponentInstance::getMappingData(const std::string& strKey, const std::string*& pStrValue) c… in getMappingData() argument 55 …return base::getMappingData(strKey, pStrValue) || (_pComponentType && _pComponentType->getMappingD… in getMappingData()
|
D | MappingContext.h | 39 const std::string* strKey; member 75 const std::string* getItem(const std::string& strKey) const;
|
D | TypeElement.cpp | 62 bool CTypeElement::getMappingData(const std::string& strKey, const std::string*& pStrValue) const in getMappingData() argument 66 return _pMappingData->getValue(strKey, pStrValue); in getMappingData()
|
D | Subsystem.h | 74 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const; 144 const std::string& strKey,
|
D | InstanceConfigurableElement.cpp | 57 bool CInstanceConfigurableElement::getMappingData(const std::string& strKey, const std::string*& pS… in getMappingData() argument 60 return getTypeElement()->getMappingData(strKey, pStrValue); in getMappingData()
|
D | ConfigurableElementWithMapping.h | 54 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const = 0;
|
D | ComponentType.h | 47 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
|
D | ComponentInstance.h | 44 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
|
D | TypeElement.h | 48 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
|
D | InstanceConfigurableElement.h | 59 virtual bool getMappingData(const std::string& strKey, const std::string*& pStrValue) const;
|