/development/tools/winscope/src/parsers/protolog/perfetto/ |
D | parser_protolog_test.ts | 79 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/ |
D | viewer_transactions_component_test.ts | 139 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/ |
D | time.ts | 22 containsTimestamp(ts: Timestamp): boolean { 25 return ts.getValueNs() >= min && ts.getValueNs() <= max;
|
/development/tools/winscope/src/viewers/viewer_protolog/ |
D | viewer_protolog_component_test.ts | 139 const ts = TimestampConverterUtils.makeElapsedTimestamp(10n); constant 142 .setTimestamps([ts, ts])
|
/development/treble/ |
D | read_build_trace_gz.py | 53 name, ts = queue.pop() 54 self.duration[name] = t['ts'] - ts
|
/development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/player/ |
D | PlaylistItem.java | 62 public void setTimestamp(long ts) { in setTimestamp() argument 63 mTimestamp = ts; in setTimestamp()
|
/development/samples/VoiceInteractionService/ |
D | README.md | 69 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 | .editorconfig | 11 [*.ts]
|
/development/tools/axl/ |
D | chewperf.py | 20 ts = int(rawLines[x - 1].split()[-1]) 21 times.append(ts)
|
/development/tools/winscope/ |
D | google.tslint.json | 47 // Add tests in google3/javascript/typescript/tslint/test/googleConfig/ban_types.ts.lint
|
/development/tools/winscope/src/app/components/timeline/expanded-timeline/ |
D | default_timeline_row_component.ts | 161 const ts = constant 165 return assertDefined(this.timestampConverter).makeTimestampFromNs(ts);
|
/development/samples/IntentPlayground/src/com/example/android/intentplayground/ |
D | Tracking.java | 274 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/ |
D | log_viewer_presenter_test.ts | 178 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/ |
D | utils.ts | 360 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/ |
D | traces_parser_transitions.ts | 82 const ts = this.getTimestampFromTransitionProperties(entry); constant 83 this.timestamps.push(ts ?? zeroTs);
|