Home
last modified time | relevance | path

Searched defs:a (Results 1 – 25 of 2079) sorted by relevance

12345678910>>...84

/arkcompiler/ets_frontend/ets2panda/test/parser/ts/
Dtest_module.ts17 namespace a { namespace
18 let a; variable
21 a: (a: number, b: string) => boolean, property
26 namespace a { namespace
27 let a; variable
33 let a; variable
40 let a; variable
58 export declare var a; variable
64 export declare var a; variable
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest_module.ts17 namespace a { namespace
18 let a; variable
21 a: (a: number, b: string) => boolean, property
26 namespace a { namespace
27 let a; variable
33 let a; variable
40 let a; variable
58 export declare var a; variable
64 export declare var a; variable
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/
DvarRedeclaration14.ts18 a: number, property
22 a: number, property
26 a: number | string; property
29 var a: c; variable
30 var a: b; variable
DobjectLiteralAssignability8.ts17 var a: { b: number, a: number } | { b: string, a: string } | { b: boolean, a: boolean } = { b: "foo… variable
DobjectLiteralAssignability16.ts17 interface a { interface
18 a: number, property
22 a: number, property
27 a: number, property
36 var a: d = { a: 5, b: "foo", c: true }; variable
DobjectLiteralAssignability15.ts17 interface a { interface
18 a: number | string, property
23 a: string, property
27 var a: b = { a: 5 }; variable
DvarRedeclaration13.ts18 a: number property
30 a: number, property
34 var a: d; variable
35 var a: c; variable
/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ts/
DvarRedeclaration14.ts18 a: number, property
22 a: number, property
26 a: number | string; property
29 var a: c; variable
30 var /* @@ label */a: b; variable
DobjectLiteralAssignability8.ts17 var a: { b: number, a: number } | { b: string, a: string } | { b: boolean, a: boolean } = { b: "foo… variable
DobjectLiteralAssignability16.ts17 interface a { interface
18 a: number, property
22 a: number, property
27 a: number, property
36 var /* @@ label */a: d = { a: 5, b: "foo", c: true }; variable
DobjectLiteralAssignability15.ts17 interface a { interface
18 a: number | string, property
23 a: string, property
27 var a: b = { /* @@ label */a: 5 }; variable
DvarRedeclaration13.ts18 a: number property
30 a: number, property
34 var a: d; variable
35 var /* @@ label */a: c; variable
DinterfaceUsedAsValue.ts17 interface a { interface
18 a: number, property
24 var b = /* @@ label */a; variable
/arkcompiler/ets_runtime/test/moduletest/callframe/
Dcallframe.js23 function foo0(a) { argument
28 function foo1(a) { argument
36 function foo2(a) { argument
43 function foo3(a) { argument
51 function foo4(a, ...args) { argument
56 function foo5(a, ...args) { argument
64 function foo6(a, ...args) { argument
71 function foo7(a, ...args) { argument
/arkcompiler/jsvm/src/
Djsvm_dfx.h75 #define CHECK_EQ(a, b) CHECK((a) == (b)) argument
76 #define CHECK_NE(a, b) CHECK((a) != (b)) argument
77 #define CHECK_LE(a, b) CHECK((a) <= (b)) argument
78 #define CHECK_GE(a, b) CHECK((a) >= (b)) argument
79 #define CHECK_LT(a, b) CHECK((a) < (b)) argument
80 #define CHECK_GT(a, b) CHECK((a) > (b)) argument
83 #define CHECK_IMPLIES(a, b) CHECK(!(a) || (b)) argument
87 #define DCHECK_EQ(a, b) CHECK_EQ(a, b) argument
88 #define DCHECK_NE(a, b) CHECK_NE(a, b) argument
89 #define DCHECK_LE(a, b) CHECK_LE(a, b) argument
[all …]
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/js/
DInvalidExpressions.js38 let a = ({x, y...} = 7) => 0; function
48 a, b} = {a: 1, b:2}; property
51 get a(x) { return x + 1; }, getter
52 set a() { }, setter
60 [a, [a, b]] = [1, 2] ({...r, c} = {a: 10}); property
62 ({a, ...r, b} = {a: 10, b: 20}) => expression; property
Dtest-private-field15.js17 set #a(u) { }; method in A
18 get #a() { }; method in A
19 #a; field in A
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/napi/
Dets_napi_macros.h53 #define ETS_NAPI_ABORT_IF_NE(a, b) \ argument
60 #define ETS_NAPI_ABORT_IF_LT(a, b) \ argument
67 #define ETS_NAPI_ABORT_IF_LE(a, b) \ argument
74 #define ETS_NAPI_ABORT_IF_GT(a, b) \ argument
81 #define ETS_NAPI_ABORT_IF_GE(a, b) \ argument
95 #define ETS_NAPI_RETURN_IF_EQ(a, b, ret) \ argument
102 #define ETS_NAPI_RETURN_IF_NE(a, b, ret) \ argument
109 #define ETS_NAPI_RETURN_IF_GT(a, b, ret) \ argument
116 #define ETS_NAPI_RETURN_IF_GE(a, b, ret) \ argument
123 #define ETS_NAPI_RETURN_IF_LT(a, b, ret) \ argument
[all …]
/arkcompiler/ets_runtime/test/aottest/pgo_call_js/
Dpgo_call_js.js16 function foo(a) { argument
20 function bar(a) { argument
28 function callFoo1(f, a) { argument
32 function callFoo2(f, a) { argument
36 function callFoo3(f, a) { argument
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/enums/
Dtest-ts-enum-20.ts22 enum E {a = "str"} enumerator
24 export enum E1 {a=E.b} enumerator
29 export enum E2 {a = ns.ns.E1.a} enumerator
34 enum E3 {a = ns2.ns1.ns1.E2.a} enumerator
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/pgo_test_case/
Dstring_equal.js17 let a = 'abcString'; variable
19 function foo1(a) { argument
23 function foo2(a) { argument
/arkcompiler/ets_runtime/test/moduletest/asmstackoverflow/
Dasmstackoverflow.js22 function foo(x, y, z, a, b) { argument
71 function callarg1(a) { argument
81 function callarg2(a, b) { argument
91 function callarg3(a, b, c) { argument
101 function callrange(a, b, c, d) { argument
116 callthis1: function (a) { argument
119 callthis2: function (a, b) { argument
122 callthis3: function (a, b, c) { argument
125 callthisrange: function (a, b, c, d) { argument
165 static callstatic1(a) { argument
[all …]
/arkcompiler/runtime_core/libabckit/tests/ut/isa/isa_dynamic/define/
Ddefineclasswithbuffer_dynamic.js22 function newClassConstr2(a) { argument
26 function newClassConstr3(a) { argument
34 function newClassMethod2(a) { argument
42 let a = new A(); variable
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
Dspread-element-in-middle.js16 var x = {a: 1, b: 20} property
17 let y = {a: 2, ...x, a: 3} property
/arkcompiler/runtime_core/compiler/tests/js/
DregallocTest.js52 function func3(a, b, c, d, e) { argument
94 function presplit(a) { argument
103 function split1(a) { argument
110 function split2(a, b) { argument
114 function split3(a) { argument
124 function stat(a) { argument
131 function manyRegisters(a) { argument

12345678910>>...84