Home
last modified time | relevance | path

Searched refs:searchValue (Results 1 – 14 of 14) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/
DTabPerfBottomUp.ts38 private searchValue: string = ''; property in TabpanePerfBottomUp
50 if (this.searchValue !== this.bottomUpFilter!.filterValue) {
51 this.searchValue = this.bottomUpFilter!.filterValue;
52 findSearchNode(this.bottomUpSource, this.searchValue, false);
DTabPerfProfile.ts55 private searchValue: string = ''; property in TabpanePerfProfile
97 this.searchValue = '';
159 this.searchValue = '';
471 if (this.searchValue !== this.perfProfilerFilter!.filterValue) {
472 this.searchValue = this.perfProfilerFilter!.filterValue;
476 funcArgs: [this.searchValue],
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ark-ts/
DTabPaneJsCpu.ts38 private searchValue: string = ''; property in TabPaneJsCpuCallTree
186 if (this.searchValue !== this.profilerFilter!.filterValue) {
187 this.searchValue = this.profilerFilter!.filterValue;
188 findSearchNode(this.callTreeSource, this.searchValue, false);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMCallTree.ts53 private searchValue: string = ''; property in TabpaneNMCalltree
135 this.searchValue = '';
626 this.searchValue = this.nmCallTreeFilter!.filterValue;
627 this.expressionStruct = new ParseExpression(this.searchValue).parse();
629 } else if (this.searchValue !== this.nmCallTreeFilter!.filterValue) {
630 this.searchValue = this.nmCallTreeFilter!.filterValue;
631 this.expressionStruct = new ParseExpression(this.searchValue).parse();
643 nmArgs.push({ funcName: 'setSearchValue', funcArgs: [this.searchValue] });
665 this.searchValue = '';
803 nmCallTreeArgs.push({ funcName: 'setSearchValue', funcArgs: [this.searchValue] });
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/
DTabPaneFileSystemCalltree.ts53 private searchValue: string = ''; property in TabpaneFilesystemCalltree
98 this.searchValue = '';
203 this.searchValue = '';
367 if (this.searchValue != this.fsCallTreeFilter!.filterValue) {
368 this.searchValue = this.fsCallTreeFilter!.filterValue;
372 funcArgs: [this.searchValue],
DTabPaneCallTree.ts54 private searchValue: string = ''; property in TabPaneCallTree
99 this.searchValue = '';
207 this.searchValue = '';
463 if (this.searchValue !== this.callTreeFilter!.filterValue) {
464 this.searchValue = this.callTreeFilter!.filterValue;
468 funcArgs: [this.searchValue],
/developtools/smartperf_host/ide/src/trace/component/trace/search/
DSearch.ts59 get searchValue() { method in LitSearch
382 updateSearchHistoryList(searchValue: string) {
383 const keyword = searchValue.toLowerCase();
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerCommon.ts121 searchValue: string
131 this.resetAllNode(data, currentTreeList, searchValue);
226 resetAllNode(data: MerageBean[], currentTreeList: any[], searchValue: string): void {
233 if (searchValue != '') {
234 this.findSearchNode(data, searchValue, false);
DProcedureLogicWorkerNativeNemory.ts37 searchValue: string = ''; property in ProcedureLogicWorkerNativeMemory
110 this.searchValue = '';
131 this.searchValue = '';
889 this.searchValue = '';
1087 merageBeanDataSplit.resetAllNode(this.allThreads, this.currentTreeList, this.searchValue);
1100 this.searchValue
1104 this.searchValue = args[0];
DProcedureLogicWorkerFileSystem.ts628 searchValue: string = ''; property in FileSystemCallTreeHandler
961 merageBeanDataSplit.resetAllNode(this.allProcess, this.currentTreeList, this.searchValue);
972 …geBeanDataSplit.splitTree(map, this.allProcess, args[0], args[1], args[2], list, this.searchValue);
975 this.searchValue = args[0];
1005 this.searchValue = '';
DProcedureLogicWorkerPerf.ts31 searchValue: string = ''; property in ProcedureLogicWorkerPerf
356 this.searchValue = '';
664 if (this.searchValue !== '') {
665 this.findSearchNode(sample, this.searchValue, false);
802 this.searchValue = funcArgs[0];
/developtools/smartperf_host/ide/test/trace/component/trace/search/
DSearch.test.ts81 expect(search.searchValue).toBe('');
/developtools/smartperf_host/ide/src/trace/
DSpApplication.ts1517 let searchValue = value.toString().trim(); variable
1518 clipdata!.setData('text/plain', searchValue);
1553 if (this.litSearch!.searchValue !== '') {
/developtools/smartperf_host/ide/src/trace/component/
DSpSystemTrace.event.ts405 if (search && search.searchValue !== '') {