Home
last modified time | relevance | path

Searched refs:SelectionData (Results 1 – 17 of 17) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/trace/sheet/clock/
DTabPaneClockCounter.ts18 import { Counter, SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
25 private clockCounterSource: Array<SelectionData> = [];
39 let dataSource: Array<SelectionData> = [];
49 let sumData = new SelectionData();
107 …SelectCounterData(name: string, list: Array<any>, leftNs: number, rightNs: number): SelectionData {
108 let selectCounterData = new SelectionData();
142 return function (clockCounterLeftData: SelectionData, clockCounterRightData: SelectionData) {
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/process/
DTabPaneCounter.ts18 import { Counter, SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
26 private counterSource: Array<SelectionData> = [];
43 let dataSource: Array<SelectionData> = [];
59 let sumData = new SelectionData();
139 createSelectCounterData(list: Array<Counter>, leftNs: number, rightNs: number): SelectionData {
140 let counterData = new SelectionData();
174 return function (counterLeftData: SelectionData, counterRightData: SelectionData) {
DTabPaneThreadStates.ts18 import { SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
31 private threadStatesTblSource: Array<SelectionData> = [];
61 let compare = (threadState1: SelectionData, threadState2: SelectionData): number => {
76 …ThreadStates(threadStatDetail: Array<any>, leftNs: number, rightNs: number): Array<SelectionData> {
266 …return function (threadStatesLeftData: SelectionData | any, threadStatesRightData: SelectionData |…
DTabPaneSlices.ts18 import { SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
31 private slicesSource: Array<SelectionData> = [];
63 let count = new SelectionData();
206 return function (slicesLeftData: SelectionData, slicesRightData: SelectionData) {
DTabPaneThreadUsage.ts18 import { SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
34 private threadUsageSource: Array<SelectionData> = [];
195 …return function (threadUsageLeftData: SelectionData | any, threadUsageRightData: SelectionData | a…
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/cpu/
DTabPaneCpuByProcess.ts18 import { SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
28 private cpuByProcessSource: Array<SelectionData> = [];
61 let count = new SelectionData();
123 return function (cpuByProcessLeftData: SelectionData, cpuByProcessRightData: SelectionData) {
DTabPaneBoxChild.ts18 import { BoxJumpParam, SelectionData } from '../../../../bean/BoxSelection';
125 return function (boxChildLeftData: SelectionData, boxChildRightData: SelectionData) {
DTabPaneCpuByThread.ts18 import { SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
29 private cpuByThreadSource: Array<SelectionData> = [];
208 return function (cpuByThreadLeftData: SelectionData, cpuByThreadRightData: SelectionData) {
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/irq/
DTabPaneIrqCounter.ts18 import { SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
26 private irqCounterSource: Array<SelectionData> = [];
39 let dataSource: Array<SelectionData> = [];
46 let selectData = new SelectionData();
/developtools/smartperf_host/ide/src/trace/database/sql/
DProcessThread.sql.ts16 import { SelectionData } from '../../bean/BoxSelection';
57 query<SelectionData>(
94 return query<SelectionData>('getTabThreadStatesCpu', sql, {
102 query<SelectionData>(
980 query<SelectionData>(
1014 query<SelectionData>(
1041 query<SelectionData>(
DFunc.sql.ts18 import { SelectionData } from '../../bean/BoxSelection';
159 query<SelectionData>(
/developtools/smartperf_host/ide/test/trace/bean/
DBoxSelection.test.ts16 import { SelectionParam, BoxJumpParam, SelectionData, Counter, Fps } from '../../../src/trace/bean/…
21 let selectionData = new SelectionData();
/developtools/smartperf_host/ide/src/trace/component/
DStackBar.ts17 import { SelectionData } from '../bean/BoxSelection';
28 set data(val: Array<SelectionData>) {
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/sdk/
DTabPaneSdkCounter.ts18 import { SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
221 return function (aSdkCounter: SelectionData, bSdkCounter: SelectionData) {
DTabPaneSdkSlice.ts18 import { SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
252 return function (aSdkSlice: SelectionData, bSdkSlice: SelectionData) {
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/jank/
DTabPaneFrames.ts17 import { SelectionData, SelectionParam } from '../../../../bean/BoxSelection';
251 return function (framesLeftData: SelectionData, framesRightData: SelectionData) {
/developtools/smartperf_host/ide/src/trace/bean/
DBoxSelection.ts1010 export class SelectionData { class