Home
last modified time | relevance | path

Searched refs:scrollToIndex (Results 1 – 7 of 7) sorted by relevance

/development/tools/winscope/src/viewers/viewer_transactions/
Dviewer_transactions_component.ts273 this.uiData.scrollToIndex !== undefined &&
276 this.uiData.entries[this.uiData.scrollToIndex].time.formattedValue()
278 this.scrollComponent.scrollToIndex(this.uiData.scrollToIndex);
316 this.scrollComponent.scrollToIndex(this.uiData.currentEntryIndex);
Dpresenter_test.ts123 expect(assertDefined(outputUiData).scrollToIndex).toEqual(13);
296 expect(assertDefined(outputUiData).scrollToIndex).toEqual(undefined); // no scrolling
301 expect(assertDefined(outputUiData).scrollToIndex).toEqual(undefined);
311 expect(assertDefined(outputUiData).scrollToIndex).toEqual(newIndex);
362 expect(uiData.scrollToIndex).toEqual(0);
Dui_data.ts34 public scrollToIndex: undefined | number, property in UiData
Dpresenter.ts119 this.uiData.scrollToIndex = this.uiData.currentEntryIndex;
181 this.uiData.scrollToIndex = undefined; // no scrolling
190 this.uiData.scrollToIndex = index;
/development/tools/winscope/src/viewers/viewer_protolog/
Dviewer_protolog_component.ts214 this.scrollComponent.scrollToIndex(this.uiData.currentMessageIndex);
238 this.scrollComponent.scrollToIndex(this.uiData.currentMessageIndex);
/development/tools/winscope/src/viewers/common/
Dscroll_component_test_utils.ts75 viewport.scrollToIndex(i);
Dvariable_height_scroll_strategy.ts79 scrollToIndex(index: number) { method in VariableHeightScrollStrategy