Home
last modified time | relevance | path

Searched full:example (Results 1 – 25 of 469) sorted by relevance

12345678910>>...19

/arkcompiler/toolchain/test/autotest/resource/
Darchive.json5 "bundle name": "com.example.multiWorker01"
10 "bundle name": "com.example.multiWorker02"
15 "bundle name": "com.example.multiWorker03"
20 "bundle name": "com.example.multiWorker04"
25 "bundle name": "com.example.multiWorker05"
30 "bundle name": "com.example.multiWorker06"
35 "bundle name": "com.example.multiWorker07"
40 "bundle name": "com.example.multiWorker08"
45 "bundle name": "com.example.taskPool01"
50 "bundle name": "com.example.taskPool02"
[all …]
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/
Dlaunch.sts16 class Example {
38 p = launch Example.foobar();
39 p = launch new Example().baz();
40 let example = new Example();
41 p = launch example.baz();
/arkcompiler/runtime_core/static_core/docs/
Dintrinsics-yaml.md8 (see [irtoc/intrinsics.yaml](../irtoc/intrinsics.yaml) as an example)
14 Example: ```intrinsics_namespace: irtoc```
40 Example: ```class_name: Irtoc```
50 Example: ```method_name: sin```
57 Example: ```space: core```
76 Example: ```codegen_func: EmitSlowPathEntryIntrinsic```
91 Example: ```codegen_arch: [amd64, arm64, arm32]```
100 Example: ```llvm_codegen_func: EmitSlowPathEntry```
108 Example:
123 Example: ```ark::ets::intrinsics::StdCoreDoubleIsFinite```
[all …]
/arkcompiler/ets_frontend/es2panda/test/compiler/js/regex/
Dmatchall_extract_domain_names.js16 const str = "Visit example.com and support.example.org.";
18 print(JSON.stringify(matches)); // example.com,support.example.org
Dmatchall_extract_urls.js16 const str = "Visit our website at https://www.example.com or http://example.org.";
18 print(JSON.stringify(matches)); // https://www.example.com,http://example.org.
Dmatchall_extract_emails.js16 const str = "Contact us at info@example.com or support@example.org.";
18 print(JSON.stringify(matches)); // info@example.com,support@example.org
Dmatchall_extract_domain_names-expected.txt1 [["example.com"],["support.example.org"]]
Dmatchall_extract_emails-expected.txt1 [["info@example.com"],["support@example.org"]]
Dmatchall_extract_urls-expected.txt1 [["https://www.example.com"],["http://example.org."]]
/arkcompiler/ets_frontend/arkguard/test/grammar/rename_file_name_ohmurl/ohmurl_file/
Dohmurl_test_expected.txt15 import { xx1 } from "@bundle:com.example.myapplication/entry/a/b/c";
16 import { yy1 } from "@bundle:com.example.myapplication/entry/a/b/d";
17 import { xx3 } from "@bundle:com.example.myapplication/share_library/e";
18 import { xx4 } from "@bundle:com.example.myapplication/entry@library_test/e";
Dohmurl_test.ts16 import { xx1 } from "@bundle:com.example.myapplication/entry/ets/pages/testfile1";
17 import { yy1 } from "@bundle:com.example.myapplication/entry/ets/pages/test_constructor";
18 import { xx3 } from "@bundle:com.example.myapplication/share_library/Index";
19 import { xx4 } from "@bundle:com.example.myapplication/entry@library_test/Index";
/arkcompiler/ets_runtime/docs/
Daot-guide_zh.md30 - 说明:以*bundleName*为*com.example.myapplication*为例,输入以下命令可触发AOT编译
32 hdc shell bm compile -m partial com.example.myapplication
38 - 说明:以*bundleName*为*com.example.myapplication*为例,输入以下命令可查看该应用下每个module的编译状态
39 - ```hdc shell bm dump -n com.example.myapplication```
DREADME.md5 - [Development Example](development-example.md)
/arkcompiler/toolchain/test/autotest/scenario_test/
Dconftest.py35 'bundle_name': 'com.example.mainInstance01',
54 'bundle_name': 'com.example.mainInstance02',
73 'bundle_name': 'com.example.mainInstance03',
92 'bundle_name': 'com.example.mainInstance04',
111 'bundle_name': 'com.example.multiWorker08',
131 'bundle_name': 'com.example.multiWorker07',
151 'bundle_name': 'com.example.multiWorker06',
171 'bundle_name': 'com.example.multiWorker05',
191 'bundle_name': 'com.example.multiWorker04',
211 'bundle_name': 'com.example.multiWorker03',
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DMath.sts72 * @example
93 * @example
110 * @example
139 * @example
157 * @example
188 * @example
219 * @example
237 * @example
255 * @example
273 * @example
[all …]
/arkcompiler/toolchain/tooling/client/tcpServer/test/
Dconfig.py21 "com.example.myapplication",
22 "com.example.myapplication1",
23 "com.example.myapplication3",
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/07.function_and_method_overloading/04.declaration_distinguishable_by_signatures/
Ddist.params.yaml17 // spec example
25 // spec example
32 // spec example
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/04.array_literal/02.type_inference_from-types_of_elements/
Darr_inf2.params.yaml17 let a = [] // spec example
21 let b = ["a"] // spec example
25 let c = [1, 2, 3] // spec example
29 let d = ["a", 1, 3.14] // spec example
35 let e = [(): void => {}, new A()] // spec example
/arkcompiler/ets_frontend/ets2panda/ir/expressions/
Didentifier.cpp181 // Example: c(a: (a: number, b: void) => string, b?: number[]): undefined; in CheckNotDeclarations()
187 // Example: in CheckNotDeclarations()
194 // Example: in CheckNotDeclarations()
207 // Example: const foo1: (self: Object, x: int) => int = foo; in CheckNotDeclarations()
214 // Example: in CheckNotDeclarations()
223 // Example: in CheckNotDeclarations()
230 // Example: in CheckNotDeclarations()
237 // Example: var func8: { (...c): boolean, (...c: number[]): string }; in CheckNotDeclarations()
260 // Example: in CheckNotDeclarations()
265 // Example: let c = (a?: number) => { } in CheckNotDeclarations()
[all …]
/arkcompiler/ets_frontend/arkguard/
DREADME.md78 example shows.
108 …jects directly imported or exported by `import/export` will be kept. For example, the property nam…
118 …ctly exported classes or objects, like `name` and `age` in the following example, if you do not wa…
127 * the property names defined in UI components. For example, the property names `message` and `data`…
141 * the property names that are string literals. For example, the property names "name" and "age" in …
148 … property names, you should addtionally use the option `-enable-toplevel-obfuscation`. For example,
157 …`a-z, A-Z, 0-9, _`, for example `let obj = {"\n": 123, "": 4, " ": 5}` then we would not suggest t…
160 … string constant in the declaration file. For example, the string `'ohos.want.action.home'` in the…
167 // Developer source example
188 * non-ECMAScript module reference (ECMAScript module example: `import {foo} from './filename'`)
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/math/
Dmath.sts30 * @example
48 * @example
66 * @example
84 * @example
120 * @example
138 * @example
166 * @example
181 * @example
196 * @example
213 * @example
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/nark/tests/examples/
DCMakeLists.txt15 CPP_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/example.cpp
16 ETS_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/example.sts
/arkcompiler/runtime_core/static_core/plugins/ets/snippet_verifier/
DREADME.md56 Parameters unrelated to the snippet can be omitted. For example:
77 Example: *plugins/ets/doc/spec/2_lexical.rst*
95 Example: *plugins/ets/doc/spec/2_lexical.rst::455:*
106 Example: *plugins/ets/doc/spec/7_expressions.rst*
147 - Example without a specific error:
169 - Example with a specific error: */plugins/ets/doc/spec/14_ambients.rst*
186 Example: *plugins/ets/doc/spec/17_experimental.rst*
215 …Skiplist file contains names of the snippets which should be skiped. For example, frontend status …
/arkcompiler/runtime_core/static_core/runtime/tests/intrusive-tests/
DREADME.md4 …s to have a possibility to find and to reproduce rare multithreading bugs, for example, data races.
54 They should be placed in a specific class as static methods to prevent name collisions, for example:
70 - `CMakeLists.txt` – describes how to build of the test. Example:
94 An example of intrusive test is located in `runtime/tests/intrusive-tests/clear_interrupted_intrusi…
97 …ests/clear_interrupted_intrusive_test`) illustrates intrusive testing on example and can be used a…
/arkcompiler/runtime_core/compiler/docs/
Ddraw_cfg.md30 Example:
35 function example(cond) {
52 Method: L_GLOBAL;::example
111 Output image is `./out/cfg_L_GLOBAL;::example.png`: ![](./images/draw_cfg_example.png)

12345678910>>...19