/external/parameter-framework/upstream/parameter/ |
D | MappingContext.cpp | 46 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()
|
D | Subsystem.cpp | 318 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 …]
|
D | MappingData.cpp | 45 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()
|
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) || in getMappingData() 56 (_pExtendsComponentType && _pExtendsComponentType->getMappingData(strKey, pStrValue)); in getMappingData()
|
D | ComponentInstance.cpp | 60 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()
|
D | MappingContext.h | 44 const std::string *strKey{nullptr}; 71 const std::string *getItem(const std::string &strKey) const;
|
D | TypeElement.cpp | 64 bool CTypeElement::getMappingData(const std::string &strKey, const std::string *&pStrValue) const in getMappingData() argument 68 return _pMappingData->getValue(strKey, pStrValue); in getMappingData()
|
D | InstanceConfigurableElement.cpp | 65 bool CInstanceConfigurableElement::getMappingData(const std::string &strKey, in getMappingData() argument 69 return getTypeElement()->getMappingData(strKey, pStrValue); in getMappingData()
|
D | Subsystem.h | 78 bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const override; 149 std::string getMappingError(const std::string &strKey, const std::string &strMessage,
|
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 | TypeElement.h | 50 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
|
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() argument 137 if (element->getMappingData(strKey, pStrValue)) { in getMappingData()
|
D | ConfigurableElement.h | 156 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const = 0;
|
/external/pdfium/xfa/fgas/font/ |
D | cfgas_pdffontmgr.cpp | 81 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/ |
D | ElementHandle.h | 103 bool getMappingData(const std::string &strKey, std::string &strValue) const;
|