Home
last modified time | relevance | path

Searched refs:propertiesTree (Results 1 – 18 of 18) sorted by relevance

/development/tools/winscope/src/viewers/viewer_transactions/
Dviewer_transactions_component_test.ts76 const propertiesTree = new PropertiesTreeGenerator().generate('ROOT', {KEY: 'VALUE'}); constant
88 propertiesTree
91 return new UiData([], [], [], [], [], [], [entry], 0, 0, 0, propertiesTree);
Dui_data.ts47 public propertiesTree?: PropertiesTreeNode property in UiDataEntry
Dpresenter_test.ts219 expect(entry.propertiesTree).toEqual({});
242 assertDefined(outputUiData).entries[0].propertiesTree
250 assertDefined(outputUiData).entries[10].propertiesTree
259 assertDefined(outputUiData).entries[0].propertiesTree
Dpresenter.ts267 return entries[selectedEntryIndex].propertiesTree;
270 return entries[currentEntryIndex].propertiesTree;
/development/tools/winscope/src/viewers/viewer_surface_flinger/
Dpresenter_test.ts180 expect(uiData.propertiesTree).toBeTruthy();
203 expect(uiData.propertiesTree?.diffType).toBeFalsy();
207 expect(uiData.propertiesTree?.diffType).toBeTruthy();
214 uiData.propertiesTree?.children?.filter(
222 uiData.propertiesTree?.children?.filter(
Dui_data.ts31 propertiesTree: PropertiesTreeNode | null = null; property in UiData
Dpresenter.ts237 this.uiData.propertiesTree = this.getTreeWithTransformedProperties(
/development/tools/winscope/src/viewers/viewer_window_manager/
Dpresenter_test.ts185 expect(uiData.propertiesTree).toBeTruthy();
208 expect(uiData.propertiesTree?.diffType).toBeFalsy();
212 expect(uiData.propertiesTree?.diffType).toBeTruthy();
220 uiData.propertiesTree?.children?.filter(
228 uiData.propertiesTree?.children?.filter(
Dui_data.ts30 propertiesTree: PropertiesTreeNode | null = null; property in UiData
Dpresenter.ts208 this.uiData.propertiesTree = this.getTreeWithTransformedProperties(
/development/tools/winscope/src/viewers/viewer_view_capture/
Dpresenter_test.ts173 expect(uiData.propertiesTree).toBeTruthy();
195 expect(uiData.propertiesTree?.diffType).toBeFalsy();
199 expect(uiData.propertiesTree?.diffType).toBeTruthy();
221 let nonTerminalChildren = uiData.propertiesTree?.children?.filter(
227 nonTerminalChildren = uiData.propertiesTree?.children?.filter(
Dui_data.ts33 public propertiesTree: PropertiesTreeNode | null property in UiData
Dpresenter.ts248 this.uiData!!.propertiesTree = this.getTreeWithTransformedProperties(
/development/tools/winscope/src/viewers/common/
Dime_ui_data.ts29 propertiesTree: PropertiesTreeNode | null = null; property in ImeUiData
Dpresenter_input_method_test_utils.ts181 expect(uiData.propertiesTree).toBeTruthy();
188 uiData.propertiesTree?.children?.filter(
196 uiData.propertiesTree?.children?.filter(
Dpresenter_input_method.ts237 this.uiData.propertiesTree = this.getTreeWithTransformedProperties(
/development/tools/winscope/src/viewers/components/
Dproperties_component_test.ts53 component.propertiesTree = {};
Dproperties_component.ts123 @Input() propertiesTree: PropertiesTreeNode = {}; property in PropertiesComponent