Home
last modified time | relevance | path

Searched refs:ParseTypedParameter (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/rtc_base/experiments/
Dfield_trial_parser.h73 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 …]
Dfield_trial_parser.cc104 absl::optional<bool> ParseTypedParameter<bool>(std::string str) { in ParseTypedParameter() function
114 absl::optional<double> ParseTypedParameter<double>(std::string str) { in ParseTypedParameter() function
127 absl::optional<int> ParseTypedParameter<int>(std::string str) { in ParseTypedParameter() function
138 absl::optional<unsigned> ParseTypedParameter<unsigned>(std::string str) { in ParseTypedParameter() function
149 absl::optional<std::string> ParseTypedParameter<std::string>(std::string str) { in ParseTypedParameter() function
154 absl::optional<absl::optional<bool>> ParseTypedParameter<absl::optional<bool>>( in ParseTypedParameter() function
159 absl::optional<absl::optional<int>> ParseTypedParameter<absl::optional<int>>( in ParseTypedParameter() function
165 ParseTypedParameter<absl::optional<unsigned>>(std::string str) { in ParseTypedParameter() function
170 ParseTypedParameter<absl::optional<double>>(std::string str) { in ParseTypedParameter() function
190 absl::optional<bool> opt_value = ParseTypedParameter<bool>(*str_value); in Parse()
[all …]
Dfield_trial_units.cc50 absl::optional<DataRate> ParseTypedParameter<DataRate>(std::string str) { in ParseTypedParameter() function
63 absl::optional<DataSize> ParseTypedParameter<DataSize>(std::string str) { in ParseTypedParameter() function
73 absl::optional<TimeDelta> ParseTypedParameter<TimeDelta>(std::string str) { in ParseTypedParameter() function
89 ParseTypedParameter<absl::optional<DataRate>>(std::string str) { in ParseTypedParameter() function
94 ParseTypedParameter<absl::optional<DataSize>>(std::string str) { in ParseTypedParameter() function
99 ParseTypedParameter<absl::optional<TimeDelta>>(std::string str) { in ParseTypedParameter() function
Dfield_trial_units.h21 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);
Dstruct_parameters_parser.cc57 auto parsed = ParseTypedParameter<T>(std::string(src)); in Parse()
Dfield_trial_list.h78 absl::optional<T> value = ParseTypedParameter<T>(token); in Parse()