Home
last modified time | relevance | path

Searched refs:to (Results 1 – 25 of 790) sorted by relevance

12345678910>>...32

/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/common/
Dprocess_ark_config.test.ts69 expect(arkConfig.nodePath === NODE_JS_PATH).to.be.true;
70 expect(arkConfig.es2abcPath.indexOf(ES2ABC_PATH) > 0).to.be.true;
71 expect(arkConfig.ts2abcPath.indexOf(TS2ABC_PATH) > 0).to.be.true;
72 expect(arkConfig.mergeAbcPath.indexOf(MERGERABC_PATH) > 0).to.be.true;
73 expect(arkConfig.js2abcPath.indexOf(JS2ABC_PATH) > 0).to.be.true;
74 expect(arkConfig.aotCompilerPath.indexOf(AOTCOMPILER_PATH) > 0).to.be.true;
75 expect(arkConfig.isDebug === true).to.be.true;
76 expect(arkConfig.arkRootPath === this.rollup.share.projectConfig.arkFrontendDir).to.be.true;
84 expect(arkConfig.nodePath === NODE).to.be.true;
85 expect(arkConfig.es2abcPath.indexOf(ES2ABC_PATH) > 0).to.be.true;
[all …]
Dcommon_mode.test.ts53 expect(args.length === 5).to.be.true;
54 expect(args[0] === NODE).to.be.true;
55 expect(args[1].indexOf(EXPOSE_GC) > 0).to.be.true;
56 expect(args[2].indexOf(TS2ABC_PATH) > 0).to.be.true;
57 expect(args[3].indexOf(DEBUG) > 0).to.be.true;
58 expect(args[4].indexOf(MODULES) > 0).to.be.true;
65 expect(args.length === 2).to.be.true;
66 expect(args[0].indexOf(ES2ABC_PATH) > 0).to.be.true;
67 expect(args[1] === CMD_DEBUG_INFO).to.be.true;
74 expect(args.length === 1).to.be.true;
[all …]
Dcache.test.ts44 expect(this.rollup.cache.get(ARK_COMPILER_META_INFO).length > 0).to.be.true;
45 expect(this.rollup.cache.get(IS_CACHE_INVALID) === true).to.be.true;
49 expect(this.rollup.cache.get(ARK_COMPILER_META_INFO).length > 0).to.be.true;
50 expect(this.rollup.cache.get(IS_CACHE_INVALID) === true).to.be.true;
57 expect(this.rollup.cache.get(ARK_COMPILER_META_INFO).length > 0).to.be.true;
58 expect(this.rollup.cache.get(IS_CACHE_INVALID) === true).to.be.true;
62 expect(this.rollup.cache.get(ARK_COMPILER_META_INFO).length > 0).to.be.true;
63 expect(this.rollup.cache.get(IS_CACHE_INVALID) === true).to.be.true;
70 expect(this.rollup.cache.get(ARK_COMPILER_META_INFO).length > 0).to.be.true;
71 expect(this.rollup.cache.get(IS_CACHE_INVALID) === true).to.be.true;
[all …]
Dark_utils.test.ts80 expect(buildMode === DEBUG).to.be.true;
86 expect(buildMode === RELEASE).to.be.true;
92 expect(buildMode === DEBUG).to.be.true;
98 expect(buildMode === DEBUG).to.be.true;
104 expect(returnInfo[0] === BUNDLE_NAME_DEFAULT).to.be.true;
105 expect(returnInfo[1] === ENTRY_MODULE_NAME_DEFAULT).to.be.true;
111 expect(returnInfo[0] === BUNDLE_NAME_DEFAULT).to.be.true;
112 expect(returnInfo[1] === ENTRY_MODULE_NAME_DEFAULT).to.be.true;
118 expect(returnInfo[0] === BUNDLE_NAME_DEFAULT).to.be.true;
119 expect(returnInfo[1] === ENTRY_MODULE_NAME_DEFAULT).to.be.true;
[all …]
Dutils.test.ts91 expect(returnInfo).to.be.false;
99 expect(returnInfo).to.be.true;
107 expect(returnInfo).to.be.true;
115 expect(returnInfo).to.be.false;
123 expect(buildModeIsAotFull === false).to.be.true;
131 expect(buildModeIsAotFull === false).to.be.true;
139 expect(buildModeIsAotType === false).to.be.true;
148 …(shouldETSOrTSFileTransformToJS(filePath, this.rollup.share.arkProjectConfig) === true).to.be.true;
162 …(shouldETSOrTSFileTransformToJS(filePath, this.rollup.share.arkProjectConfig) === true).to.be.true;
173 …(shouldETSOrTSFileTransformToJS(filePath, this.rollup.share.arkProjectConfig) === true).to.be.true;
[all …]
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/
Dmodule_mode.test.ts81 expect(cmdArgs[0].indexOf(ES2ABC_PATH) > 0).to.be.true;
82 expect(cmdArgs[1] === ENTRY_LIST).to.be.true;
83 expect(cmdArgs[2] === OUTPUT).to.be.true;
84 expect(cmdArgs[3] === FILE_THREADS).to.be.true;
85 expect(cmdArgs[4] === `\"${fileThreads}\"`).to.be.true;
86 expect(cmdArgs[5] === MERGE_ABC).to.be.true;
87 expect(cmdArgs[6].indexOf(compatibleSdkVersion) > 0).to.be.true;
115 moduleInfo.filePath.indexOf(INDEX_ETS_PATH_DEFAULT) > 0).to.be.true;
119 moduleInfo.recordName.indexOf(INDEX_ETS_RECORDNAME) > 0).to.be.true;
123 moduleInfo.sourceFile.indexOf(INDEX_ETS_PATH_DEFAULT) > 0).to.be.true;
[all …]
Dmodule_hotfix_mode.test.ts40 expect(cmdArgs[0].indexOf(BUILD_INFO) > 0).to.be.true;
41 expect(cmdArgs[1] === ENTRY_LIST).to.be.true;
42 expect(cmdArgs[2].indexOf(BUILD_NPM) > 0).to.be.true;
43 expect(cmdArgs[3] === OUTPUT).to.be.true;
44 expect(cmdArgs[4].indexOf(MODULES_ABC) > 0).to.be.true;
45 expect(cmdArgs[5] === FILE_THREADS).to.be.true;
46 expect(cmdArgs[6] === `\"${fileThreads}\"`).to.be.true;
47 expect(cmdArgs[7].indexOf(compatibleSdkVersion) > 0).to.be.true;
48 expect(cmdArgs[8] === MERGE_ABC).to.be.true;
65 expect(moduleMode.cmdArgs[0].indexOf(ES2ABC_PATH) > 0).to.be.true;
[all …]
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/ohmUrl/
DohmUrl.test.ts34 expect(ohmUrl_1 == expected_1).to.be.true;
35 expect(ohmUrl_2 == expected_2).to.be.true;
47 expect(ohmUrl_1 == expected_1).to.be.true;
48 expect(ohmUrl_2 == expected_2).to.be.true;
63 expect(systemOhmUrl == expectedSystemOhmUrl).to.be.true;
64 expect(ohosOhmUrl == expectedOhosOhmUrl).to.be.true;
65 expect(appOhmUrl == expectedappOhmUrl).to.be.true;
78 expect(sharedLibraryPackageNameOhmUrl == expectedSharedLibraryOhmUrl).to.be.true;
79 expect(sharedLibraryPageOhmUrl == expectedSharedLibraryPageOhmUrl).to.be.true;
80 expect(errorSharedLibraryOhmUrl == expectedErrorSharedLibraryOhmUrl).to.be.true;
[all …]
/developtools/profiler/protos/types/plugins/memory_data/
Dmemory_plugin_config.proto8 // Unless required by applicable law or agreed to in writing, software
21 // Memory plug-in configuration, passed to plug-in by plug-in service.
23 // set true to report process list
25 // set true to report memory counter from /proc/meminfo
29 // set true to report memory counter from /proc/vmstat
33 // set true to report process meminfo from /proc/${pid}/stat
35 …// set true to report application memory usage summary, eg:java heap memory, native heap, stack me…
37 // set true to report application memory by memory service, otherwise,
42 // set true to report smaps meminfo from /proc/${pid}/smaps
44 // set true to report ashmem meminfo from /proc/purgeable_ashmem_trigger.
[all …]
/developtools/bytrace/
DREADME.md11 ByTrace is a tool for you to trace processes and monitor performance. It encapsulates and extends t…
13 1. APIs: When developing an application, you can call ByTrace APIs in the application key code to
14to obtain the tracing information. With ByTrace, you can enable a user-space or kernel-space label…
45 | --trace_clock clock | Sets the type of the clock for adding a timestamp to a trace, which can be …
47 | --trace_dump | Dumps traced data to a specified position (the default position is the console). |
48 | --trace_finish | Stops capturing traces and dumps traced data to a specified position (the defaul…
50 | --overwrite | Sets the action to take when the buffer is full. If this option is used, the latest…
51 | -o filename, --output filename | Outputs traced data to a specified file. |
56 - Run the following command to query supported labels:
69 …llowing command to capture traces whose label is <strong>ability</strong>, with the buffer size se…
[all …]
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
38 copyright notice that is included in or attached to the work
46 separable from, or merely link (or bind by name) to the interfaces of,
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
56 to the Licensor or its representatives, including but not limited to
[all …]
/developtools/hapsigner/
DNOTICE15 Permission is hereby granted, free of charge, to any person obtaining a copy of this software
16 and associated documentation files (the "Software"), to deal in the Software without restriction,
17 including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicens…
18 and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do s…
19 subject to the following conditions:
51 "control" means (i) the power, direct or indirect, to cause the
60 including but not limited to software source code, documentation
65 not limited to compiled object code, generated documentation,
66 and conversions to other media types.
70 copyright notice that is included in or attached to the work
[all …]
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/
DLegendEntry.ets9 * Unless required by applicable law or agreed to in writing, software
23 * @param form The form to draw for this entry.
24 * @param formSize Set to NaN to use the legend's default.
25 * @param formLineWidth Set to NaN to use the legend's default.
26 * @param formLineDashEffect Set to nil to use the legend's default.
46 * The form to draw for this entry.
57 * Set as NaN to use the legend's default
64 * Set as NaN to use the legend's default
71 * Set to null to use the legend's default
/developtools/smartperf_host/ide/
Dtsconfig.json4 /* Visit https://aka.ms/tsconfig.json to read more about this file */
10 …// "lib": [], /* Specify library files to be included in the compilati…
11 "allowJs": true, /* Allow javascript files to be compiled. */
17 // "outFile": "./", /* Concatenate and emit output to single file. */
18 // "outDir": "./dist", /* Redirect output structure to the directory. */
19 …", /* Specify the root directory of input files. Use to control the output d…
21 …// "tsBuildInfoFile": "./", /* Specify file to store incremental compilation informa…
22 // "removeComments": true, /* Do not emit comments to output. */
26 …: true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'…
46 …// "baseUrl": "./", /* Base directory to resolve non-absolute module names. …
[all …]
Dwebpack.config.js129 to: 'figures', property
133 to: 'img', property
137 to: 'doc', property
141 to: 'base-ui/icon.svg', property
145 to: 'trace/config/custom_temp_config.json', property
149 to: 'sql-wasm.js', property
153 to: 'sql-wasm.wasm', property
157 to: 'version.txt', property
161 to: 'wasm.json', property
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
38 copyright notice that is included in or attached to the work
46 separable from, or merely link (or bind by name) to the interfaces of,
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
56 to the Licensor or its representatives, including but not limited to
[all …]
/developtools/hdc/
DREADME.md13to connect and debug the device. The PC-side development machine uses the command-line tool hdc (f…
19 1. The hdc client part: the client running on the development machine, the user can request to exec…
42 …refer to https://gitee.com/openharmony/build/blob/master/README_zh.md to compile the sdk instructi…
44to the relevant directory of the sdk platform; Note: Only the windows/linux version tools can be c…
49 [1. Download sdk to obtain (recommended)](#section161941989591)
51 …visiting the community website, and unzip and extract it according to your platform to the corresp…
56 For compilation, please refer to the separate section above. Prebuilt is no longer available in the…
61to be 64-bit above ubuntu 16.04, and other similar versions are also available; libc++.so quotes e…
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
38 copyright notice that is included in or attached to the work
46 separable from, or merely link (or bind by name) to the interfaces of,
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
56 to the Licensor or its representatives, including but not limited to
[all …]
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/highlight/
DRange.ets9 * Unless required by applicable law or agreed to in writing, software
19 public to:number;
21 constructor( myfrom:number, to:number) {
23 this.to = to;
34 if (value > this.myfrom && value <= this.to)
41 return value > this.to;
/developtools/ace_js2bundle/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
38 copyright notice that is included in or attached to the work
46 separable from, or merely link (or bind by name) to the interfaces of,
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
56 to the Licensor or its representatives, including but not limited to
[all …]
/developtools/ace_ets2bundle/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
38 copyright notice that is included in or attached to the work
46 separable from, or merely link (or bind by name) to the interfaces of,
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
56 to the Licensor or its representatives, including but not limited to
[all …]
/developtools/syscap_codec/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
38 copyright notice that is included in or attached to the work
46 separable from, or merely link (or bind by name) to the interfaces of,
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
56 to the Licensor or its representatives, including but not limited to
[all …]
/developtools/packing_tool/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
38 copyright notice that is included in or attached to the work
46 separable from, or merely link (or bind by name) to the interfaces of,
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
56 to the Licensor or its representatives, including but not limited to
[all …]
/developtools/global_resource_tool/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
38 copyright notice that is included in or attached to the work
46 separable from, or merely link (or bind by name) to the interfaces of,
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
56 to the Licensor or its representatives, including but not limited to
[all …]
/developtools/profiler/
DLICENSE19 "control" means (i) the power, direct or indirect, to cause the
28 including but not limited to software source code, documentation
33 not limited to compiled object code, generated documentation,
34 and conversions to other media types.
38 copyright notice that is included in or attached to the work
46 separable from, or merely link (or bind by name) to the interfaces of,
51 to that Work or Derivative Works thereof, that is intentionally
52 submitted to Licensor for inclusion in the Work by the copyright owner
53 or by an individual or Legal Entity authorized to submit on behalf of
56 to the Licensor or its representatives, including but not limited to
[all …]

12345678910>>...32