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