Home
last modified time | relevance | path

Searched full:z (Results 1 – 25 of 1121) sorted by relevance

12345678910>>...45

/arkcompiler/ets_runtime/test/aottest/forin_enum_cache_chain/
Dpgo_expect_output.txt23 z
27 z
50 z
54 z
59 z
65 z
69 z
74 z
78 z
83 z
[all …]
Dexpect_output.txt23 z
27 z
50 z
54 z
59 z
65 z
69 z
74 z
78 z
83 z
[all …]
/arkcompiler/ets_runtime/test/moduletest/forin_enum_cache_chain/
Dexpect_output.txt23 z
27 z
50 z
54 z
59 z
65 z
69 z
74 z
78 z
83 z
[all …]
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DNullishCoalescing_02.ets16 function foo1(z: long|undefined) {
17 let x = z ?? 10000000000;
21 function foo2(z: int|undefined) {
22 let x = z ?? 10000000;
26 function foo3(z: short|undefined) {
27 let x = z ?? 10000;
31 function foo4(z: byte|undefined) {
32 let x = z ?? 100;
36 function foo5(z: float|undefined) {
37 let x = z ?? 100000;
[all …]
D23258.ets16 interface Z {}
18 abstract foo(x: string, z?: T)
21 class Y extends X<Z> {
22 foo(x: string, z?: Z) {}
25 let x: X<Z> = new Y()
DGenericBridges_02.ets20 class C<T extends Numeric|string, Z, T1 = string> implements B<T> {
26 f2(v: C<T, Z>): C<T, Z> {
27 return new C<T, Z>();
31 return this.f2(v as C<T, Z>);
38 f4(v: C<T, Z>|Numeric): string {
42 f5(x: T1|Z|C<T, Z, T1>[]): string {
46 f6(x: C<T, Z>, y: C<T, Z>): string {
50 f7(x: T, y: C<T, Z>): string {
58 f9(z: Z, y: T1): string {
108 f9(z: W, y: string): string {
[all …]
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dnewobj.yaml419 .record Z {
474 newobj v1, Z
477 ldobj v1, Z.fu1
483 ldobj v1, Z.fu8
489 ldobj v1, Z.fi8
495 ldobj v1, Z.fu16
501 ldobj v1, Z.fi16
507 ldobj v1, Z.fu32
513 ldobj v1, Z.fi32
519 ldobj.64 v1, Z.fu64
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_es_checked/
Ddate.yaml34 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234…
37 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234…
40 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234…
43 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234…
46 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234…
49 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234…
52 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234…
55 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234…
58 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234…
61 …- paramOf "2019-11-14T00:55:31.000".inspect, "2024-02-28T00:55:31.123Z".inspect, 12234556789, 1234…
[all …]
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Dnewobj.yaml269 .record Z {
317 newobj v1, Z
320 ldobj v1, Z.fu1
326 ldobj v1, Z.fu8
332 ldobj v1, Z.fi8
338 ldobj v1, Z.fu16
344 ldobj v1, Z.fi16
350 ldobj v1, Z.fu32
356 ldobj v1, Z.fi32
362 ldobj.64 v1, Z.fu64
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/var_ops/
Dvariable_get_value_boolean_test.cpp36 ASSERT_EQ(env_->Namespace_FindVariable(ns_, "z", &variable), ANI_OK); in TEST_F()
39 ani_boolean z = ANI_FALSE; in TEST_F() local
40 ASSERT_EQ(env_->Variable_GetValue_Boolean(variable, &z), ANI_OK); in TEST_F()
41 ASSERT_EQ(z, true); in TEST_F()
47 ASSERT_EQ(env_->Namespace_FindVariable(ns_, "z", &variable), ANI_OK); in TEST_F()
50 ani_boolean z = ANI_FALSE; in TEST_F() local
51 ASSERT_EQ(env_->c_api->Variable_GetValue_Boolean(nullptr, variable, &z), ANI_INVALID_ARGS); in TEST_F()
60 ani_boolean z = ANI_FALSE; in TEST_F() local
61 ASSERT_EQ(env_->Variable_GetValue_Boolean(variable, &z), ANI_INVALID_TYPE); in TEST_F()
66 ani_boolean z = ANI_FALSE; in TEST_F() local
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/class_ops/
Dclass_call_static_method_by_name_boolean_test.cpp36 … ASSERT_EQ(env_->Class_CallStaticMethodByName_Boolean_V(cls, name, "ZZ:Z", value, args), ANI_OK); in TestFuncV()
47 …ASSERT_EQ(env_->Class_CallStaticMethodByName_Boolean(cls, methodName, "ZZ:Z", &value, ANI_TRUE, AN… in TestCombineScene()
52 args[0U].z = ANI_TRUE; in TestCombineScene()
53 args[1U].z = ANI_FALSE; in TestCombineScene()
55 …ASSERT_EQ(env_->Class_CallStaticMethodByName_Boolean_A(cls, methodName, "ZZ:Z", &valueA, args), AN… in TestCombineScene()
87 args[0U].z = ANI_TRUE; in TEST_F()
88 args[1U].z = ANI_FALSE; in TEST_F()
174 args[0U].z = ANI_TRUE; in TEST_F()
175 args[1U].z = ANI_FALSE; in TEST_F()
187 args[0U].z = ANI_TRUE; in TEST_F()
[all …]
Dcall_static_method_bool_test.cpp31 ASSERT_EQ(env_->Class_FindStaticMethod(cls, "or", "ZZ:Z", &method), ANI_OK); in GetMethodData()
43 ASSERT_EQ(env_->Class_FindStaticMethod(cls, "funcA", "ZZ:Z", &method), ANI_OK); in TestCombineScene()
50 args[0U].z = ANI_TRUE; in TestCombineScene()
51 args[1U].z = ANI_FALSE; in TestCombineScene()
87 args[0U].z = ANI_TRUE; in TEST_F()
88 args[1U].z = ANI_FALSE; in TEST_F()
131 args[0U].z = ANI_TRUE; in TEST_F()
132 args[1U].z = ANI_FALSE; in TEST_F()
145 args[0U].z = ANI_TRUE; in TEST_F()
146 args[1U].z = ANI_FALSE; in TEST_F()
[all …]
/arkcompiler/jsvm/
DCMakeLists.txt107 libressched_client.z.so
108 libbegetutil.z.so
111 libhmicuuc.z.so
112 libhmicui18n.z.so
113 libcrypto_openssl.z.so
114 libssl_openssl.z.so
123 libressched_client.z.so
124 libbegetutil.z.so
127 libhmicuuc.z.so
128 libhmicui18n.z.so
[all …]
/arkcompiler/runtime_core/taihe/compiler/
Duv.lock22 …df3933e38919c85f98ccc656a96cd3f25ef3916", size = 117467, upload-time = "2024-08-03T19:00:12.757Z" }
24 …da89719dbccee7aa39ef94eed3818cafa5a7e8", size = 144462, upload-time = "2024-08-03T19:00:11.134Z" },
40 …ae8da15253c5de89b93a80b3e2c8d9a19ec2666", size = 649449, upload-time = "2025-01-29T04:15:40.373Z" }
42 …91ebee8917aac5c20483bc2d80a6c3a04df32", size = 1629419, upload-time = "2025-01-29T05:37:06.642Z" },
43 …b49c00a35f84f195d5bce7e9f5cfc578fc2da", size = 1461080, upload-time = "2025-01-29T05:37:09.321Z" },
44 …f2516bca343276c466be72eb04a3bcc1f82d7", size = 1766886, upload-time = "2025-01-29T04:18:24.432Z" },
45 …20d95e73c83a5ee3383493e35d271aca872e9", size = 1419404, upload-time = "2025-01-29T04:19:04.296Z" },
46 …dda852ea00a93bd4c728e09eacd827ec929df0", size = 1614372, upload-time = "2025-01-29T05:37:11.71Z" },
47 …948718dc688dba4a9d78c3adde52b9e6c2299", size = 1442865, upload-time = "2025-01-29T05:37:14.309Z" },
48 …b20a9aca4a778731a08cfff7e5ac4a4bb7096", size = 1749699, upload-time = "2025-01-29T04:18:17.688Z" },
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/03.types/20.nullish_types/
Darray_nullable_types.params.yaml25 type Z = Int | null
26 type: 'Z[]'
32 type Z = Int | undefined
33 type: 'Z[]'
39 type Z = Int | null | undefined
40 type: 'Z[]'
46 type Z = (Int | null)[]
47 type: 'Z'
53 type Z = (Int | undefined)[]
54 type: 'Z'
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe99.md19 function foo(x : number, y : number, z : number) {
20 console.log(x, y, z)
30 let point3d = {...point2d, z: 3}
47 function log_numbers(x : number, y : number, z : number) {
48 console.log(x, y, z)
61 x: number = 0; y: number = 0; z: number = 0
62 constructor(p2d: Point2D, z: number) {
65 this.z = z
70 console.log(p3d.x, p3d.y, p3d.z)
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units/01.separate_modules/
Dimport_declarations.params.yaml20 let z: A = new A();
21 assertTrue(z instanceof A);
29 let z: B = new B();
30 assertTrue(z instanceof A);
38 let z: AC = new C();
39 assertTrue(z instanceof AC);
40 assertTrue(z instanceof C);
52 let z: I = new B();
53 assertTrue(z instanceof B);
54 assertTrue(z instanceof I);
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/object_ops/
Dobject_call_method_by_name_boolean_test.cpp52 …ASSERT_EQ(env_->Object_CallMethodByName_Boolean_A(object, "booleanByNameMethod", "II:Z", &res, arg… in TEST_F()
62 …ASSERT_EQ(env_->Object_CallMethodByName_Boolean(object, "booleanByNameMethod", "II:Z", &res, VAL1,… in TEST_F()
74 …ASSERT_EQ(env_->Object_CallMethodByName_Boolean(object, "unknown_function", "II:Z", &res, VAL1, VA… in TEST_F()
85 …env_->c_api->Object_CallMethodByName_Boolean(env_, object, "booleanByNameMethod", "II:Z", &res, VA… in TEST_F()
96 …ASSERT_EQ(env_->Object_CallMethodByName_Boolean(object, nullptr, "II:Z", &res, VAL1, VAL2), ANI_IN… in TEST_F()
104 …ASSERT_EQ(env_->Object_CallMethodByName_Boolean(object, "booleanByNameMethod", "II:Z", nullptr, VA… in TEST_F()
114 …ASSERT_EQ(env_->Object_CallMethodByName_Boolean(nullptr, "booleanByNameMethod", "II:Z", &res, VAL1… in TEST_F()
124 …ASSERT_EQ(env_->Object_CallMethodByName_Boolean(nullptr, "booleanByNameMethod", "II:Z", &res, null… in TEST_F()
142 …ASSERT_EQ(env_->Object_CallMethodByName_Boolean(obj, "booleanMethod", "II:Z", &res, VAL1, VAL2), A… in TEST_F()
148 …ASSERT_EQ(env_->Object_CallMethodByName_Boolean_A(obj, "booleanMethod", "II:Z", &res, args), ANI_O… in TEST_F()
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/test/rules/
Drule99.ets16 function foo(x : number, y : number, z : number) {
17 console.log(x, y, z)
27 let point3d = {...point2d, z: 3}
40 function log_numbers(x : number, y : number, z : number) {
41 console.log(x, y, z)
54 x: number = 0; y: number = 0; z: number = 0
55 constructor(p2d: Point2D, z: number) {
58 this.z = z
63 console.log(p3d.x, p3d.y, p3d.z)
Drule30_5.ets16 interface Z {
21 // X implements interface Z, which makes relation between X and Y explicit.
22 class C implements Z {
32 // Y implements interface Z, which makes relation between X and Y explicit.
33 class C2 implements Z {
43 let x1: Z = new C()
44 let y1: Z = new C2()
Drule30_2.ets43 interface Z {
47 // X implements interface Z, which makes relation between X and Y explicit.
48 class C implements Z {
56 // Y implements interface Z, which makes relation between X and Y explicit.
57 class C2 implements Z {
65 let x1: Z = new C()
66 let y1: Z = new C2()
/arkcompiler/ets_runtime/test/moduletest/multiargs/
Dmultiargs.js41 function three(x,y,z) argument
43 print(x+y+z)
46 function four(x,y,z,t) argument
48 print(x+y+z+t)
51 function five(x,y,z,t,a) argument
53 let s = x + 10*y+ 100*z + 1000*t + 10000*a
64 let z = 333 variable
67 four(x.toString(10),y.toString(10),z.toString(10),a.toString(10))
/arkcompiler/ets_runtime/test/aottest/vtable/forin/
Dexpect_output.txt15 z 5
17 z 5
18 z 5
19 z 5
21 z 5
/arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/
Dets_char_isuppercase.ets89 assertTrue(!callIsUpperCase(c'z'));
91 assertTrue(callIsUpperCase(c'Z'));
95 assertTrue(callIsLowerCase(c'z'));
97 assertTrue(!callIsLowerCase(c'Z'));
101 assertEQ(c'Z', callToUpperCase(c'z'));
103 assertEQ(c'Z', callToUpperCase(c'Z'));
107 assertEQ(c'z', callToLowerCase(c'z'));
109 assertEQ(c'z', callToLowerCase(c'Z'));
/arkcompiler/ets_runtime/test/aottest/pgo_track_type/
Dpgo_track_type.ts19 public static set(out: Vec3, x: number, y: number, z: number): Vec3 {
22 out.z = z;
27 public z: number = 0;
28 constructor(x: number, y: number, z: number) {
31 this.z = z;
60 print(a.a0.z)
71 let obj = {x: 1, y: 2, z: 3, u: 3, v: 4}
73 let next = {x: 1, z: 2, y: 3, v: 3, u: 3}

12345678910>>...45