Home
last modified time | relevance | path

Searched full:d (Results 1 – 25 of 2504) sorted by relevance

12345678910>>...101

/arkcompiler/ets_frontend/ets2panda/linter/src/lib/utils/consts/
DStandardLibraries.ts17 'lib.es5.d.ts',
18 'lib.es2015.iterable.d.ts',
19 'lib.es2015.generator.d.ts',
20 'lib.es2015.proxy.d.ts',
21 'lib.es2015.promise.d.ts',
22 'lib.es2015.symbol.wellknown.d.ts',
23 'lib.es2015.symbol.d.ts',
24 'lib.es2015.reflect.d.ts',
25 'lib.es2015.collection.d.ts',
26 'lib.es2015.core.d.ts',
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/scripts/
Dbundle-ts-lib-declarations.mjs21 'lib.d.ts',
22 'lib.dom.iterable.d.ts',
23 'lib.dom.d.ts',
24 'lib.es2015.symbol.wellknown.d.ts',
25 'lib.es2015.symbol.d.ts',
26 'lib.es2015.reflect.d.ts',
27 'lib.es2015.proxy.d.ts',
28 'lib.es2015.promise.d.ts',
29 'lib.es2015.iterable.d.ts',
30 'lib.es2015.generator.d.ts',
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/std/serialization/
Dlist.std_serialization_json_static.yaml20 method_signature: {d: byte},
22 method_signature_desc: {d: byte},
23 method_test_index_data: {test1: {d: 1},
24 test2: {d: -1},
25 test3: {d: 0},
26 test4: {d: Byte.MAX_VALUE as byte},
27 test5: {d: Byte.MIN_VALUE as byte},
42 method_signature: {d: short},
44 method_signature_desc: {d: short},
45 method_test_index_data: {test1: {d: 1},
[all …]
/arkcompiler/runtime_core/static_core/cmake/third_party/typescript/
DCMakeLists.txt30 ${TYPESCRIPT_ROOT}/lib/lib.d.ts
31 ${TYPESCRIPT_ROOT}/lib/lib.dom.d.ts
32 ${TYPESCRIPT_ROOT}/lib/lib.dom.iterable.d.ts
33 ${TYPESCRIPT_ROOT}/lib/lib.es2015.collection.d.ts
34 ${TYPESCRIPT_ROOT}/lib/lib.es2015.core.d.ts
35 ${TYPESCRIPT_ROOT}/lib/lib.es2015.d.ts
36 ${TYPESCRIPT_ROOT}/lib/lib.es2015.generator.d.ts
37 ${TYPESCRIPT_ROOT}/lib/lib.es2015.iterable.d.ts
38 ${TYPESCRIPT_ROOT}/lib/lib.es2015.promise.d.ts
39 ${TYPESCRIPT_ROOT}/lib/lib.es2015.proxy.d.ts
[all …]
/arkcompiler/ets_frontend/arkguard/test/combinations_expect/basic_grammar/strProp+top+export/08_enum/
D01_enum_01_expected.txt15 import d from 'assert';
20 d(A1.prop1 === 1);
21 d(A1.prop2 === 2);
29 d(f === 1);
30 d(e.up === 1);
31 d(e.down === 2);
32 d(e.left === 3);
33 d(e.right === 4);
34 d(e[1] === 'up');
35 d(e[3] === 'left');
[all …]
/arkcompiler/ets_frontend/arkguard/test/combinations_expect/basic_grammar/top+export/08_enum/
D01_enum_01_expected.txt15 import d from 'assert';
20 d(A1.prop1 === 1);
21 d(A1.prop2 === 2);
29 d(f === 1);
30 d(e.up === 1);
31 d(e.down === 2);
32 d(e.left === 3);
33 d(e.right === 4);
34 d(e[1] === 'up');
35 d(e[3] === 'left');
[all …]
/arkcompiler/ets_frontend/arkguard/test/combinations_expect/basic_grammar/strProp+top/08_enum/
D01_enum_01_expected.txt15 import d from 'assert';
20 d(A1.prop1 === 1);
21 d(A1.prop2 === 2);
29 d(f === 1);
30 d(e.up === 1);
31 d(e.down === 2);
32 d(e.left === 3);
33 d(e.right === 4);
34 d(e[1] === 'up');
35 d(e[3] === 'left');
[all …]
/arkcompiler/ets_frontend/arkguard/test/combinations_expect/basic_grammar/top/08_enum/
D01_enum_01_expected.txt15 import d from 'assert';
20 d(A1.prop1 === 1);
21 d(A1.prop2 === 2);
29 d(f === 1);
30 d(e.up === 1);
31 d(e.down === 2);
32 d(e.left === 3);
33 d(e.right === 4);
34 d(e[1] === 'up');
35 d(e[3] === 'left');
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/24.relational_expressions/05.enumeration_relational_operators/
Denum_union.sts24 enum Size { S = "a", M = "b", L = "c", XL = "d" }
30 {% for d in operands %}
31 assert({{c.op[0]}}({{d[0]}} < {{d[1]}}))
32 assert({{c.op[1]}}({{d[0]}} < {{d[2]}}))
33 assert({{c.op[2]}}({{d[1]}} < {{d[2]}}))
34 assert({{c.op[3]}}({{d[0]}} <= {{d[1]}}))
35 assert({{c.op[4]}}({{d[0]}} <= {{d[2]}}))
36 assert({{c.op[5]}}({{d[1]}} <= {{d[2]}}))
37 assert({{c.op[6]}}({{d[0]}} > {{d[1]}}))
38 assert({{c.op[7]}}({{d[0]}} > {{d[2]}}))
[all …]
Denum_tup.sts30 {% for d in operands %}
31 assert({{c.op[0]}}({{d[0]}} < {{d[1]}}))
32 assert({{c.op[1]}}({{d[0]}} < {{d[2]}}))
33 assert({{c.op[2]}}({{d[1]}} < {{d[2]}}))
34 assert({{c.op[3]}}({{d[0]}} <= {{d[1]}}))
35 assert({{c.op[4]}}({{d[0]}} <= {{d[2]}}))
36 assert({{c.op[5]}}({{d[1]}} <= {{d[2]}}))
37 assert({{c.op[6]}}({{d[0]}} > {{d[1]}}))
38 assert({{c.op[7]}}({{d[0]}} > {{d[2]}}))
39 assert({{c.op[8]}}({{d[1]}} > {{d[2]}}))
[all …]
Denum_var.sts27 {% for d in operands %}
28 assert({{c.op[0]}}({{d[0]}} < {{d[1]}}))
29 assert({{c.op[1]}}({{d[0]}} < {{d[2]}}))
30 assert({{c.op[2]}}({{d[1]}} < {{d[2]}}))
31 assert({{c.op[3]}}({{d[0]}} <= {{d[1]}}))
32 assert({{c.op[4]}}({{d[0]}} <= {{d[2]}}))
33 assert({{c.op[5]}}({{d[1]}} <= {{d[2]}}))
34 assert({{c.op[6]}}({{d[0]}} > {{d[1]}}))
35 assert({{c.op[7]}}({{d[0]}} > {{d[2]}}))
36 assert({{c.op[8]}}({{d[1]}} > {{d[2]}}))
[all …]
Denum_arr.sts30 {% for d in operands %}
31 assert({{c.op[0]}}({{d[0]}} < {{d[1]}}))
32 assert({{c.op[1]}}({{d[0]}} < {{d[2]}}))
33 assert({{c.op[2]}}({{d[1]}} < {{d[2]}}))
34 assert({{c.op[3]}}({{d[0]}} <= {{d[1]}}))
35 assert({{c.op[4]}}({{d[0]}} <= {{d[2]}}))
36 assert({{c.op[5]}}({{d[1]}} <= {{d[2]}}))
37 assert({{c.op[6]}}({{d[0]}} > {{d[1]}}))
38 assert({{c.op[7]}}({{d[0]}} > {{d[2]}}))
39 assert({{c.op[8]}}({{d[1]}} > {{d[2]}}))
[all …]
Denum_cond.sts27 {% for d in operands %}
28 assert({{c.op[0]}}({{d[0]}} < {{d[1]}}))
29 assert({{c.op[1]}}({{d[0]}} < {{d[2]}}))
30 assert({{c.op[2]}}({{d[1]}} < {{d[2]}}))
31 assert({{c.op[3]}}({{d[0]}} <= {{d[1]}}))
32 assert({{c.op[4]}}({{d[0]}} <= {{d[2]}}))
33 assert({{c.op[5]}}({{d[1]}} <= {{d[2]}}))
34 assert({{c.op[6]}}({{d[0]}} > {{d[1]}}))
35 assert({{c.op[7]}}({{d[0]}} > {{d[2]}}))
36 assert({{c.op[8]}}({{d[1]}} > {{d[2]}}))
[all …]
Denum_fld.sts40 {% for d in operands %}
41 assert({{c.op[0]}}({{d[0]}} < {{d[1]}}))
42 assert({{c.op[1]}}({{d[0]}} < {{d[2]}}))
43 assert({{c.op[2]}}({{d[1]}} < {{d[2]}}))
44 assert({{c.op[3]}}({{d[0]}} <= {{d[1]}}))
45 assert({{c.op[4]}}({{d[0]}} <= {{d[2]}}))
46 assert({{c.op[5]}}({{d[1]}} <= {{d[2]}}))
47 assert({{c.op[6]}}({{d[0]}} > {{d[1]}}))
48 assert({{c.op[7]}}({{d[0]}} > {{d[2]}}))
49 assert({{c.op[8]}}({{d[1]}} > {{d[2]}}))
[all …]
Denum_fun.sts37 {% for d in operands %}
38 assert({{c.op[0]}}({{d[0]}} < {{d[1]}}))
39 assert({{c.op[1]}}({{d[0]}} < {{d[2]}}))
40 assert({{c.op[2]}}({{d[1]}} < {{d[2]}}))
41 assert({{c.op[3]}}({{d[0]}} <= {{d[1]}}))
42 assert({{c.op[4]}}({{d[0]}} <= {{d[2]}}))
43 assert({{c.op[5]}}({{d[1]}} <= {{d[2]}}))
44 assert({{c.op[6]}}({{d[0]}} > {{d[1]}}))
45 assert({{c.op[7]}}({{d[0]}} > {{d[2]}}))
46 assert({{c.op[8]}}({{d[1]}} > {{d[2]}}))
[all …]
Denum_lmb.sts41 {% for d in operands %}
42 assert({{c.op[0]}}({{d[0]}} < {{d[1]}}))
43 assert({{c.op[1]}}({{d[0]}} < {{d[2]}}))
44 assert({{c.op[2]}}({{d[1]}} < {{d[2]}}))
45 assert({{c.op[3]}}({{d[0]}} <= {{d[1]}}))
46 assert({{c.op[4]}}({{d[0]}} <= {{d[2]}}))
47 assert({{c.op[5]}}({{d[1]}} <= {{d[2]}}))
48 assert({{c.op[6]}}({{d[0]}} > {{d[1]}}))
49 assert({{c.op[7]}}({{d[0]}} > {{d[2]}}))
50 assert({{c.op[8]}}({{d[1]}} > {{d[2]}}))
[all …]
/arkcompiler/toolchain/tooling/test/testcases/js/
Ddropframe.js19 var d = 0;
22 d = 1;
26 d = 2;
38 var d = 1;
43 d = d * 2;
46 d = d + 1;
53 var d = 1;
58 d = d * c + b * a;
65 var d = 1;
70 d = d * (b - a);
[all …]
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/
Dtypeinference_function_generic.sts16 function fn1<T extends D, D>(x: T, y: D) {}
19 function fn2<T extends D, D>(x: D, y: T) {}
22 function fn3<T, D extends T>(x: T, y: D) {}
25 function fn4<T, D extends T>(x: D, y: T) {}
28 function fn5<T extends D ,D>(x: D, y:T) {}
32 function fn6<T, F extends T, D extends F>(x:T,y:D,z:F){}
35 function fn7<T extends D, D extends T>(x:T, y:D){}
38 /* @@? 35:37 Error TypeError: Type parameter 'D' has circular constraint dependency. */
/arkcompiler/runtime_core/static_core/scripts/sdk/
Dtest2_file_list_expected.txt108 build-sdk/sdk/tslinter/dist/lib.dom.d.ts
109 build-sdk/sdk/tslinter/dist/lib.dom.iterable.d.ts
110 build-sdk/sdk/tslinter/dist/lib.d.ts
111 build-sdk/sdk/tslinter/dist/lib.es5.d.ts
112 build-sdk/sdk/tslinter/dist/lib.es6.d.ts
113 build-sdk/sdk/tslinter/dist/lib.es2015.collection.d.ts
114 build-sdk/sdk/tslinter/dist/lib.es2015.core.d.ts
115 build-sdk/sdk/tslinter/dist/lib.es2015.d.ts
116 build-sdk/sdk/tslinter/dist/lib.es2015.generator.d.ts
117 build-sdk/sdk/tslinter/dist/lib.es2015.iterable.d.ts
[all …]
/arkcompiler/runtime_core/static_core/libpandabase/os/
Ddfx_option.h27 #define DFX_OPTION_ELEM(D, NAME, STR) D(NAME, DfxOptionHandler::DfxOptionId::NAME##_ID, STR) argument
32 #define DFX_OPTION_LIST(D) \ argument
33 DFX_OPTION_ELEM(D, COMPILER_NULLCHECK, "compiler-nullcheck") \
34 DFX_OPTION_ELEM(D, REFERENCE_DUMP, "reference-dump") \
35 DFX_OPTION_ELEM(D, SIGNAL_CATCHER, "signal-catcher") \
36 DFX_OPTION_ELEM(D, SIGNAL_HANDLER, "signal-handler") \
37 DFX_OPTION_ELEM(D, ARK_SIGQUIT, "sigquit") \
38 DFX_OPTION_ELEM(D, ARK_SIGUSR1, "sigusr1") \
39 DFX_OPTION_ELEM(D, ARK_SIGUSR2, "sigusr2") \
40 DFX_OPTION_ELEM(D, MOBILE_LOG, "mobile-log") \
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
Daarch64_fp_simd_regs.def26 FP_SIMD_REG(0 , "V", "B", "H", "S", "D", "Q", true, false, true, false, false)
27 FP_SIMD_REG(1 , "V", "B", "H", "S", "D", "Q", true, false, true, false, false)
28 FP_SIMD_REG(2 , "V", "B", "H", "S", "D", "Q", true, false, true, false, false)
29 FP_SIMD_REG(3 , "V", "B", "H", "S", "D", "Q", true, false, true, false, false)
30 FP_SIMD_REG(4 , "V", "B", "H", "S", "D", "Q", true, false, true, false, false)
31 FP_SIMD_REG(5 , "V", "B", "H", "S", "D", "Q", true, false, true, false, false)
32 FP_SIMD_REG(6 , "V", "B", "H", "S", "D", "Q", true, false, true, false, false)
33 FP_SIMD_REG(7 , "V", "B", "H", "S", "D", "Q", true, false, true, false, false)
34 FP_SIMD_REG(8 , "V", "B", "H", "S", "D", "Q", true, true, false, false, false)
35 FP_SIMD_REG(9 , "V", "B", "H", "S", "D", "Q", true, true, false, false, false)
[all …]
/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})'
26 OBJS_FREED = r'(?P<obj_count>\d+)\((?P<obj_mem_freed>\d+)' \
28 LOBJS_FREED = r'(?P<large_obj_count>\d+)\((?P<large_obj_mem_freed>\d+)' \
30 HEAP_FREE = r'(?P<heap_free_mem>\d+)% free,'
31 MEM_AFTER_TOTAL = r'(?P<mem_after>\d+)(?P<mem_after_units>(?:B|KB|MB))\/' \
32 r'(?P<mem_total>\d+)(?P<mem_total_units>(?:B|KB|MB)),'
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) )+)'
36 GC_TOTAL_TIME = r'total: (?P<gc_time>\d+(?:.\d+)?)' \
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DGenericBridges_02.sts63 class D<W> extends C<string, W> {
65 return "D.f1";
76 f2(v: D<W>): D<W> {
77 return new D<W>();
81 return "D.f3";
84 f4(v: D<W>): string {
85 return "D.f4";
93 return "D.f5";
97 return "D.f6";
100 f7(x: string, y: D<W>): string {
[all …]
/arkcompiler/ets_frontend/ets2panda/linter/test/ts_import_ets/ts/
Dtest5.ts18 class D {} class
24 let a4 = new A<D>();
25 let a5 = new A1<D>();
26 let a6 = new A2<D>();
34 let b4 = new B<number, D>();
35 let b5 = new B1<number, D>();
36 let b6 = new B2<number, D>();
37 let b7 = new B<D, T>();
38 let b8 = new B1<D, T>();
39 let b9 = new B2<D, T>();
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/
Dx64_fp_simd_regs.def26 FP_SIMD_REG(0 , "B", "H", "S", "D", "Q", true, false, true, false, false)
27 FP_SIMD_REG(1 , "B", "H", "S", "D", "Q", true, false, true, false, false)
28 FP_SIMD_REG(2 , "B", "H", "S", "D", "Q", true, false, true, false, false)
29 FP_SIMD_REG(3 , "B", "H", "S", "D", "Q", true, false, true, false, false)
30 FP_SIMD_REG(4 , "B", "H", "S", "D", "Q", true, false, true, false, false)
31 FP_SIMD_REG(5 , "B", "H", "S", "D", "Q", true, false, true, false, false)
32 FP_SIMD_REG(6 , "B", "H", "S", "D", "Q", true, false, true, false, false)
33 FP_SIMD_REG(7 , "B", "H", "S", "D", "Q", true, false, true, false, false)
34 FP_SIMD_REG(8 , "B", "H", "S", "D", "Q", true, false, false, true, false)
35 FP_SIMD_REG(9 , "B", "H", "S", "D", "Q", true, false, false, true, false)
[all …]

12345678910>>...101