Searched refs:last_value (Results 1 - 10 of 10) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
H A Dsequence.py65 last_value = val[-self.sequence_length:]
66 if (not self.rollover) and (last_value == self.last_item):
67 val = "%s%s" % (self(val[:-self.sequence_length]), self._inc(last_value))
69 val = "%s%s" % (val[:-self.sequence_length], self._inc(last_value))
134 self.last_value = None
164 new_val['last_value'] = self._value
185 if "last_value" in val and val['last_value'] is not None:
186 self.last_value = self.item_type(val['last_value'])
[all...]
/external/autotest/client/cros/networking/
H A Dshill_proxy.py445 last_value = properties.get(property_name, '(no value found)')
446 if last_value in expected_values:
447 return True, last_value, duration()
464 last_value = value
465 if not last_value in expected_values:
468 return True, last_value, duration()
474 return False, last_value, duration()
/external/chromium-trace/catapult/third_party/WebOb/webob/
H A Dclient.py150 last_header, last_value = headers_out.pop()
151 value = last_value + ', ' + full_header.strip()
/external/chromium-trace/catapult/third_party/Paste/paste/
H A Dproxy.py269 last_header, last_value = headers_out.pop()
270 value = last_value + ' ' + full_header.strip()
/external/webp/src/enc/
H A Dframe.c38 double value, last_value; // PSNR or size member in struct:__anon20542
54 s->value = s->last_value = 0.;
68 } else if (s->value != s->last_value) {
69 const double slope = (s->target - s->value) / (s->last_value - s->value);
77 s->last_value = s->value;
610 num_pass_left, stats.last_value, stats.value, stats.last_q, stats.q);
814 num_pass_left, stats.last_value, stats.value,
/external/v8/tools/
H A Dstats-viewer.py280 self.last_value = None
292 if value == self.last_value:
295 self.last_value = value
/external/google-breakpad/src/common/windows/
H A Dpdb_source_line_writer.cc868 int last_value = value; local
871 if (value / 10 != last_value || value < 0) {
878 last_value = value;
881 if (value < last_value) {
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_framework.cc55 const FlowIds CreateFlowIdRange(int initial_value, int last_value) { argument
56 int size = last_value - initial_value + 1;
59 for (int i = initial_value; i <= last_value; ++i) {
H A Dbwe_test_framework.h78 const FlowIds CreateFlowIdRange(int initial_value, int last_value);
/external/chromium-trace/catapult/third_party/gsutil/gslib/
H A Dcommand.py1784 last_value = self.last_shared_var_values.get(key, 0)
1788 delta = getattr(cls, name) - last_value
1789 self.last_shared_var_values[key] = delta + last_value

Completed in 389 milliseconds