Home
last modified time | relevance | path

Searched refs:ts (Results 1 – 15 of 15) sorted by relevance

/development/tools/winscope/src/parsers/protolog/perfetto/
Dparser_protolog_test.ts79 const ts = (await parser.getEntry(i)) constant
82 expect(ts >= prevEntryTs).toBeTrue();
83 prevEntryTs = ts;
89 for (const ts of assertDefined(parser.getTimestamps())) { constant
90 expect(ts.getValueNs() >= prevEntryTs).toBeTrue();
91 prevEntryTs = ts.getValueNs();
/development/tools/winscope/src/viewers/viewer_transactions/
Dviewer_transactions_component_test.ts139 const ts = TimestampConverterUtils.makeElapsedTimestamp(1n); constant
143 .setTimestamps([ts, ts])
178 const ts = TimestampConverterUtils.makeElapsedTimestamp(1n); constant
183 .setTimestamps([ts, ts])
/development/tools/winscope/src/common/time/
Dtime.ts22 containsTimestamp(ts: Timestamp): boolean {
25 return ts.getValueNs() >= min && ts.getValueNs() <= max;
/development/tools/winscope/src/viewers/viewer_protolog/
Dviewer_protolog_component_test.ts139 const ts = TimestampConverterUtils.makeElapsedTimestamp(10n); constant
142 .setTimestamps([ts, ts])
/development/treble/
Dread_build_trace_gz.py53 name, ts = queue.pop()
54 self.duration[name] = t['ts'] - ts
/development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/
DPlaylistItem.java62 public void setTimestamp(long ts) { in setTimestamp() argument
63 mTimestamp = ts; in setTimestamp()
/development/samples/VoiceInteractionService/
DREADME.md69 ts,
82 SELECT ts, name, value
87 SELECT ts, 'event' as type, name, dur_ms as value
90 SELECT ts, 'counter' as type, name, value
92 ORDER BY ts
/development/tools/motion/motion_test_watcher_app/
D.editorconfig11 [*.ts]
/development/tools/axl/
Dchewperf.py20 ts = int(rawLines[x - 1].split()[-1])
21 times.append(ts)
/development/tools/winscope/
Dgoogle.tslint.json47 // Add tests in google3/javascript/typescript/tslint/test/googleConfig/ban_types.ts.lint
/development/tools/winscope/src/app/components/timeline/expanded-timeline/
Ddefault_timeline_row_component.ts161 const ts = constant
165 return assertDefined(this.timestampConverter).makeTimestampFromNs(ts);
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DTracking.java274 public static <T> List<T> reverseAndCopy(List<T> ts) { in reverseAndCopy() argument
275 ListIterator<T> iterator = ts.listIterator(ts.size()); in reverseAndCopy()
/development/tools/winscope/src/viewers/common/
Dlog_viewer_presenter_test.ts178 const ts = TimestampConverterUtils.makeZeroTimestamp(); constant
181 detail: new TimestampClickDetail(undefined, ts),
184 expect(spy).toHaveBeenCalledWith(ts);
500 const ts = TimestampConverterUtils.makeZeroTimestamp(); constant
501 await presenter.onRawTimestampClick(ts);
503 TracePositionUpdate.fromTimestamp(ts, true),
/development/tools/winscope/src/test/unit/
Dutils.ts360 ts?: Timestamp,
370 if (ts !== undefined) columns.push('ts');
380 if (ts !== undefined) {
381 spyIter.get.withArgs('ts').and.returnValue(ts.getValueNs());
/development/tools/winscope/src/parsers/transitions/legacy/
Dtraces_parser_transitions.ts82 const ts = this.getTimestampFromTransitionProperties(entry); constant
83 this.timestamps.push(ts ?? zeroTs);