Home
last modified time | relevance | path

Searched refs:collectList (Results 1 – 3 of 3) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/
DSpSystemTrace.line.ts27 function collectionHasJank(jankRow: any, collectList: TraceRow<any>[]): boolean {
28 for (let item of collectList!) {
64 let collectList = sp.favoriteChartListEL!.getAllCollectRows();
82 let expansionFlag = collectionHasJank(endRowStruct, collectList);
91 expansionFlag = collectionHasJank(startRow, collectList);
112 let collectList = sp.favoriteChartListEL!.getAllCollectRows();
118 let expansionFlag = collectionHasJank(endRowStruct, collectList);
126 expansionFlag = collectionHasJank(startRow, collectList);
241 let collectList = sp.favoriteChartListEL!.getAllCollectRows();
258 for (let collectChart of collectList) {
[all …]
DSpSystemTrace.ts1232 getStartRow(selectRowId: number | undefined, collectList: any[]): any {
1237 for (let collectChart of collectList) {
1277 const collectList = this.favoriteChartListEL!.getCollectRows(); constant
1278 for (let item of collectList!) {
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceRow.ts43 let collectList: Array<any> = []; variable
1020 let startDragNode = collectList.findIndex((it) => it === rowDragElement);
1021 let endDragNode = collectList.findIndex((it) => it === this);
1028 collectList.splice(endDragNode, 0, ...collectList.splice(startDragNode, 1));
1029 collectList.forEach((it, i) => {
1033 it.style.top = `${collectList[i - 1].offsetTop + collectList[i - 1].offsetHeight}px`;