Home
last modified time | relevance | path

Searched refs:AllocationFunction (Results 1 – 10 of 10) sorted by relevance

/developtools/smartperf_host/ide/src/js-heap/logic/
DAllocation.ts16 import { AllocationFunction } from '../model/UiStruct';
21 private traceNodes: Array<AllocationFunction>;
22 private bottomUpList: Array<AllocationFunction>;
32 let keyMap = new Map<String, AllocationFunction>();
67 private getNodeById(id: number): AllocationFunction | null {
76 private getFunctionStack(node: AllocationFunction, functionList: Array<HeapTraceFunctionInfo>) {
92 public getFunctionList(): Array<AllocationFunction> {
101 public getParent(node: AllocationFunction) {
114 if (!node.parents) node.parents = new Array<AllocationFunction>();
DHeapLoader.ts17 import { AllocationFunction, ConstructorComparison, ConstructorItem, ConstructorType } from '../mod…
102 loadAllocationParent(node: AllocationFunction) {
110 getAllocationFunctionList(): Array<AllocationFunction> {
/developtools/smartperf_host/ide/src/js-heap/model/
DUiStruct.ts133 export class AllocationFunction { class
137 parents: Array<AllocationFunction>;
168 this.parents = new Array<AllocationFunction>();
186 getChildren(): AllocationFunction[] {
194 clone(): AllocationFunction {
195 let cloneItem = new AllocationFunction(
DDatabaseStruct.ts17 import { AllocationFunction, FileInfo } from './UiStruct';
250 traceNodes: Array<AllocationFunction>;
260 this.traceNodes = new Array<AllocationFunction>();
/developtools/smartperf_host/ide/test/js-heap/model/
DUiStruct.test.ts15 import { ConstructorItem, ConstructorComparison,FileInfo,AllocationFunction } from '../../../src/js…
37 let allocationFunction = new AllocationFunction();
65 let allocationFunction = new AllocationFunction();
/developtools/smartperf_host/ide/src/js-heap/
DLoadDatabase.ts16 import { AllocationFunction, FileType } from './model/UiStruct';
129 let traceNode = new AllocationFunction(
DHeapDataInterface.ts18 AllocationFunction,
137 public getParentFunction(node: AllocationFunction) {
/developtools/smartperf_host/ide/test/js-heap/logic/
DAllocation.test.ts16 import { AllocationFunction } from '../../../src/js-heap/model/UiStruct';
20 AllocationFunction: {
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerCommon.ts591 AllocationFunction: string | undefined;
DProcedureLogicWorkerNativeNemory.ts1178 currentNode.symbol = callChain.AllocationFunction || '';