Searched refs:timestamps (Results 1 - 25 of 48) sorted by last modified time

12

/external/valgrind/main/none/tests/
H A Dcmdline1.stdout.exp27 --time-stamp=no|yes add timestamps to log messages? [no]
H A Dcmdline2.stdout.exp27 --time-stamp=no|yes add timestamps to log messages? [no]
/external/strace/
H A Dstrace-log-merge12 option which prints timestamps (otherwise sorting won't do any good).
/external/qemu/
H A Dqemu-char.c281 int timestamps; member in struct:__anon30076
291 if (!d->timestamps) {
330 "% t toggle console timestamps\n\r"
402 d->timestamps = !d->timestamps;
/external/llvm/utils/release/
H A Dtest-release.sh304 --disable-timestamps \
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.engine_2.0.0.v20100606.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar ... IOException e private boolean isUpToDate () java.util.Properties timestamps java.util.Collection files java.util. ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A DplotJitterEstimate.m3 [timestamps, framedata, slopes, randJitters, framestats, timetable, filtjitter, rtt, rttStatsVec] = jitterBufferTraceParser(filename);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DHeapSnapshotView.js1260 profileSamples.timestamps[currentIndex] = data.timestamp;
1261 if (profileSamples.totalTime < data.timestamp - profileSamples.timestamps[0])
1319 'timestamps': [],
1768 var timestamps = this._profileSamples.timestamps;
1771 this._windowRight = totalTime && timestamps.length ? (timestamps[timestamps.length - 1] - timestamps[0]) / totalTime : 1.0;
1803 var timestamps
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCPUProfileDataModel.js14 this.timestamps = profile.timestamps;
90 var timestamps = this.timestamps;
91 if (!timestamps) {
92 // Support loading old CPU profiles that are missing timestamps.
93 // Derive timestamps from profile start and stop times.
96 timestamps = new Float64Array(this.samples.length + 1);
97 for (var i = 0; i < timestamps.length; ++i)
98 timestamps[
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineJSProfile.js108 var timestamps = jsProfileModel.timestamps;
123 WebInspector.TracingModel.Phase.Instant, timestamps[i], mainThread);
/external/chromium_org/tools/memory_inspector/memory_inspector/data/
H A Dfile_storage.py119 """Returns a list of timestamps (datetime.datetime instances)."""
123 timestamps = [datetime.datetime.strptime(x, Archive._TIME_FMT)
125 return timestamps
/external/chromium_org/tools/perf/metrics/
H A Dtimeline_unittest.py78 x_counter.timestamps += [0, 1]
/external/chromium_org/tools/perf/page_sets/mse_cases/
H A Dstartup_test.js46 function plotTimestamps(timestamps, graphDuration, element) {
47 if (!timestamps)
62 start: timestamps.testStartTime,
63 end: timestamps.testEndTime,
66 start: timestamps.mediaSourceOpenStartTime,
67 end: timestamps.mediaSourceOpenEndTime,
72 for (var i = 0; i < timestamps.appenders.length; ++i) {
73 var appender = timestamps.appenders[i];
90 end: timestamps.testEndTime,
393 var timestamps
[all...]
/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dcounter.py22 return self._counter.timestamps[self._sample_index]
26 self._counter.timestamps[self._sample_index] = start
57 self.timestamps = []
67 if not event_type_predicate(CounterSample) or not self.timestamps:
73 for i in xrange(len(self.timestamps)):
84 return len(self.timestamps)
89 'Length of samples must be a multiple of length of timestamps.')
H A Dcounter_unittest.py31 self.counter.timestamps = [111, 222]
37 self.counter.timestamps = [111, 222]
43 self.counter.timestamps = [111, 222]
51 self.counter.timestamps = [111, 222]
H A Dtrace_event_importer.py141 ctr.timestamps.append(event['ts'] / 1000.0)
H A Dtrace_event_importer_unittest.py531 self.assertEqual([0, 0.01, 0.02], ctr.timestamps)
565 self.assertEqual([0, 0.01], ctr.timestamps)
573 self.assertEqual([0.01, 0.015, 0.018], ctr.timestamps)
581 self.assertEqual([0.02], ctr.timestamps)
588 ctr.timestamps = [0, 1, 2, 3, 4, 5, 6, 7]
629 self.assertEqual(sorted([0, 0.01, 0.02]), sorted(ctr.timestamps))
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dstatistics.py113 def TimestampsDiscrepancy(timestamps, absolute=True,
118 of timestamps. Note that this is different from metrics based on the
141 |timestamps| may be a list of lists S = [S_1, S_2, ..., S_N], where each
145 if not timestamps:
148 if isinstance(timestamps[0], list):
149 range_discrepancies = [TimestampsDiscrepancy(r) for r in timestamps]
152 samples, sample_scale = NormalizeSamples(timestamps)
174 Because timestamp discrepancy is defined in terms of timestamps, we first
175 convert the list of durations to monotonically increasing timestamps.
185 timestamps
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DCmdLine.py21 -t, --timestamps Only compile newer source files
100 elif option in ("-t", "--timestamps"):
101 options.timestamps = 1
103 options.timestamps = 0
H A DMain.py467 timestamps boolean Only compile changed source files.
575 timestamps = options.timestamps
582 if not timestamps or context.c_file_out_of_date(source):
605 if isinstance(source, basestring) and not options.timestamps:
660 timestamps = None, variable
/external/chromium_org/sync/tools/testserver/
H A Dchromiumsync.py430 timestamps = {}
434 timestamps.setdefault(timestamp, []).append(data_type)
436 for stamp, types in sorted(timestamps.iteritems()))
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 440 milliseconds

12