Searched refs:tmp_value (Results 1 – 3 of 3) sorted by relevance
/third_party/gstreamer/gstplugins_bad/ext/dash/ |
D | gstxmlhelper.c | 88 guint64 tmp_value; in _mpd_helper_parse_duration() local 261 tmp_value = 0; in _mpd_helper_parse_duration() 262 if (!_mpd_helper_accumulate (&tmp_value, 1, years) in _mpd_helper_parse_duration() 263 || !_mpd_helper_accumulate (&tmp_value, 365, months * 30) in _mpd_helper_parse_duration() 264 || !_mpd_helper_accumulate (&tmp_value, 1, days) in _mpd_helper_parse_duration() 265 || !_mpd_helper_accumulate (&tmp_value, 24, hours) in _mpd_helper_parse_duration() 266 || !_mpd_helper_accumulate (&tmp_value, 60, minutes) in _mpd_helper_parse_duration() 267 || !_mpd_helper_accumulate (&tmp_value, 60, seconds) in _mpd_helper_parse_duration() 268 || !_mpd_helper_accumulate (&tmp_value, 1000, decimals)) in _mpd_helper_parse_duration() 272 if (tmp_value > G_MAXUINT64 / 1000000) in _mpd_helper_parse_duration() [all …]
|
/third_party/python/Lib/ |
D | configparser.py | 399 tmp_value = value.replace('%%', '') # escaped percent signs 400 tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax 401 if '%' in tmp_value: 403 "position %d" % (value, tmp_value.find('%'))) 460 tmp_value = value.replace('$$', '') # escaped dollar signs 461 tmp_value = self._KEYCRE.sub('', tmp_value) # valid syntax 462 if '$' in tmp_value: 464 "position %d" % (value, tmp_value.find('$')))
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
D | Message.php | 1252 foreach ($value as $tmp_key => $tmp_value) { 1253 if (is_null($tmp_value)) { 1263 $tmp_value,
|