Home
last modified time | relevance | path

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

/development/tools/winscope/src/parsers/protolog/perfetto/
Dparser_protolog_test.ts76 const ts = (await parser.getEntry(i)) constant
79 expect(ts >= prevEntryTs).toBeTrue();
80 prevEntryTs = ts;
86 for (const ts of assertDefined(parser.getTimestamps())) { constant
87 expect(ts.getValueNs() >= prevEntryTs).toBeTrue();
88 prevEntryTs = ts.getValueNs();
/development/tools/winscope/src/common/
Dtime.ts22 containsTimestamp(ts: Timestamp): boolean {
25 return ts.getValueNs() >= min && ts.getValueNs() <= max;
/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/axl/
Dchewperf.py20 ts = int(rawLines[x - 1].split()[-1])
21 times.append(ts)
/development/tools/motion/motion_test_watcher_app/
D.editorconfig11 [*.ts]
/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/tools/winscope/
Dgoogle.tslint.json47 // Add tests in google3/javascript/typescript/tslint/test/googleConfig/ban_types.ts.lint
/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()