Home
last modified time | relevance | path

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

12345678910>>...27

/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/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/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/ets-templates/03.types/08.reference_types/12.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/ets_frontend/ets2panda/linter/test_rules/
Drule99.sts16 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.sts16 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.sts43 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()
Drule30_6.sts16 interface Z {
25 // X implements interface Z, which makes relation between X and Y explicit.
26 class C implements Z, Z1 {
36 // Y implements interface Z, which makes relation between X and Y explicit.
37 class C2 implements Z, Z1 {
47 let x1: Z = new C()
Drule30_4.sts16 interface Z {
24 // X implements interface Z, which makes relation between X and Y explicit.
25 class C implements Z, Z1 {
35 // Y implements interface Z, which makes relation between X and Y explicit.
36 class C2 implements Z, Z1 {
46 let x1: Z = new C()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units_packages_and_modules/01.separate_modules/
Dimport_declarations.params.yaml20 let z: A = new A();
21 assert(z instanceof A);
29 let z: B = new B();
30 assert(z instanceof A);
38 let z: AC = new C();
39 assert(z instanceof AC);
40 assert(z instanceof C);
52 let z: I = new B();
53 assert(z instanceof B);
54 assert(z instanceof I);
[all …]
/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/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/09.constant_string_to_char_conversion/
Dstr2char.params.yaml17 const s: string = "Z"
28 assert v3 == c'Z'
31 assert v4 == c'Z'
41 assert c3 == c'Z'
44 assert c4 == c'Z'
47 const s: string = "Z"
60 assert a.c3 == c'Z'
61 assert a.c4 == c'Z'
64 const s: string = "Z"
79 assert v3 == c'Z'
[all …]
Dstr2char_n1.params.yaml17 const s: string = "Z"
22 assert v == c'Z'
25 let s: string = "Z"
30 assert v == c'Z'
33 const s: string = "Z"
41 assert a.c == c'Z'
44 let s: string = "Z"
50 assert v == c'Z'
53 const s: string = "Z"
62 assert a.c == c'Z'
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/15.semantic_rules/07.overloading_and_overriding/02.override-compatible_signatures/
Dpos.params.yaml30 class Z {}
31 …function foo<T extends X, U extends Y, V extends Z>(t: T, u: U, v: V): T { return new X(); } // CT…
38 class Z {}
39 …function foo<X extends Z>(a: int, b: long, c: double, d: Object): X { return new Z(); } // CTE: no…
40 function bar<X extends Z>(a: int, b: long, c: double, d: Object): X { return new Z(); }
44 class Z {}
45 …function foo<X extends Z>(a: int, b: long, c: double, d: Object): X { return new Z(); } // CTE: no…
46 function foo<X extends Z>(a: long, b: long, c: double, d: Object): X { return new Z(); }
/arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/
Dets_char_isuppercase.sts89 assert !callIsUpperCase(c'z');
91 assert callIsUpperCase(c'Z');
95 assert callIsLowerCase(c'z');
97 assert !callIsLowerCase(c'Z');
101 assert c'Z' == callToUpperCase(c'z');
103 assert c'Z' == callToUpperCase(c'Z');
107 assert c'z' == callToLowerCase(c'z');
109 assert c'z' == callToLowerCase(c'Z');
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/02.generic_instantiations/02.type_arguments/type_arguments_of_parameterized_declarations/
Dclass_variance.params.yaml22 let z: X = a.methOut()
26 let z: Object|null = a.methOut()
30 a.methIn(new Z())
34 let z: X = a.methOut()
38 let z: X = a.methOut()
42 let z: X = a.methOut()
45 let a: A<in X> = new A<X>(new Z())
46 let z: Y = a.methOut()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/intrinsics/
Dstring_trim.sts58 const Z: String = '\u01B5'; // 'Ƶ'
59 const ZWs: String = Z + Ws;
60 const WsZ: String = Ws + Z;
61 const WsZWs: String = Ws + Z + Ws;
106 assert Z.trim() == Z;
107 assert WsZ.trim() == Z;
108 assert ZWs.trim() == Z;
120 assert Z.trimLeft() == Z;
121 assert WsZ.trimLeft() == Z;
134 assert Z.trimRight() == Z;
[all …]
Dstring_concat.sts16 let init: String[] = [ "", "Z", "perseverance", "Я", "длинношеее"]
21 [ "Z", "ZQ", "Z credentials", "ZФ", "Z распространение"],
29 [ "Z", "ZQR", "Z credentials", "Z credentials essentially",
30 "ZФЖ", "Z распространение многочлен"],
40 ["Z", "ZQRW", "Z credentials essentially hilariously",
41 "ZФЖЮ", "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}
/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/ets_runtime/test/pgotypeinfer/add/
Dadd.js18 let z = x + y variable
19 ArkTools.pgoAssertType(z, "number"); // int + int -> int
22 z = x + y
23 ArkTools.pgoAssertType(z, "int");
27 z = x + y
28 ArkTools.pgoAssertType(z, "double");
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/06.widening_union_conversion/decl_field/
Ddecl-field-wd.sts29 class Z {
34 let z: Z = new Z()
36 z.fld = s{{loop.index}}
37 assert z.fld {{'as ' + t.ref_type if t.ref_type}} {{t.eq}} {{t.expr|safe}}
Ddecl-field-un.sts29 class Z {
34 let z: Z = new Z()
36 z.fld = s{{loop.index}}
37 assert z.fld as {{t.ref_type}} {{t.eq}} {{t.expr|safe}}
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/10.function_types_conversions/decl_field/
Ddecl-field.sts24 class Z {
32 let z: Z = new Z()
34 assert z.w{{loop.index}}{{t.call}}
35 assert z.q{{loop.index}}{{t.call}}

12345678910>>...27