Searched refs:pStrValue (Results 1 - 15 of 15) sorted by relevance
/external/parameter-framework/upstream/parameter/ |
H A D | ComponentType.cpp | 52 bool CComponentType::getMappingData(const std::string &strKey, const std::string *&pStrValue) const 55 return base::getMappingData(strKey, pStrValue) || 56 (_pExtendsComponentType && _pExtendsComponentType->getMappingData(strKey, pStrValue));
|
H A D | Subsystem.cpp | 236 const string *pStrValue; local 237 if (pInstanceConfigurableElement->getMappingData(strMappingKey, pStrValue)) { 239 strMappingValue = *pStrValue; 325 bool CSubsystem::getMappingData(const std::string &strKey, const std::string *&pStrValue) const 329 return _pMappingData->getValue(strKey, pStrValue); 351 const string *pStrValue; local 353 if (pConfigurableElement->getMappingData(strKey, pStrValue)) { 355 if (!context.setItem(item, &strKey, pStrValue)) { 378 const string *pStrValue; local 380 if (pInstanceConfigurableElement->getMappingData(strKey, pStrValue)) { [all...] |
H A D | ComponentInstance.cpp | 61 const std::string *&pStrValue) const 64 return base::getMappingData(strKey, pStrValue) || 65 (_pComponentType && _pComponentType->getMappingData(strKey, pStrValue));
|
H A D | ComponentInstance.h | 44 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
|
H A D | ComponentType.h | 47 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
|
H A D | MappingData.h | 50 bool getValue(const std::string &strkey, const std::string *&pStrValue) const;
|
H A D | MappingData.cpp | 74 bool CMappingData::getValue(const std::string &strkey, const std::string *&pStrValue) const 80 pStrValue = &it->second;
|
H A D | InstanceConfigurableElement.cpp | 66 const std::string *&pStrValue) const 69 return getTypeElement()->getMappingData(strKey, pStrValue);
|
H A D | TypeElement.cpp | 64 bool CTypeElement::getMappingData(const std::string &strKey, const std::string *&pStrValue) const 68 return _pMappingData->getValue(strKey, pStrValue);
|
H A D | InstanceConfigurableElement.h | 62 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
|
H A D | SystemClass.h | 86 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
H A D | TypeElement.h | 50 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
|
H A D | ElementHandle.cpp | 131 const std::string *pStrValue; local 137 if (element->getMappingData(strKey, pStrValue)) { 138 strValue = *pStrValue;
|
H A D | Subsystem.h | 78 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
|
H A D | ConfigurableElement.h | 152 * @param[out] pStrValue the associated value 156 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const = 0;
|
Completed in 134 milliseconds