Home
last modified time | relevance | path

Searched refs:select (Results 1 – 25 of 36) sorted by relevance

12

/developtools/smartperf_host/ide/test/base-ui/select/
DLitSelect.test.ts27 let select = document.querySelector('#litSelect') as LitSelect; variable
28 expect(select).not.toBeUndefined();
33 let select = document.querySelector('#litSelect') as LitSelect; variable
34 select.value = 'value';
35 expect(select.value).toBe('value');
40 let select = document.querySelector('#litSelect') as LitSelect; variable
41 select.border = 'value';
42 expect(select.border).toBe('true');
50 let select = document.querySelector('#litSelect') as LitSelect; variable
51 select.listHeight = true;
[all …]
DLitAllocationSelect.test.ts67 const select = document.getElementById('select'); constant
69 select!.onclick = onclick;
70 select!.click();
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/native-memory/
DTabPaneNMStatisticAnalysis.test.ts70 let select = { variable
100 tabStatisticAnalysis.data = select;
101 expect(tabStatisticAnalysis.currentSelection).toEqual(select);
113 tabStatisticAnalysis.getNMLibSize(dataArray, select);
118 expect(tabStatisticAnalysis.getNMFunctionSize(dataArray, select)).toBeUndefined();
122 tabStatisticAnalysis.getNMTypeSize(select, processData);
145 tabStatisticAnalysis.getNMTypeSize(select, processData);
168 tabStatisticAnalysis.getNMTypeSize(select, processData);
191 tabStatisticAnalysis.getNMTypeSize(select, processData);
406 expect(tabStatisticAnalysis.getNMThreadSize(dataArray, select)).toBeUndefined();
/developtools/smartperf_host/ide/test/base-ui/popover/
DLitPopover.test.ts62 expect(litPopover.select).toEqual(['# Samples']);
74 expect(litPopover.select).toEqual(['# Samples']);
86 expect(litPopover.select).toEqual(['# Samples']);
99 expect(litPopover.select).toEqual(['# Samples']);
/developtools/smartperf_host/ide/src/trace/component/setting/
DSpSdkConfig.ts313 let select = this.shadowRoot!.querySelector<LitSelectV>(`#${key}`);
314 select!.setAttribute('type', 'enum');
315 select!.setAttribute('value', this.sdkConfigList.configuration[key]['default']);
316 select!.dataSource(this.sdkConfigList.configuration[key]['enum'], '');
317 this.list.push(select!);
318 select!.addEventListener('click', () => {
319 select!.setAttribute('value', select!.value);
DSpTraceCommand.ts48 this.codeHl?.select();
/developtools/integration_verification/DeployDevice/src/aw/poweronoff/
Dserial_power_on_off.py2 import select
96 ready = select.select([self], [], [], 2)
/developtools/integration_verification/cases/smoke/basic/screenshot32/xdevice_smoke/APL_compare_03/
Dreadme.md60 sql语句:`QUERY_HAP_APL="select bundle_name,apl from hap_token_info_table"`
65 sql语句:`QUERY_NATIVE_APL="select process_name,apl from native_token_info_table"`
/developtools/integration_verification/cases/smoke/basic/screenshot32/APL_compare_03/
Dreadme.md60 sql语句:`QUERY_HAP_APL="select bundle_name,apl from hap_token_info_table"`
65 sql语句:`QUERY_NATIVE_APL="select process_name,apl from native_token_info_table"`
/developtools/smartperf_host/ide/src/doc/md/
Dquickstart_sql_metrics.md7 点击 Query(SQL),输入需要查询的 sql 语句,如 select \* from process,可以看到进程表数据。
Ddes_tables.md193 `select thread.* from thread, process where process.pid = 123 and thread.ipid = process.id`
203 …`select thread_state.* from thread, thread_state where thread.tid = 123 and thread.id = thread_sta…
223 …`select native_hook.* from thread, native_hook where thread.tid = 123 and thread.id = native_hook.…
225 `select * from native_hook_frame where callchain_id = 1`
227 `select * from native_hook_statistic where callchain_id = 1`
237 `select * from log where tid = 123 and level = "error"`
252 `select * from perf_sample where timestamp_trace = 28463134340470`
255 …`select A.* from perf_callchain as A, perf_sample as B where B.timestamp_trace = 28463134340470 an…
258 …`select A.*, B.name, C.path from perf_sample as A, perf_callchain as B, perf_files as C where A.ti…
261 `select * from perf_sample where thread_id = 6700`
[all …]
/developtools/ace_js2bundle/ace-loader/plugin/templater/
Dlite_component_map.js311 function select(deviceType) { function
318 let liteNativeTag = select(process.env.DEVICE_TYPE);
/developtools/smartperf_host/trace_streamer/doc/
Ddes_tables.md182 ```select thread.* from thread, process where process.pid = 123 and thread.ipid = process.id```
189 ```select thread_state.* from thread, thread_state where thread.tid = 123 and thread.id = thread_st…
206 ```select native_hook.* from thread, native_hook where thread.tid = 123 and thread.id = native_hook…
208 ```select * from native_hook_frame where callchain_id = 1```
210 ```select * from native_hook_statistic where callchain_id = 1```
217 ```select * from log where tid = 123 and level = "error"```
229 ```select * from perf_sample where timestamp_trace = 28463134340470```
232 ```select A.* from perf_callchain as A, perf_sample as B where B.timestamp_trace = 28463134340470 a…
235 ```select A.*, B.name, C.path from perf_sample as A, perf_callchain as B, perf_files as C where A.t…
238 ```select * from perf_sample where thread_id = 6700```
[all …]
/developtools/hdc/hdc_rust/src/daemon/
Dshell.rs240 let mut set = nix::sys::select::FdSet::new(); in subprocess_task()
243 match nix::sys::select::select(None, Some(&mut set), None, None, Some(&mut tv)) { in subprocess_task()
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/listener/
DOnChartValueSelectedListener.ets36 * Called when nothing has been selected or an "un-select" has been made.
/developtools/ace_js2bundle/ace-loader/test/rich/testcase/pages/privateAttr/
DprivateAttr.hml71 <select>
73 </select>
/developtools/smartperf_host/ide/src/base-ui/popover/
DLitPopover.ts394 get select(): Array<string> | undefined { method in LitPopover
/developtools/hdc/hdc_rust/src/cffi/
Duart.cpp472 ret = select(handle + 1, &readFds, nullptr, nullptr, &tv);
474 ret = select(handle + 1, &readFds, nullptr, nullptr, nullptr);
481 ret = select(handle + 1, &readFds, nullptr, nullptr, &tv);
/developtools/smartperf_host/ide/test/trace/database/ui-worker/
DProcedureWorkerCommon.test.ts259 let select = { variable
272 expect(drawFlagLine(ctx, flag, select, 1, 2, 1, frame, slicesTime)).toBeUndefined();
/developtools/profiler/device/plugins/api/src/
Dplugin_watcher.cpp156 int ret = select(inotifyFd_ + 1, &rFds, nullptr, nullptr, &time); in Monitor()
/developtools/hdc/src/common/
Duart.cpp299 ret = select(uart.devUartHandle + 1, &readFds, nullptr, nullptr, &tv); in ReadUartDev()
301 ret = select(uart.devUartHandle + 1, &readFds, nullptr, nullptr, nullptr); in ReadUartDev()
308 ret = select(uart.devUartHandle + 1, &readFds, nullptr, nullptr, &tv); in ReadUartDev()
407 childRet = select(fd + 1, NULL, &fdSet, NULL, &timeout); in UartToHdcProtocol()
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/
DTabPaneFilter.ts651 select: '1',
660 select: '1',
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/
DTabPaneFileSystemCalltree.ts513 funcArgs: [data.item.name, data.item.select == '0', data.item.type == 'symbol'],
521 funcArgs: [data.item.name, data.item.select === '0', data.item.type === 'symbol'],
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/
DTabPerfProfile.ts362 funcArgs: [data.item.name, data.item.select === '0', data.item.type === 'symbol'],
391 funcArgs: [data.item.name, data.item.select === '0', data.item.type === 'symbol'],
/developtools/hdc/src/register/
Dhdc_jdwp.cpp197 int rc = select(cfd_ + 1, &rset, nullptr, nullptr, &timeout); in Read()

12