Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/developtools/ace_js2bundle/ace-loader/plugin/codegen/
Dindex.js1e={904:(e,t)=>{var n;let o;Object.defineProperty(t,"__esModule",{value:!0}),t.setDomain=t.getDomai… argument
/developtools/ace_ets2bundle/compiler/codegen/
Dcodegen_ets.js15e={6486:function(e,t,r){var o;e=r.nmd(e),function(){var n,a="Expected a function",i="__lodash_hash… argument
/developtools/smartperf_host/ide/src/base-ui/modal/
DLitModal.ts255 this.shadowRoot!.querySelector<HTMLDivElement>('.modal')!.onclick = (e) => {
256 e.stopPropagation();
284 this.onmousemoveFunc = (e: any) => {
285 e.stopPropagation();
288 e.clientX > srcResizeRect.left - resizeWidth &&
289 e.clientX < srcResizeRect.left + resizeWidth &&
290 e.clientY > srcResizeRect.top - resizeWidth &&
291 e.clientY < srcResizeRect.top + resizeWidth
297 e.clientX > srcResizeRect.right - resizeWidth &&
298 e.clientX < srcResizeRect.right + resizeWidth &&
[all …]
/developtools/profiler/host/smartperf/ide/src/base-ui/modal/
DLitModal.ts255 this.shadowRoot!.querySelector<HTMLDivElement>('.modal')!.onclick = (e) => {
256 e.stopPropagation();
284 this.onmousemoveFunc = (e: any) => {
285 e.stopPropagation();
288 e.clientX > srcResizeRect.left - resizeWidth &&
289 e.clientX < srcResizeRect.left + resizeWidth &&
290 e.clientY > srcResizeRect.top - resizeWidth &&
291 e.clientY < srcResizeRect.top + resizeWidth
297 e.clientX > srcResizeRect.right - resizeWidth &&
298 e.clientX < srcResizeRect.right + resizeWidth &&
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/database/ui-worker/
DProcedureWorker.ts139 self.onmessage = function (e: any) {
140 if ((e.data.type as string).startsWith('clear')) {
148 id: e.data.id,
149 type: e.data.type,
154 if (e.data.params.list) {
155 dataList[e.data.type] = convertJSON(e.data.params.list);
156 if (e.data.params.offscreen) {
157 canvasList[e.data.type] = e.data.params.offscreen;
158 contextList[e.data.type] = e.data.params.offscreen!.getContext('2d');
159 contextList[e.data.type].scale(e.data.params.dpr, e.data.params.dpr);
[all …]
/developtools/smartperf_host/ide/src/trace/database/ui-worker/
DProcedureWorker.ts147 self.onmessage = function (e: any) {
148 if ((e.data.type as string).startsWith('clear')) {
156 id: e.data.id,
157 type: e.data.type,
162 if (e.data.params.list) {
163 dataList[e.data.type] = convertJSON(e.data.params.list);
164 if (e.data.params.offscreen) {
165 canvasList[e.data.type] = e.data.params.offscreen;
166 contextList[e.data.type] = e.data.params.offscreen!.getContext('2d');
167 contextList[e.data.type].scale(e.data.params.dpr, e.data.params.dpr);
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/cpu/
DTabPaneBoxChild.ts65 result.map((e) => {
66 e.startTime = Utils.getTimeString(e.startNs);
67 e.absoluteTime = ((window as any).recordStartNS + e.startNs) / 1000000000;
68 e.state = Utils.getEndState(e.state)!;
69 e.prior = e.priority == undefined || e.priority == null ? '-' : e.priority + '';
70 e.core = e.cpu == undefined || e.cpu == null ? '-' : 'CPU' + e.cpu;
71 e.processName =
72 … (e.process == undefined || e.process == null ? 'process' : e.process) + '(' + e.processId + ')';
73e.threadName = (e.thread == undefined || e.thread == null ? 'thread' : e.thread) + '(' + e.threadI…
74 e.note = '-';
DTabPaneCpuByThread.ts66 for (let e of result) {
67 sumWall += e.wallDuration;
68 sumOcc += e.occurrences;
69 if (map.has(`${e.tid}`)) {
70 let thread = map.get(`${e.tid}`)!;
71 thread.wallDuration += e.wallDuration;
72 thread.occurrences += e.occurrences;
73 thread[`cpu${e.cpu}`] = e.wallDuration || 0;
74 thread[`cpu${e.cpu}TimeStr`] = getProbablyTime(e.wallDuration || 0);
75 thread[`cpu${e.cpu}Ratio`] = (
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/cpu/
DTabPaneBoxChild.ts65 result.map((e) => {
66 e.startTime = Utils.getTimeString(e.startNs);
67 e.absoluteTime = ((window as any).recordStartNS + e.startNs) / 1000000000;
68 e.state = Utils.getEndState(e.state)!;
69 e.prior = e.priority == undefined || e.priority == null ? '-' : e.priority + '';
70 e.core = e.cpu == undefined || e.cpu == null ? '-' : 'CPU' + e.cpu;
71 e.processName =
72 … (e.process == undefined || e.process == null ? 'process' : e.process) + '(' + e.processId + ')';
73e.threadName = (e.thread == undefined || e.thread == null ? 'thread' : e.thread) + '(' + e.threadI…
74 e.note = '-';
DTabPaneCpuByThread.ts66 for (let e of result) {
67 sumWall += e.wallDuration;
68 sumOcc += e.occurrences;
69 if (map.has(`${e.tid}`)) {
70 let thread = map.get(`${e.tid}`)!;
71 thread.wallDuration += e.wallDuration;
72 thread.occurrences += e.occurrences;
73 thread[`cpu${e.cpu}`] = e.wallDuration || 0;
74 thread[`cpu${e.cpu}TimeStr`] = getProbablyTime(e.wallDuration || 0);
75 thread[`cpu${e.cpu}Ratio`] = (
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/
DTabPaneFilter.ts50 private getFilter: ((e: FilterData) => void) | undefined;
51 private getMining: ((e: MiningData) => void) | undefined;
52 private getLibrary: ((e: MiningData) => void) | undefined;
53 private getCallTree: ((e: any) => void) | undefined;
54 private getCallTreeConstraints: ((e: any) => void) | undefined;
55 private getStatisticsType: ((e: any) => void) | undefined;
92 this.iconEL!.onclick = (e) => {
108 this.markButtonEL!.onclick = (e) => {
141 this.shadowRoot!.querySelectorAll<HTMLDivElement>('.mining-button').forEach((e, idx) => {
142 e!.onclick = (ev) => {
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/
DTabPaneFilter.ts50 private getFilter: ((e: FilterData) => void) | undefined;
51 private getMining: ((e: MiningData) => void) | undefined;
52 private getLibrary: ((e: MiningData) => void) | undefined;
53 private getCallTree: ((e: any) => void) | undefined;
54 private getCallTreeConstraints: ((e: any) => void) | undefined;
55 private getStatisticsType: ((e: any) => void) | undefined;
92 this.iconEL!.onclick = (e) => {
108 this.markButtonEL!.onclick = (e) => {
141 this.shadowRoot!.querySelectorAll<HTMLDivElement>('.mining-button').forEach((e, idx) => {
142 e!.onclick = (ev) => {
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/process/
DTabPaneThreadStates.ts53 for (let e of result) {
54 if (threadStatesParam.processIds.includes(e.pid)) {
55 let process = Utils.PROCESS_MAP.get(e.pid);
56 let thread = Utils.THREAD_MAP.get(e.tid);
57 e.process = process == null || process.length == 0 ? '[NULL]' : process;
58 e.thread = thread == null || thread.length == 0 ? '[NULL]' : thread;
59 sumWall += e.wallDuration;
60 sumOcc += e.occurrences;
61 e.stateJX = e.state;
62 e.state = Utils.getEndState(e.stateJX);
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/process/
DTabPaneThreadStates.ts53 for (let e of result) {
54 if (threadStatesParam.processIds.includes(e.pid)) {
55 let process = Utils.PROCESS_MAP.get(e.pid);
56 let thread = Utils.THREAD_MAP.get(e.tid);
57 e.process = process == null || process.length == 0 ? '[NULL]' : process;
58 e.thread = thread == null || thread.length == 0 ? '[NULL]' : thread;
59 sumWall += e.wallDuration;
60 sumOcc += e.occurrences;
61 e.stateJX = e.state;
62 e.state = Utils.getEndState(e.stateJX);
[all …]
/developtools/smartperf_host/ide/src/trace/database/
DTraceWorkerRoot.ts17 self.onmessage = (e) => {
18 if (e.data.action === 'open') {
23 worker.postMessage(e.data, [e.data.buffer]);
24 } else if (e.data.action === 'exec') {
25 worker.postMessage(e.data);
26 } else if (e.data.action == 'exec-buf') {
28 worker.postMessage(e.data);
DTraceWorker.ts147 } catch (e) {
153 msg: (e as any).message,
159 self.onmessage = async (e: MessageEvent) => {
160 currentAction = e.data.action;
161 currentActionId = e.data.id;
162 if (e.data.action === 'reset') {
164 } else if (e.data.action === 'open') {
168 id: e.data.id,
169 action: e.data.action,
173 let uint8Array = new Uint8Array(e.data.buffer);
[all …]
DSqlLiteWorker.ts81 self.onmessage = async (e: any) => {
82 if (e.data.action === 'open') {
83 let array = new Uint8Array(e.data.buffer);
88 self.postMessage({ id: e.data.id, ready: true, index: 0 });
93 id: e.data.id,
99 self.postMessage({ id: e.data.id, init: true });
101 } else if (e.data.action === 'close') {
102 } else if (e.data.action === 'exec' || e.data.action === 'exec-buf') {
104 let action = e.data.action; //: "exec"
105 let sql = e.data.sql;
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/database/
DTraceWorkerRoot.ts17 self.onmessage = (e) => {
18 if (e.data.action === 'open') {
23 worker.postMessage(e.data, [e.data.buffer]);
24 } else if (e.data.action === 'exec') {
25 worker.postMessage(e.data);
26 } else if (e.data.action == 'exec-buf') {
28 worker.postMessage(e.data);
DTraceWorker.ts147 } catch (e) {
153 msg: (e as any).message,
159 self.onmessage = async (e: MessageEvent) => {
160 currentAction = e.data.action;
161 currentActionId = e.data.id;
162 if (e.data.action === 'reset') {
164 } else if (e.data.action === 'open') {
168 id: e.data.id,
169 action: e.data.action,
173 let uint8Array = new Uint8Array(e.data.buffer);
[all …]
DSqlLiteWorker.ts81 self.onmessage = async (e: any) => {
82 if (e.data.action === 'open') {
83 let array = new Uint8Array(e.data.buffer);
88 self.postMessage({ id: e.data.id, ready: true, index: 0 });
93 id: e.data.id,
99 self.postMessage({ id: e.data.id, init: true });
101 } else if (e.data.action === 'close') {
102 } else if (e.data.action === 'exec' || e.data.action === 'exec-buf') {
104 let action = e.data.action; //: "exec"
105 let sql = e.data.sql;
[all …]
/developtools/integration_verification/DeployDevice/src/aw/poweronoff/
Dserial_power_on_off.py25 except Exception as e:
26 if isinstance(e, ConnectionRefusedError):
29 logger.error(e)
56 except Exception as e:
57 logger.error(e)
103 except Exception as e:
104 logger.error(e)
158 except Exception as e:
159 logger.error(e)
207 except Exception as e:
[all …]
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/verify/
DVerifyAndParseProvision.java63 } catch (IOException e) { in verifyAndParseProvision()
78 } catch (IOException e) { in checkProvisionFile()
79 LOGGER.error("getCanonicalPath failed", e); in checkProvisionFile()
89 } catch (IOException e) { in getSignedProvisionData()
90 LOGGER.error("readFileToByteArray failed.", e); in getSignedProvisionData()
103 } catch (SignatureException | CMSException e) { in getUnsignedProvisionData()
104 LOGGER.error("get unsigned provision data failed.", e); in getUnsignedProvisionData()
114 } catch (IOException e) { in outputUnsignedProvisionToFile()
115 LOGGER.error("output unsigned provision to file failed.", e); in outputUnsignedProvisionToFile()
/developtools/profiler/host/smartperf/ide/src/base-ui/popover/
DLitPopoverV.ts425 popover.onclick = (e: any) => {
426 e.stopPropagation();
428 popover.addEventListener('mousemove', (e: any) => {
429 e.stopPropagation();
431 this.onclick = (e: any) => {
432 e.stopPropagation();
433 if (e.relatedTarget?.hasAttribute('not-close')) {
/developtools/smartperf_host/ide/src/base-ui/popover/
DLitPopoverV.ts433 popover.onclick = (e: any) => {
434 e.stopPropagation();
436 popover.addEventListener('mousemove', (e: any) => {
437 e.stopPropagation();
439 this.onclick = (e: any) => {
440 e.stopPropagation();
441 if (e.relatedTarget?.hasAttribute('not-close')) {
/developtools/integration_verification/cases/smoke/basic/screenshot32/APL_compare_03/
Dread_device.py40 except Exception as e:
41 apl_set_log_content(LogLevel(1).name, log_tag, '{}'.format(e.msg))
51 except AplCompareException as e:
52 apl_set_log_content(LogLevel(1).name, log_tag, '{}'.format(e.msg))
68 except sqlite3.OperationalError as e:
69 apl_set_log_content(LogLevel(2).name, log_tag, 'database {}'.format(e.args[0]))
71 except AplCompareException as e:
72 apl_set_log_content(LogLevel(1).name, log_tag, '{}'.format(e.msg))

12345678910>>...13