Home
last modified time | relevance | path

Searched full:e2 (Results 1 – 25 of 123) sorted by relevance

12345

/arkcompiler/runtime_core/static_core/libpandabase/serializer/
Dstruct_to_tuple.h40 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(3, appName, e1, e2);
41 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(4, e0, e1, e2, e3);
42 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(5, e0, e1, e2, e3, e4);
43 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(6, e0, e1, e2, e3, e4, e5);
44 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(7, e0, e1, e2, e3, e4, e5, e6);
45 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(8, e0, e1, e2, e3, e4, e5, e6, e7);
46 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(9, e0, e1, e2, e3, e4, e5, e6, e7, e8);
47 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(10, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9);
48 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(11, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10);
49 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(12, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11);
[all …]
/arkcompiler/runtime_core/libpandabase/serializer/
Dstruct_to_tuple.h40 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(3, e0, e1, e2);
41 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(4, e0, e1, e2, e3);
42 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(5, e0, e1, e2, e3, e4);
43 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(6, e0, e1, e2, e3, e4, e5);
44 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(7, e0, e1, e2, e3, e4, e5, e6);
45 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(8, e0, e1, e2, e3, e4, e5, e6, e7);
46 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(9, e0, e1, e2, e3, e4, e5, e6, e7, e8);
47 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(10, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9);
48 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(11, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10);
49 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(12, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11);
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dir_builder.h71 V(Add, (GateRef gate, GateRef e1, GateRef e2)) \
72 V(Sub, (GateRef gate, GateRef e1, GateRef e2)) \
73 V(Mul, (GateRef gate, GateRef e1, GateRef e2)) \
74 V(FloatDiv, (GateRef gate, GateRef e1, GateRef e2)) \
75 V(IntDiv, (GateRef gate, GateRef e1, GateRef e2)) \
76 V(UDiv, (GateRef gate, GateRef e1, GateRef e2)) \
77 V(IntOr, (GateRef gate, GateRef e1, GateRef e2)) \
78 V(IntAnd, (GateRef gate, GateRef e1, GateRef e2)) \
79 V(IntXor, (GateRef gate, GateRef e1, GateRef e2)) \
80 V(IntLsr, (GateRef gate, GateRef e1, GateRef e2)) \
[all …]
/arkcompiler/runtime_core/static_core/verification/util/tests/
Dflags.cpp24 enum class Enum { E1, E2, E3 }; in TEST() enumerator
25 using F = ark::verifier::FlagsForEnum<size_t, Enum, Enum::E1, Enum::E2, Enum::E3>; in TEST()
28 flags[Enum::E2] = true; in TEST()
29 EXPECT_TRUE(flags[Enum::E2]); in TEST()
32 flags[Enum::E2] = false; in TEST()
34 EXPECT_FALSE(flags[Enum::E2]); in TEST()
37 flags[Enum::E2] = true; in TEST()
40 EXPECT_TRUE(flags[Enum::E2]); in TEST()
44 EXPECT_TRUE(flags[Enum::E2]); in TEST()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/11.enumerations/02.enumeration_string_values/
Denum_str.params.yaml33 let e2 = Enum.second
36 assert "" + e1 + e2 + e3 == "ABB"
41 const e2 = Enum.second
44 assert "" + e1 + e2 + e3 == "ABB"
55 enum Enum { e1 = a, e2 = "DEF" } // constant expression
58 assert Enum.e2.toString() == "DEF"
62 enum Enum { e1 = a + a, e2 = a + "DEF" } // constant expressions
65 assert Enum.e2.toString() == "ABCDEF"
68 enum Enum { e1 = "A", e2 = "B", e3 = "C" }
73 case Enum.e2: assert false; break;
Denum_str_n.params.yaml38 enum Enum { e1 = a, e2 = "DEF" }
41 assert Enum.e2.toString() == "DEF"
/arkcompiler/runtime_core/static_core/tests/cts-assembly/
Dexceptions-catch-hierarchy.pa15 .record E2 <extends=E1> {}
16 .record E3 <extends=E2> {}
23 .function u1 E2.f(E2 a0) {
34 newobj v0, E2
68 .catch E2, try_begin, try_end, catch_block2_begin
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/enums/
Dtest-ts-enum-20.ts29 export enum E2 {a = ns.ns.E1.a} enum
30 print(E2.a);
31 print(E2["str"]);
34 enum E3 {a = ns2.ns1.ns1.E2.a}
Dtest-ts-enum-28.ts26 enum E2 { enum
29 print(E2.a);
30 print(E2["str"]);
Dtest-ts-enum-30.ts28 enum E2 { enum
31 print(E2.a);
32 print(E2["str"]);
Dtest-ts-enum-33.ts20 b = ns2.E2.b,
21 c = ns1.E1.a + ns2.E2.b,
35 export enum E2 { enum
Dtest-ts-enum-27.ts27 enum E2 { enum
36 print(E2["123"]);
/arkcompiler/runtime_core/libpandabase/tests/
Dexpected_test.cpp69 auto e2 = Expected<int, ErrorCode>(Unexpected(ErrorCode::First)); in TEST() local
72 EXPECT_FALSE(e2); in TEST()
73 EXPECT_EQ(e2.Error(), ErrorCode::First); in TEST()
85 const auto e2 = Expected<int, ErrorCode>(1); in TEST() local
86 EXPECT_EQ(e2.Value(), 1); in TEST()
87 EXPECT_EQ(*e2, 1); in TEST()
/arkcompiler/runtime_core/static_core/libpandabase/tests/
Dexpected_test.cpp71 auto e2 = Expected<int, ErrorCode>(Unexpected(ErrorCode::FIRST)); in TEST() local
74 EXPECT_FALSE(e2); in TEST()
75 EXPECT_EQ(e2.Error(), ErrorCode::FIRST); in TEST()
87 const auto e2 = Expected<int, ErrorCode>(1U); in TEST() local
88 EXPECT_EQ(e2.Value(), 1U); in TEST()
89 EXPECT_EQ(*e2, 1U); in TEST()
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
Duse-hex-as-key.js20 1e2: 100,
25 print(a[1e2])
44 print(b[1e2])
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe111.md25 enum E2 {
47 enum E2 {
Drecipe53.md43 let e2 = (new Number(5.0)) instanceof Number // true
66 let e2 = (new Number(5.0)) instanceof Number // true
/arkcompiler/ets_frontend/ets2panda/test/parser/ets/
Dswitch_enum_string_case.sts16 enum Enum {e1 = "A", e2 = "B", e3 = "C"}
21 case Enum.e2: assert false; break;
/arkcompiler/ets_frontend/arkguard/test/grammar/toplevel/
Dtoplevel_module_test1_expected.txt18 type e2 = number;
26 let var1: e2;
/arkcompiler/ets_frontend/ets2panda/linter/test/
Dthrow_error.sts17 interface E2 extends E1 {}
25 class A2 implements E2 {
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/29.assignment/02.compound_assignment_operators/
Dops_neg.sts19 A compound assignment expression of the form E1 op= E2 is equivalent to E1 = ((E1) op (E2)) as T,
Dops.sts19 A compound assignment expression of the form E1 op= E2 is equivalent to E1 = ((E1) op (E2)) as T,
Dops_neg_rt.sts19 A compound assignment expression of the form E1 op= E2 is equivalent to E1 = ((E1) op (E2)) as T,
Dops_boxed.sts19 A compound assignment expression of the form E1 op= E2 is equivalent to E1 = ((E1) op (E2)) as T,
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Dthrow.yaml20 .record E2 {}
239 isinstance E2
271 .catch E2, try_begin, try_end, catch_E2_block_begin
276 - values: [1, 2, 0, 4, E2]
303 .catch E2, try_begin, try_end, catch_E2_block_begin
307 - values: [E2, 0, 2, 3]
332 .catch E2, try_begin, try_end, catch_block_begin
339 - E2
374 .catch E2, begin2, end2, catch2
390 - E2
[all …]

12345