Home
last modified time | relevance | path

Searched refs:strKey (Results 1 – 18 of 18) sorted by relevance

/external/parameter-framework/upstream/parameter/
DMappingContext.cpp46 mItems[itemType].strKey = pStrKey; in setItem()
69 const string *CMappingContext::getItem(const string &strKey) const in getItem()
72 return item.strKey != nullptr && strKey == *item.strKey; in getItem()
74 return (itemFound != end(mItems)) ? itemFound->strKey : nullptr; in getItem()
DSubsystem.cpp318 string CSubsystem::getMappingError(const string &strKey, const string &strMessage, in getMappingError() argument
321 return getName() + " " + getKind() + " " + "mapping:\n" + strKey + " " + "error: \"" + in getMappingError()
325 bool CSubsystem::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() argument
329 return _pMappingData->getValue(strKey, pStrValue); in getMappingData()
350 const string &strKey = _contextMappingKeyArray[item]; in handleMappingContext() local
353 if (pConfigurableElement->getMappingData(strKey, pStrValue)) { in handleMappingContext()
355 if (!context.setItem(item, &strKey, pStrValue)) { in handleMappingContext()
357 strError = getMappingError(strKey, "Already set", pConfigurableElement); in handleMappingContext()
376 string strKey = pSubsystemObjectCreator->getMappingKey(); in handleSubsystemObjectCreation() local
380 if (pInstanceConfigurableElement->getMappingData(strKey, pStrValue)) { in handleSubsystemObjectCreation()
[all …]
DMappingData.cpp45 std::string strKey, strValue; in init() local
51 strKey = strMappingElement; in init()
57 strKey = strMappingElement.substr(0, iFistDelimiterOccurrence); in init()
63 if (!addValue(strKey, strValue)) { in init()
65 error = "Unable to process Mapping element key = " + strKey + ", value = " + strValue + in init()
DComponentType.cpp52 bool CComponentType::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() argument
55 return base::getMappingData(strKey, pStrValue) || in getMappingData()
56 (_pExtendsComponentType && _pExtendsComponentType->getMappingData(strKey, pStrValue)); in getMappingData()
DComponentInstance.cpp60 bool CComponentInstance::getMappingData(const std::string &strKey, in getMappingData() argument
64 return base::getMappingData(strKey, pStrValue) || in getMappingData()
65 (_pComponentType && _pComponentType->getMappingData(strKey, pStrValue)); in getMappingData()
DMappingContext.h44 const std::string *strKey{nullptr};
71 const std::string *getItem(const std::string &strKey) const;
DTypeElement.cpp64 bool CTypeElement::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() argument
68 return _pMappingData->getValue(strKey, pStrValue); in getMappingData()
DInstanceConfigurableElement.cpp65 bool CInstanceConfigurableElement::getMappingData(const std::string &strKey, in getMappingData() argument
69 return getTypeElement()->getMappingData(strKey, pStrValue); in getMappingData()
DSubsystem.h78 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
149 std::string getMappingError(const std::string &strKey, const std::string &strMessage,
DComponentType.h47 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
DComponentInstance.h44 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
DTypeElement.h50 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
DSystemClass.h86 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
DInstanceConfigurableElement.h62 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override;
DElementHandle.cpp129 bool ElementHandle::getMappingData(const string &strKey, string &strValue) const in getMappingData() argument
137 if (element->getMappingData(strKey, pStrValue)) { in getMappingData()
DConfigurableElement.h156 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const = 0;
/external/pdfium/xfa/fgas/font/
Dcfgas_pdffontmgr.cpp81 ByteString strKey = ByteString::Format("%u%u", dwHashCode, dwFontStyles); in GetFont() local
82 auto it = m_FontMap.find(strKey); in GetFont()
93 m_FontMap[strKey] = pFont; in GetFont()
/external/parameter-framework/upstream/parameter/include/
DElementHandle.h103 bool getMappingData(const std::string &strKey, std::string &strValue) const;