Home
last modified time | relevance | path

Searched refs:CComponentType (Results 1 – 6 of 6) sorted by relevance

/external/parameter-framework/parameter/
DComponentType.cpp38 CComponentType::CComponentType(const std::string& strName) : base(strName), _pExtendsComponentType(… in CComponentType() function in CComponentType
42 std::string CComponentType::getKind() const in getKind()
47 bool CComponentType::childrenAreDynamic() const in childrenAreDynamic()
52 bool CComponentType::getMappingData(const std::string& strKey, const std::string*& pStrValue) const in getMappingData()
58 bool CComponentType::hasMappingData() const in hasMappingData()
64 std::string CComponentType::getFormattedMapping() const in getFormattedMapping()
76 bool CComponentType::fromXml(const CXmlElement& xmlElement, CXmlSerializingContext& serializingCont… in fromXml()
114 void CComponentType::populate(CElement* pElement) const in populate()
127 CInstanceConfigurableElement* CComponentType::doInstantiate() const in doInstantiate()
DComponentType.h38 class CComponentType : public CTypeElement
41 CComponentType(const std::string& strName);
67 const CComponentType* _pExtendsComponentType;
DComponentLibrary.h38 class CComponentType; variable
45 const CComponentType* getComponentType(const std::string& strName) const;
DComponentLibrary.cpp48 const CComponentType* CComponentLibrary::getComponentType(const std::string& strName) const in getComponentType()
50 return static_cast<const CComponentType*>(findChild(strName)); in getComponentType()
DComponentInstance.h36 class CComponentType; variable
64 const CComponentType* _pComponentType;
DParameterMgr.cpp2458 …ionLibrary->addElementBuilder("ComponentType", new TNamedElementBuilderTemplate<CComponentType>()); in feedElementLibraries()