Lines Matching refs:string
53 std::string getName() const;
67 std::string getDescription() const;
84 std::string getPath() const;
90 std::string getKind() const;
103 bool getMappingData(const std::string &strKey, std::string &strValue) const;
109 bool getStructureAsXML(std::string &xmlStructure, std::string &error) const;
126 bool getAsXML(std::string &xmlValue, std::string &error) const;
145 bool setAsXML(const std::string &xmlValue, std::string &error);
154 bool getAsBytes(std::vector<uint8_t> &bytesValue, std::string &error) const;
168 bool setAsBytes(const std::vector<uint8_t> &bytesValue, std::string &error);
191 bool getAsBoolean(bool &value, std::string &error) const;
192 bool setAsBoolean(bool value, std::string &error);
193 bool setAsBooleanArray(const std::vector<bool> &value, std::string &error);
194 bool getAsBooleanArray(std::vector<bool> &value, std::string &error) const;
198 bool setAsInteger(uint32_t value, std::string &error);
199 bool getAsInteger(uint32_t &value, std::string &error) const;
200 bool setAsIntegerArray(const std::vector<uint32_t> &value, std::string &error);
201 bool getAsIntegerArray(std::vector<uint32_t> &value, std::string &error) const;
205 bool setAsSignedInteger(int32_t value, std::string &error);
206 bool getAsSignedInteger(int32_t &value, std::string &error) const;
207 bool setAsSignedIntegerArray(const std::vector<int32_t> &value, std::string &error);
208 bool getAsSignedIntegerArray(std::vector<int32_t> &value, std::string &error) const;
212 bool setAsDouble(double value, std::string &error);
213 bool getAsDouble(double &value, std::string &error) const;
214 bool setAsDoubleArray(const std::vector<double> &value, std::string &error);
215 bool getAsDoubleArray(std::vector<double> &value, std::string &error) const;
219 bool setAsString(const std::string &value, std::string &error);
220 bool getAsString(std::string &value, std::string &error) const;
221 bool setAsStringArray(const std::vector<std::string> &value, std::string &error);
222 bool getAsStringArray(std::vector<std::string> &value, std::string &error) const;
233 bool setAs(const T value, std::string &error) const;
235 bool getAs(T &value, std::string &error) const;
249 bool checkSetValidity(size_t arrayLength, std::string &error) const;
259 bool checkGetValidity(bool asArray, std::string &error) const;