Home | History | Annotate | Download | only in parameter

Lines Matching refs:string

40 using std::string;
63 string ElementHandle::getName() const
78 string ElementHandle::getDescription() const
104 string ElementHandle::getPath() const
109 string ElementHandle::getKind() const
129 bool ElementHandle::getMappingData(const string &strKey, string &strValue) const
131 const std::string *pStrValue;
145 bool ElementHandle::getStructureAsXML(std::string &xmlSettings, std::string &error) const
163 bool ElementHandle::getAsXML(std::string &xmlValue, std::string &error) const
165 std::string result;
175 bool ElementHandle::setAsXML(const std::string &xmlValue, std::string &error)
180 bool ElementHandle::getAsBytes(std::vector<uint8_t> &bytesValue, std::string & /*error*/) const
191 bool ElementHandle::setAsBytes(const std::vector<uint8_t> &bytesValue, std::string &error)
197 bool ElementHandle::setAs(const T value, string &error) const
224 bool ElementHandle::getAs(T &value, string &error) const
241 bool ElementHandle::setAsBoolean(bool value, string &error)
246 bool ElementHandle::getAsBoolean(bool &value, string &error) const
251 bool ElementHandle::setAsBooleanArray(const std::vector<bool> &value, string &error)
256 bool ElementHandle::getAsBooleanArray(std::vector<bool> &value, string &error) const
262 bool ElementHandle::setAsInteger(uint32_t value, string &error)
267 bool ElementHandle::getAsInteger(uint32_t &value, string &error) const
272 bool ElementHandle::setAsIntegerArray(const std::vector<uint32_t> &value, string &error)
277 bool ElementHandle::getAsIntegerArray(std::vector<uint32_t> &value, string &error) const
283 bool ElementHandle::setAsSignedInteger(int32_t value, string &error)
288 bool ElementHandle::getAsSignedInteger(int32_t &value, string &error) const
293 bool ElementHandle::setAsSignedIntegerArray(const std::vector<int32_t> &value, string &error)
298 bool ElementHandle::getAsSignedIntegerArray(std::vector<int32_t> &value, string &error) const
304 bool ElementHandle::setAsDouble(double value, string &error)
309 bool ElementHandle::getAsDouble(double &value, string &error) const
314 bool ElementHandle::setAsDoubleArray(const std::vector<double> &value, string &error)
319 bool ElementHandle::getAsDoubleArray(std::vector<double> &value, string &error) const
324 // String Access
325 bool ElementHandle::setAsString(const string &value, string &error)
330 bool ElementHandle::getAsString(string &value, string &error) const
335 bool ElementHandle::setAsStringArray(const std::vector<string> &value, string &error)
340 bool ElementHandle::getAsStringArray(std::vector<string> &value, string &error) const
345 bool ElementHandle::checkGetValidity(bool asArray, string &error) const
364 bool ElementHandle::checkSetValidity(size_t arrayLength, string &error) const