Searched refs:ParseTypedParameter (Results 1 – 6 of 6) sorted by relevance
73 absl::optional<T> ParseTypedParameter(std::string);91 absl::optional<T> value = ParseTypedParameter<T>(*str_value); in Parse()125 absl::optional<T> value = ParseTypedParameter<T>(*str_value); in Parse()200 absl::optional<T> value = ParseTypedParameter<T>(*str_value); in Parse()235 auto parsed = ParseTypedParameter<T>(str); in ParseOptionalParameter()242 absl::optional<bool> ParseTypedParameter<bool>(std::string str);244 absl::optional<double> ParseTypedParameter<double>(std::string str);246 absl::optional<int> ParseTypedParameter<int>(std::string str);248 absl::optional<unsigned> ParseTypedParameter<unsigned>(std::string str);250 absl::optional<std::string> ParseTypedParameter<std::string>(std::string str);[all …]
104 absl::optional<bool> ParseTypedParameter<bool>(std::string str) { in ParseTypedParameter() function114 absl::optional<double> ParseTypedParameter<double>(std::string str) { in ParseTypedParameter() function127 absl::optional<int> ParseTypedParameter<int>(std::string str) { in ParseTypedParameter() function138 absl::optional<unsigned> ParseTypedParameter<unsigned>(std::string str) { in ParseTypedParameter() function149 absl::optional<std::string> ParseTypedParameter<std::string>(std::string str) { in ParseTypedParameter() function154 absl::optional<absl::optional<bool>> ParseTypedParameter<absl::optional<bool>>( in ParseTypedParameter() function159 absl::optional<absl::optional<int>> ParseTypedParameter<absl::optional<int>>( in ParseTypedParameter() function165 ParseTypedParameter<absl::optional<unsigned>>(std::string str) { in ParseTypedParameter() function170 ParseTypedParameter<absl::optional<double>>(std::string str) { in ParseTypedParameter() function190 absl::optional<bool> opt_value = ParseTypedParameter<bool>(*str_value); in Parse()[all …]
50 absl::optional<DataRate> ParseTypedParameter<DataRate>(std::string str) { in ParseTypedParameter() function63 absl::optional<DataSize> ParseTypedParameter<DataSize>(std::string str) { in ParseTypedParameter() function73 absl::optional<TimeDelta> ParseTypedParameter<TimeDelta>(std::string str) { in ParseTypedParameter() function89 ParseTypedParameter<absl::optional<DataRate>>(std::string str) { in ParseTypedParameter() function94 ParseTypedParameter<absl::optional<DataSize>>(std::string str) { in ParseTypedParameter() function99 ParseTypedParameter<absl::optional<TimeDelta>>(std::string str) { in ParseTypedParameter() function
21 absl::optional<DataRate> ParseTypedParameter<DataRate>(std::string str);23 absl::optional<DataSize> ParseTypedParameter<DataSize>(std::string str);25 absl::optional<TimeDelta> ParseTypedParameter<TimeDelta>(std::string str);
57 auto parsed = ParseTypedParameter<T>(std::string(src)); in Parse()
78 absl::optional<T> value = ParseTypedParameter<T>(token); in Parse()