Lines Matching +defs:val +defs:key
83 bool FormatData::SetValue(int32_t val) in SetValue()
93 bool FormatData::SetValue(int64_t val) in SetValue()
103 bool FormatData::SetValue(float val) in SetValue()
113 bool FormatData::SetValue(double val) in SetValue()
123 bool FormatData::SetValue(const std::string &val) in SetValue()
207 bool Format::PutIntValue(const std::string &key, int32_t value) in PutIntValue()
212 bool Format::PutLongValue(const std::string &key, int64_t value) in PutLongValue()
217 bool Format::PutFloatValue(const std::string &key, float value) in PutFloatValue()
222 bool Format::PutDoubleValue(const std::string &key, double value) in PutDoubleValue()
227 bool Format::PutStringValue(const std::string &key, const std::string &value) in PutStringValue()
233 bool Format::SetFormatCommon(const std::string &key, const T &value, FormatDataType type) in SetFormatCommon()
255 bool Format::GetStringValue(const std::string &key, std::string &value) const in GetStringValue() argument
266 bool Format::GetIntValue(const std::string &key, int32_t &value) const in GetIntValue() argument
277 bool Format::GetLongValue(const std::string &key, int64_t &value) const in GetLongValue() argument
288 bool Format::GetFloatValue(const std::string &key, float &value) const in GetFloatValue() argument
299 bool Format::GetDoubleValue(const std::string &key, double &value) const in GetDoubleValue() argument
320 std::string key = iter.first; in CopyFrom() local