/external/parameter-framework/upstream/parameter/ |
D | ComponentType.cpp | 52 bool CComponentType::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() function in CComponentType 55 return base::getMappingData(strKey, pStrValue) || in getMappingData() 56 (_pExtendsComponentType && _pExtendsComponentType->getMappingData(strKey, pStrValue)); in getMappingData()
|
D | ComponentInstance.cpp | 60 bool CComponentInstance::getMappingData(const std::string &strKey, in getMappingData() function in CComponentInstance 64 return base::getMappingData(strKey, pStrValue) || in getMappingData() 65 (_pComponentType && _pComponentType->getMappingData(strKey, pStrValue)); in getMappingData()
|
D | TypeElement.cpp | 64 bool CTypeElement::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() function in CTypeElement 117 if (!getMappingData()->init(rawMapping, error)) { in fromXml() 137 CMappingData *CTypeElement::getMappingData() in getMappingData() function in CTypeElement
|
D | TypeElement.h | 50 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const; 107 CMappingData *getMappingData();
|
D | Subsystem.cpp | 237 if (pInstanceConfigurableElement->getMappingData(strMappingKey, pStrValue)) { in findSubsystemLevelMappingKeyValue() 325 bool CSubsystem::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() function in CSubsystem 353 if (pConfigurableElement->getMappingData(strKey, pStrValue)) { in handleMappingContext() 380 if (pInstanceConfigurableElement->getMappingData(strKey, pStrValue)) { in handleSubsystemObjectCreation()
|
D | InstanceConfigurableElement.cpp | 65 bool CInstanceConfigurableElement::getMappingData(const std::string &strKey, in getMappingData() function in CInstanceConfigurableElement 69 return getTypeElement()->getMappingData(strKey, pStrValue); in getMappingData()
|
D | ComponentType.h | 47 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
D | ComponentInstance.h | 44 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
D | SystemClass.h | 86 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
D | InstanceConfigurableElement.h | 62 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
D | ElementHandle.cpp | 129 bool ElementHandle::getMappingData(const string &strKey, string &strValue) const in getMappingData() function in ElementHandle 137 if (element->getMappingData(strKey, pStrValue)) { in getMappingData()
|
D | Subsystem.h | 78 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
|
D | ConfigurableElement.h | 156 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const = 0;
|
D | SystemClass.cpp | 82 bool CSystemClass::getMappingData(const std::string & /*strKey*/, in getMappingData() function in CSystemClass
|
/external/parameter-framework/upstream/test/functional-tests/include/ |
D | ElementHandle.hpp | 65 std::string getMappingData(const std::string &key) in getMappingData() function in parameterFramework::ElementHandle 68 if (not EH::getMappingData(key, value)) { in getMappingData() member in parameterFramework::ElementHandle::getMappingData::EH
|
/external/parameter-framework/upstream/parameter/include/ |
D | ElementHandle.h | 103 bool getMappingData(const std::string &strKey, std::string &strValue) const;
|
/external/parameter-framework/upstream/test/functional-tests/ |
D | Handle.cpp | 609 CHECK(handle.getMappingData(valid + "K") == valid + "V"); 615 CHECK_THROWS_AS(handle.getMappingData(invalid + "K"), Exception);
|