Home
last modified time | relevance | path

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

12345678910>>...83

/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/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_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/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 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
DinterfaceAssignment2.ts18 a: number, property
23 a: string, property
27 var a: 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
DinterfaceAssignment2.ts18 a: number, property
23 a: string, property
27 var a: A; variable
/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_runtime/test/moduletest/asmstackoverflow/
Dasmstackoverflow.js22 function foo(x, y, z, a, b) { argument
74 function callarg1(a) { argument
83 function callarg2(a, b) { argument
92 function callarg3(a, b, c) { argument
101 function callrange(a, b, c, d) { argument
115 callthis1: function (a) { argument
118 callthis2: function (a, b) { argument
121 callthis3: function (a, b, c) { argument
124 callthisrange: function (a, b, c, d) { argument
159 static callstatic1(a) { argument
[all …]
/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
Dtest-ts-enum-28.ts18 a = 1; property in ns
22 a = "str", enumerator
27 a = ns.E.a enumerator
Dtest-ts-enum-24.ts18 export enum a { enum
24 a = "999" enumerator
27 a = EE.a.length 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_frontend/ets2panda/test/ast/parser/js/
Dtest-private-field15.js17 set #a(u) { }; method in A
18 get #a() { }; method in A
19 #a; field in A
/arkcompiler/ets_runtime/test/aottest/pgo_call_recursive_js/
Dpgo_call_recursive_js.js17 function foo(a) { argument
27 function foo1(a) { argument
31 function foo2(a) { argument
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/compiler/
Dtest-ts-declare-1.ts35 declare module m { export var a; }; variable
37 declare namespace ns { export var a; }; variable
39 declare enum E { a = 1 }; enumerator
41 declare interface I { a: string }; property

12345678910>>...83