Home
last modified time | relevance | path

Searched full:w (Results 1 – 25 of 671) sorted by relevance

12345678910>>...27

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
Daarch64_int_regs.def32 INT_REG(0 , "W", "X", true, false, true, false, false)
33 INT_REG(1 , "W", "X", true, false, true, false, false)
34 INT_REG(2 , "W", "X", true, false, true, false, false)
35 INT_REG(3 , "W", "X", true, false, true, false, false)
36 INT_REG(4 , "W", "X", true, false, true, false, false)
37 INT_REG(5 , "W", "X", true, false, true, false, false)
38 INT_REG(6 , "W", "X", true, false, true, false, false)
39 INT_REG(7 , "W", "X", true, false, true, false, false)
40 INT_REG(8 , "W", "X", true, false, false, false, false)
41 INT_REG(9 , "W", "X", true, false, false, false, false)
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/01.type_parameters/02.type_parameter_default/generic_functions/
Dfunction_type_parameter_default.params.yaml19 let w = foo()
20 w.accept(new SomeType())
24 let w = foo()
25 w.accept(new SomeType(), new OtherType())
29 let w = foo<OtherType, SomeType>()
30 w.accept(new OtherType(), new SomeType())
34 let w = foo<SomeType>()
35 w.accept(new SomeType(), new SomeType())
39 let w = foo<SomeType>()
40 w.accept(new SomeType(), [new SomeType()])
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/
Dx64_int_regs.def30 INT_REG(0 , "BL", "BH", "W", "L", "Q", true, false, false, false, false) //AX
31 INT_REG(1 , "BL", "BH", "W", "L", "Q", true, false, true, false, false) //CX
32 INT_REG(2 , "BL", "BH", "W", "L", "Q", true, false, true, false, false) //DX
33 INT_REG(3 , "BL", "BH", "W", "L", "Q", true, true, false, false, false) //BX
34 INT_REG(4 , "B", "", "W", "L", "Q", false, false, false, false, false)
35 INT_REG(5 , "B", "", "W", "L", "Q", false, true, false, false, false)
36 INT_REG(6 , "B", "", "W", "L", "Q", true, false, true, false, false)
37 INT_REG(7 , "B", "", "W", "L", "Q", true, false, true, false, false)
38 INT_REG(8 , "B", "", "W", "L", "Q", true, false, true, false, false)
39 INT_REG(9 , "B", "", "W", "L", "Q", true, false, true, false, false)
[all …]
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/
DXDefine.js19 static ReSize(w, h) { argument
20 Scr.width = w;
22 if (Scr.keeplogicworh == 'width') Scr.logich = (Scr.logicw * h) / w;
23 else Scr.logicw = (Scr.logich * w) / h;
25 static setLogicScreenSize(w, h) { argument
26 if (Scr.logicw == w && Scr.width == w && Scr.logich == h && Scr.height == h)
28 Scr.logicw = w;
30 Scr.width = w;
/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.yaml113 const s: string = "W"
118 assert foo(s) == c'W'
119 assert foo(r + s + "") == c'W'
128 const s: string = "W"
134 assert a.meth(s) == c'W'
135 assert a.meth(r + s + "") == c'W'
145 const s: string = "W"
150 assert new A(s).fld == c'W'
151 assert new A(r + s + "").fld == c'W'
155 const s: string = "W"
[all …]
Dstr2char_n1.params.yaml69 let s: string = "W"
72 assert foo(r + s + "") == c'W'
81 const s: string = "W"
85 assert a.meth(r + s + "") == c'W'
95 const s: string = "W"
98 assert new A(r + s + "").fld == c'W'
102 let s: string = "W"
105 assert ((p: char): char => { return p })(r + s + "") == c'W'
109 let s: string = "W"
117 const s: string = "W"
[all …]
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/graphics/
DXTexture.js73 this.ximages[rid] = { stat: 1, path: path, tex: texture, w: 1, h: 1 }; property
101 XTexture.pinstance_.ximages[rid].w = image.width;
107 TmpCut(rid, x = 0, y = 0, w = -1, h = -1, ww = 1024, hh = 1024) { argument
112 if (w === -1) {
113 w = ww;
122 w: w, property
126 u1: (x + w) / ww,
128 u2: (x + w) / ww,
136 makeCut(rid, x = 0, y = 0, w = -1, h = -1, ww = -1, hh = -1) { argument
138 ww = this.ximages[rid].w;
[all …]
/arkcompiler/ets_frontend/arkguard/test/combinations_expect/basic_grammar/top/04_class_cases/01_constructor/
D03_class_nested_constructor_expected.txt15 import w from "assert";
29 w(b1.p001 === 4);
30 w(b1.p003 === "3");
36 w(z.p001 === 2);
37 w(z.p002 === "22");
38 w(x === 1);
/arkcompiler/ets_frontend/arkguard/test/combinations_expect/basic_grammar/strProp+top/04_class_cases/01_constructor/
D03_class_nested_constructor_expected.txt15 import w from "assert";
29 w(b1.p001 === 4);
30 w(b1.p003 === "3");
36 w(z.p001 === 2);
37 w(z.p002 === "22");
38 w(x === 1);
/arkcompiler/runtime_core/tests/verifier-tests/
Dbug_1828.pa14 .record W {
17 .function void W.ctor(W a0) <ctor> {
22 initobj.short W.ctor
25 stobj v0, W.static_field
Dbug_1833.pa14 .record W {
17 .function void W.ctor(W a0) <ctor> {
26 initobj.short W.ctor
/arkcompiler/runtime_core/static_core/tests/verifier-tests/
Dbug_1828.pa14 .record W {
17 .function void W.ctor(W a0) <ctor> {
22 initobj.short W.ctor
25 stobj v0, W.static_field
Dbug_1833.pa14 .record W {
17 .function void W.ctor(W a0) <ctor> {
26 initobj.short W.ctor
Dbug_2086_1.pa37 .record W {
40 .function void W.ctor(W a0) <ctor> {
51 initobj.short W.ctor
53 ldobj.64 v0, W.static_field
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/gclog/ark/
Dark_gc_patterns.py21 TIMESTAMP = r'(?P<timestamp>\w{3} \d{1,2} \d{1,2}:\d{1,2}:\d{1,2}.\d{3})'
22 GC_NAME = r'(?P<gc_name>[\w\- ]+) GC'
23 GC_COUNTER = r'\[(?P<gc_counter>\w+)\]'
24 GC_CAUSE = r'\[(?P<gc_collection_type>\w+) ' \
25 r'\((?P<gc_cause>\w+(?:\s+\w+)?)\)\]'
33 PAUSE_TIME = r'phase: \w+ paused: (?P<pause_time>\d+(?:.\d+)?)' \
35 PAUSES = r'(?P<pauses>(phase: \w+ paused: \d+(?:.\d+)?(?:s|ms|us) )+)'
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/internal_tests/
Dtest_expect.py30 with warnings.catch_warnings(record=True) as w:
33 assert len(w) == 1
34 assert w[0].category is ExpectErrorWarning
39 with warnings.catch_warnings(record=True) as w:
42 assert len(w) == 1
43 assert w[0].category is ExpectWarning
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Dldstatic.obj.yaml66 .record W {
75 W fW
77 W[] fWArray
79 .function void W.object_function(W a0) {
89 - W.fu1
94 - W.fi8
99 - W.fu16
104 - W.fi16
109 - W.fi32
114 - W.fi64
[all …]
Dldstatic.64.yaml54 .record W {
63 W fW
65 W[] fWArray
67 .function void W.object_function(W a0) {
77 - W.fu1
82 - W.fi8
87 - W.fu16
92 - W.fi16
97 - W.fi32
102 - W.fi64
[all …]
Dldstatic.yaml55 .record W {
64 W fW
66 W[] fWArray
68 .function void W.object_function(W a0) {
78 - W.fu1
83 - W.fi8
88 - W.fu16
93 - W.fi16
98 - W.fi32
103 - W.fi64
[all …]
Dststatic.64.yaml75 .record W {
84 W fW
86 W[] fWArray
88 .function void W.object_function(W a0) {
99 - W.fu1
104 - W.fi8
109 - W.fu16
114 - W.fi16
119 - W.fi32
124 - W.fi64
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Dcommon_call.cpp92 __ Cmp(argc.W(), Immediate(0)); in PushArgsWithArgv()
98 __ Add(argv, argv, Operand(argc.W(), UXTW, 3)); // 3: argc * 8 in PushArgsWithArgv()
102 __ Sub(argc.W(), argc.W(), Immediate(1)); in PushArgsWithArgv()
103 __ Cbnz(argc.W(), &loopBeginning); in PushArgsWithArgv()
111 __ Cmp(argc.W(), Immediate(0)); in PushArgsWithArgvInPair()
118 __ Add(argv, argv, Operand(argc.W(), UXTW, 3)); // 3: argc * 8 in PushArgsWithArgvInPair()
121 __ Sub(argc.W(), argc.W(), Immediate(1)); // 1: push the top arg already in PushArgsWithArgvInPair()
122 __ Sub(argv, argv, Operand(argc.W(), UXTW, 3)); // 3: argc * 8 in PushArgsWithArgvInPair()
129 __ Add(argv, argv, Operand(argc.W(), UXTW, 3)); // 3: argc * 8 in PushArgsWithArgvInPair()
131 __ Cmp(argc.W(), Immediate(1)); // 1: argc is odd number in copyArgs in PushArgsWithArgvInPair()
[all …]
/arkcompiler/ets_frontend/es2panda/test/compiler/js/regex/
Dmixed_test_all.js27 const regex = new RegExp('^\\w+(?<=\\w+)([^\\S]?)\\W{1,2}([!@#;:,.]{0,2})' +
28 '[\\f\\v\\r\\n\\t\\b]{1,2}\\1(\\s*\\w*\\s*)*(?<![^\\D])' +
29 '[\\uD83C-\\uDBFF\\uDC00-\\uDFFF]{2,}([^\S]?\\d+\\s*)\\w*.\\b\\w+\\.$', 'gsmiu');
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DGenericBridges_02.sts63 class D<W> extends C<string, W> {
68 f1(v: Numeric|string|C<Int, W>): string {
76 f2(v: D<W>): D<W> {
77 return new D<W>();
84 f4(v: D<W>): string {
92 f5(x: string|W|C<string, W>[]): string {
100 f7(x: string, y: D<W>): string {
108 f9(z: W, y: string): string {
112 f9(z: W, y: Int): string {
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dststatic.64.yaml83 .record W {
92 W fW
94 W[] fWArray
96 .function void W.object_function(W a0) {
108 - W.fu1
113 - W.fi8
118 - W.fu16
123 - W.fi16
128 - W.fi32
133 - W.fi64
[all …]
/arkcompiler/ets_runtime/test/aottest/pgo_inherited_function_operation/
Dpgo_inherited_function_operation.ts38 obj.w = "w" // store: obj.w --> type: MONO_STORE_PROPERTY
49 print(obj.w) // load: obj.w --> type: LOAD_PROPERTY
85 this.w = 1 // store: this.x --> type: MONO_STORE_PROPERTY * 2
106 p1.w = 5 // store: p1.w = 5 --> type: STORE_PROPERTY
110 print(obj1.w) // load: obj1.w --> type: MONO_LOAD_PROPERTY_ON_PROTO
113 print(obj2.w) // load: obj2.w --> type: MONO_LOAD_PROPERTY_ON_PROTO
116 print(obj3.w) // slowpath
130 this.w = 1 // slowpath: not dumped due to protochanged
148 print(obj.w) // load: obj.w --> type: MONO_LOAD_PROPERTY_ON_PROTO
231 this.w = 1 // store: this.x --> type: MONO_STORE_PROPERTY * 2
[all …]

12345678910>>...27