Home
last modified time | relevance | path

Searched refs:CIntegerParameterType (Results 1 – 3 of 3) sorted by relevance

/external/parameter-framework/parameter/
DIntegerParameterType.cpp45 CIntegerParameterType::CIntegerParameterType(const string& strName) : base(strName), _uiMin(0), _ui… in CIntegerParameterType() function in CIntegerParameterType
50 string CIntegerParameterType::getKind() const in getKind()
56 bool CIntegerParameterType::childrenAreDynamic() const in childrenAreDynamic()
62 void CIntegerParameterType::showProperties(string& strResult) const in showProperties()
93 bool CIntegerParameterType::fromXml(const CXmlElement& xmlElement, CXmlSerializingContext& serializ… in fromXml()
151 bool CIntegerParameterType::toBlackboard(const string& strValue, uint32_t& uiValue, CParameterAcces… in toBlackboard()
190 bool CIntegerParameterType::fromBlackboard(string& strValue, const uint32_t& uiValue, CParameterAcc… in fromBlackboard()
226 bool CIntegerParameterType::toBlackboard(uint32_t uiUserValue, uint32_t& uiValue, CParameterAccessC… in toBlackboard()
240 bool CIntegerParameterType::fromBlackboard(uint32_t& uiUserValue, uint32_t uiValue, CParameterAcces… in fromBlackboard()
251 bool CIntegerParameterType::toBlackboard(int32_t iUserValue, uint32_t& uiValue, CParameterAccessCon… in toBlackboard()
[all …]
DIntegerParameterType.h38 class CIntegerParameterType : public CParameterType
41 CIntegerParameterType(const std::string& strName);
DParameterMgr.cpp2465 …->addElementBuilder("IntegerParameter", new TNamedElementBuilderTemplate<CIntegerParameterType>()); in feedElementLibraries()