| /arkcompiler/runtime_core/libpandabase/serializer/ |
| D | struct_to_tuple.h | 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); 50 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(13, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12); [all …]
|
| /arkcompiler/runtime_core/static_core/libpandabase/serializer/ |
| D | struct_to_tuple.h | 42 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(4, e0, e1, e2, e3); 43 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(5, e0, e1, e2, e3, e4); 44 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(6, e0, e1, e2, e3, e4, e5); 45 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(7, e0, e1, e2, e3, e4, e5, e6); 46 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(8, e0, e1, e2, e3, e4, e5, e6, e7); 47 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(9, e0, e1, e2, e3, e4, e5, e6, e7, e8); 48 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(10, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9); 49 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(11, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10); 50 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(12, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11); 51 SERIALIZE_INTERNAL_STRUCT_TO_TUPLE_IMPL(13, e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12); [all …]
|
| /arkcompiler/runtime_core/static_core/verification/util/tests/ |
| D | flags.cpp | 24 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() 31 EXPECT_FALSE(flags[Enum::E3]); in TEST() 35 EXPECT_FALSE(flags[Enum::E3]); in TEST() 41 EXPECT_FALSE(flags[Enum::E3]); in TEST() 45 EXPECT_FALSE(flags[Enum::E3]); in TEST()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/11.enumerations/02.enumeration_string_values/ |
| D | enum_str.params.yaml | 34 let e3 = Enum.third 36 assertEQ("" + e1 + e2 + e3, "ABB") 42 const e3 = Enum.third 44 assertEQ("" + e1 + e2 + e3, "ABB") 68 enum Enum { e1 = "A", e2 = "B", e3 = "C" } 70 let v = Enum.e3 74 case Enum.e3: assertEQ(v.toString(), Enum.e3.toString()); break;
|
| /arkcompiler/runtime_core/static_core/tests/cts-assembly/ |
| D | exceptions-catch-hierarchy.pa | 16 .record E3 <extends=E2> {} 28 .function u1 E3.f(E3 a0) { 45 .catch E3, try_begin, try_end, catch_block_begin
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/enums/ |
| D | test-ts-enum-24.ts | 26 export enum E3 { enum 31 print(ns3.E3.a); 32 print(ns3.E3["str"]);
|
| D | test-ts-enum-20.ts | 34 enum E3 {a = ns2.ns1.ns1.E2.a} enum 35 print(E3.a); 36 print(E3["str"]);
|
| D | test-ts-enum-27.ts | 31 enum E3 { enum 37 print(E3["123"]);
|
| /arkcompiler/ets_frontend/ets2panda/test/parser/ets/ |
| D | switch_enum_string_case.ets | 20 enum Enum {e1 = "A", e2 = "B", e3 = "C"} 23 let v = Enum.e3 27 case Enum.e3: break;
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/ |
| D | switch_enum_string_case_duplicate.ets | 16 enum Enum {e1 = "A", e2 = "B", e3 = "C"} 19 let v = Enum.e3 23 case Enum.e3: break;
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/js/language/arguments-object/ |
| D | test-key-named-bound-value.js | 17 2e3 : 'scientific notation', 37 print(number[2e3]); // call key 2e3 38 print(number[2000]); // call key 2e3
|
| D | test-key-named-called-func-bound-value.js | 17 2e3: function () { 19 return "Successfully called key 2e3"; 99 print(obj[2e3]()); // call key 2e3 100 print(obj[2000]()); // call key 2e3
|
| D | test-key-named-called-func-bound-value-expected.txt | 1 Successfully called key 2e3 2 Successfully called key 2e3
|
| /arkcompiler/ets_frontend/es2panda/test/parser/js/language/arguments-object/ |
| D | test-class-func-named-scientific-notation.js | 17 2e3() {} 21 obj.2e3();
|
| D | test-func-named-scientific-notation.js | 17 function 2e3() {}
|
| /arkcompiler/runtime_core/static_core/libpandabase/tests/ |
| D | type_converter_tests.cpp | 36 std::uniform_int_distribution<time_t> distribNanosRight(0U, 1e3 - 1L); in TEST() 48 uint64_t nanos = leftPartTime * 1e3 + rightPartTime; in TEST() 50 ASSERT_EQ(TimeConverter(nanos * 1e3), ValueUnit(expected, "ms")); in TEST()
|
| D | expected_test.cpp | 73 auto e3 = Expected<int, ErrorCode>(u); in TEST() local 76 EXPECT_EQ(e3.Error(), ErrorCode::SECOND); in TEST()
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/ |
| D | throw.yaml | 21 .record E3 {} 253 isinstance E3 272 .catch E3, try_begin, try_end, catch_E3_block_begin 277 - values: [1, 2, 3, 0, E3] 375 .catch E3, begin3, end3, catch3 402 - E3 453 - values: [E2, E1, E2, 0, 1, E3] 454 - values: [E3, E1, E2, 1, 0, E3] 495 - values: [E2, E1, E3, E2] 496 - values: [E3, E1, E1, E3]
|
| /arkcompiler/ets_runtime/test/moduletest/decodeuricomponent/ |
| D | decodeuricomponent.js | 162 …"%CF%82%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF%EC%95%88%EB%85%95%ED%95%98%EC%84%B8%EC%9A%94%…
|
| /arkcompiler/runtime_core/libpandabase/tests/ |
| D | type_converter_tests.cpp | 33 std::uniform_int_distribution<time_t> distrib_nanos_right(0, 1e3 - 1); 45 uint64_t nanos = left_part_time * 1e3 + right_part_time; 47 ASSERT_EQ(TimeConverter(nanos * 1e3), ValueUnit(expected, "ms"));
|
| D | expected_test.cpp | 71 auto e3 = Expected<int, ErrorCode>(u); in TEST() local 74 EXPECT_EQ(e3.Error(), ErrorCode::Second); in TEST()
|
| /arkcompiler/ets_frontend/arkguard/test/grammar/shorthand/toplevelConfig/ |
| D | workercustomModule_requireApi_expected.txt | 17 const { PI: e3 } = Math;
|
| /arkcompiler/ets_frontend/arkguard/test/ut/utils/apiTest_visitEnumMembers/ |
| D | enumMembers.js | 27 E3
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/transformed_cases/ |
| D | test-for-statement-2.ts | 27 for (let k of a) enum E3{} enum
|
| /arkcompiler/ets_frontend/arkguard/test/grammar/export_obfuscation/ |
| D | name_as_export_api_1_expected.txt | 43 export { e3, g3 as f3 };
|