• Home
  • Raw
  • Download

Lines Matching refs:ElementHandle

58 ElementHandle::ElementHandle(CConfigurableElement &element, CParameterMgr &parameterMgr)  in ElementHandle()  function in ElementHandle
63 string ElementHandle::getName() const in getName()
68 size_t ElementHandle::getSize() const in getSize()
73 bool ElementHandle::isParameter() const in isParameter()
78 string ElementHandle::getDescription() const in getDescription()
84 bool ElementHandle::isRogue() const in isRogue()
89 bool ElementHandle::isArray() const in isArray()
94 size_t ElementHandle::getArrayLength() const in getArrayLength()
104 string ElementHandle::getPath() const in getPath()
109 string ElementHandle::getKind() const in getKind()
114 std::vector<ElementHandle> ElementHandle::getChildren() in getChildren()
118 std::vector<ElementHandle> children; in getChildren()
129 bool ElementHandle::getMappingData(const string &strKey, string &strValue) const in getMappingData()
145 bool ElementHandle::getStructureAsXML(std::string &xmlSettings, std::string &error) const in getStructureAsXML()
163 bool ElementHandle::getAsXML(std::string &xmlValue, std::string &error) const in getAsXML()
175 bool ElementHandle::setAsXML(const std::string &xmlValue, std::string &error) in setAsXML()
180 bool ElementHandle::getAsBytes(std::vector<uint8_t> &bytesValue, std::string & /*error*/) const in getAsBytes()
191 bool ElementHandle::setAsBytes(const std::vector<uint8_t> &bytesValue, std::string &error) in setAsBytes()
197 bool ElementHandle::setAs(const T value, string &error) const in setAs()
224 bool ElementHandle::getAs(T &value, string &error) const in getAs()
241 bool ElementHandle::setAsBoolean(bool value, string &error) in setAsBoolean()
246 bool ElementHandle::getAsBoolean(bool &value, string &error) const in getAsBoolean()
251 bool ElementHandle::setAsBooleanArray(const std::vector<bool> &value, string &error) in setAsBooleanArray()
256 bool ElementHandle::getAsBooleanArray(std::vector<bool> &value, string &error) const in getAsBooleanArray()
262 bool ElementHandle::setAsInteger(uint32_t value, string &error) in setAsInteger()
267 bool ElementHandle::getAsInteger(uint32_t &value, string &error) const in getAsInteger()
272 bool ElementHandle::setAsIntegerArray(const std::vector<uint32_t> &value, string &error) in setAsIntegerArray()
277 bool ElementHandle::getAsIntegerArray(std::vector<uint32_t> &value, string &error) const in getAsIntegerArray()
283 bool ElementHandle::setAsSignedInteger(int32_t value, string &error) in setAsSignedInteger()
288 bool ElementHandle::getAsSignedInteger(int32_t &value, string &error) const in getAsSignedInteger()
293 bool ElementHandle::setAsSignedIntegerArray(const std::vector<int32_t> &value, string &error) in setAsSignedIntegerArray()
298 bool ElementHandle::getAsSignedIntegerArray(std::vector<int32_t> &value, string &error) const in getAsSignedIntegerArray()
304 bool ElementHandle::setAsDouble(double value, string &error) in setAsDouble()
309 bool ElementHandle::getAsDouble(double &value, string &error) const in getAsDouble()
314 bool ElementHandle::setAsDoubleArray(const std::vector<double> &value, string &error) in setAsDoubleArray()
319 bool ElementHandle::getAsDoubleArray(std::vector<double> &value, string &error) const in getAsDoubleArray()
325 bool ElementHandle::setAsString(const string &value, string &error) in setAsString()
330 bool ElementHandle::getAsString(string &value, string &error) const in getAsString()
335 bool ElementHandle::setAsStringArray(const std::vector<string> &value, string &error) in setAsStringArray()
340 bool ElementHandle::getAsStringArray(std::vector<string> &value, string &error) const in getAsStringArray()
345 bool ElementHandle::checkGetValidity(bool asArray, string &error) const in checkGetValidity()
364 bool ElementHandle::checkSetValidity(size_t arrayLength, string &error) const in checkSetValidity()