Lines Matching refs:str_value
29 bool Parse(const std::string& str_value, float* value) { in Parse() argument
31 if (!ParseDouble(str_value.data(), &double_value)) { in Parse()
38 bool Parse(const std::string& str_value, double* value) { in Parse() argument
39 return ParseDouble(str_value.data(), value); in Parse()
42 bool Parse(const std::string& str_value, int64* value) { in Parse() argument
43 return ParseInt64(str_value.data(), value); in Parse()
46 bool Parse(const std::string& str_value, int32* value) { in Parse() argument
47 return ParseInt32(str_value.data(), value); in Parse()
50 bool Parse(const std::string& str_value, std::string* value) { in Parse() argument
51 *value = str_value; in Parse()
57 const std::string& str_value, MutableFlatbuffer* buffer) { in ParseAndSetField() argument
59 if (!Parse(str_value, &value)) { in ParseAndSetField()
60 TC3_LOG(ERROR) << "Could not parse '" << str_value << "'"; in ParseAndSetField()