Home
last modified time | relevance | path

Searched full:e (Results 1 – 25 of 517) sorted by relevance

12345678910>>...21

/arkcompiler/ets_frontend/legacy_bin/api8/src/
Dindex.js2e,t,r)=>{"use strict";e=r.nmd(e);const n=r("./node_modules/color-convert/index.js"),i=(e,t)=>funct… class
/arkcompiler/runtime_core/verification/util/
Dsaturated_enum.h37 template <typename Enum, Enum E>
38 class SaturatedEnum<Enum, E> {
40 SaturatedEnum &operator=(Enum e)
42 value_ = e;
46 SaturatedEnum &operator|=(Enum e)
48 Set(e);
52 bool operator[](Enum e) const
54 return Check(e, false);
70 bool Check(Enum e, bool prev_set) const in Check() argument
72 bool Check([[maybe_unused]] Enum e, bool prev_set) const in Check()
[all …]
/arkcompiler/runtime_core/libpandabase/utils/
Dexpected.h26 template <class E>
29 explicit Unexpected(E e) noexcept(std::is_nothrow_move_constructible_v<E>) : e_(std::move(e)) {} in Unexpected() argument
31 const E &Value() const &noexcept in Value()
35 E &Value() & noexcept in Value()
39 E &&Value() && noexcept in Value()
50 E e_;
64 // Expected with T or E for a reference type is ill-formed.
65 template <class T, class E>
76 …Expected(Unexpected<E> e) noexcept(std::is_nothrow_move_constructible_v<E>) : v_(std::move(e.Value… in noexcept() argument
87 const E &Error() const &noexcept(ExpectedConfig::RELEASE) in Error()
[all …]
/arkcompiler/runtime_core/tests/benchmarks/
Daccess-nbody.pa99 fldai.64 1e-13
133 fmovi.64 v1, 4.84143144246472090e+00
134 fmovi.64 v2, -1.16032004402742839e+00
135 fmovi.64 v3, -1.03622044471123109e-01
136 fldai.64 1.66007664274403694e-03
139 fldai.64 7.69901118419740425e-03
142 fldai.64 -6.90460016972063023e-05
145 fldai.64 9.54791938424326609e-04
159 fmovi.64 v1, 8.34336671824457987e+00
160 fmovi.64 v2, 4.12479856412430479e+00
[all …]
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dlda.type.yaml21 .record E <panda.extends=Q> {}
181 - E
197 - E[]
296 - E
300 - E
315 - E[]
319 - E[]
424 - E
425 - E
430 - E
[all …]
Dfmovi.yaml58 - "3.1415e+003"
64 - "1.401298464324817e-45"
67 - "3.402823466385288e+38"
71 - "5.690456613903523e-28"
133 - "-1.40129846432481e-45"
136 - "-3.40282346638528e+38"
165 - v0, 1e
167 - v0, -1e
200 - "+2e-324"
202 - "-2e-324"
[all …]
Dfldai.yaml64 - '4.9e-324'
68 - '5.6904566e-28'
114 - '-1.4012985e-45'
117 - '-3.4028235e+38'
138 - '1e'
144 - '-1e'
171 - '+1.4e-45'
174 - '+1.4e-46'
177 - '-1.4e-45'
180 - '-1.4e-46'
Dfldai.64.yaml64 - '4.9e-324'
71 - '5.626349108908516e-221'
120 - '-4.9e-324'
144 - '1e'
150 - '-1e'
177 - '4.9e-324'
180 - '4.9e-325'
183 - '-4.9e-324'
186 - '-4.9e-325'
Dfadd2.64.yaml93 - "9.9e-300"
150 - "9.9e-300"
642 - "1.0e-100"
643 - "1.0e-100"
644 - "2.0e-100"
646 - "1.0e+100"
647 - "1.0e-100"
648 - "1.0e+100"
654 - "-1.0e-100"
655 - "-1.0e-100"
[all …]
Dfmod2.64.yaml559 - "1.0e+100"
560 - "1.0e-100"
561 - "9.885752855515831e-101"
567 - "-1.0e-100"
568 - "1.0e-100"
571 - "-1.0e+100"
572 - "-1.0e-100"
573 - "-9.885752855515831e-101"
762 - "2.764634450793475e-72"
764 - "2.764634450793475e-72"
[all …]
Dfmovi.64.yaml64 - "4.9e-324"
71 - "5.626349108908516e-221"
133 - "-4.9e-324"
164 - v0, 1e
166 - v0, -1e
199 - "+2e-324"
201 - "-2e-324"
226 - "+2e-325"
229 - "-2e-325"
Dfdiv2.64.yaml630 - "1.0e+100"
631 - "1.0e-100"
632 - "1.0e+200"
638 - "-1.0e-100"
639 - "1.0e-100"
642 - "-1.0e+100"
643 - "-1.0e-100"
644 - "1.0e+200"
854 - "-3.6826725689471526e-41"
855 - "3.6599032943264284e-35"
[all …]
/arkcompiler/ets_runtime/test/moduletest/trycatch/
Dtrycatch.js25 } catch(e) {
26 print(e.name);
32 } catch(e) {
33 print(e.name);
37 print(e.name);
38 } catch(e) {
39 print(e.name);
/arkcompiler/ets_frontend/es2panda/test/compiler/js/language/expressions/assignment/
Dtest-logic-assigment-expression-with-assignment-done.js5 let e = 123; variable
6 a ||= e;
7 b &&= e;
8 c ??= e;
9 d ??= e;
Dtest-logic-assigment-expression-with-assignment-undone.js4 let e = 123; variable
5 b ||= e;
6 a &&= e;
7 c ??= e;
/arkcompiler/runtime_core/libpandabase/os/
Ddebug_info.h61 CompUnit(CompUnit &&e) : dbg_(e.dbg_), cu_die_(e.cu_die_), line_ctx_(e.line_ctx_) in CompUnit() argument
63 e.cu_die_ = nullptr; in CompUnit()
64 e.line_ctx_ = nullptr; in CompUnit()
69 CompUnit &operator=(CompUnit &&e)
71 dbg_ = e.dbg_;
72 cu_die_ = e.cu_die_;
73 e.cu_die_ = nullptr;
74 line_ctx_ = e.line_ctx_;
75 e.line_ctx_ = nullptr;
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/expressions/
Dts-test-expression-1.ts37 var e = 1 | 2; variable
38 e = e & 3;
39 d = e == 3;
41 print(e)
48 e: { a: 1 },
57 print(f.e.a)
/arkcompiler/ets_runtime/test/aottest/class_method_signature/
Dclass_method_signature.ts54 class E { class
68 E.prototype.foo = function(): string {
69 return "E";
72 let e = new E(); variable
73 print(e.foo!());
74 print(e.bar());
/arkcompiler/runtime_core/compiler/tests/
Drpo_test.cpp53 * [D] <- [E]
68 * [D] <- [E] -> [N]
106 auto E = &BB(6); in TEST_F() local
110 Check_Subsequence({A, C, E, D}); in TEST_F()
129 E->AppendInst(cmp); in TEST_F()
135 E->AppendInst(if_inst); in TEST_F()
136 E->AddSucc(N); in TEST_F()
145 GetGraph()->GetAnalysis<Rpo>().AddBasicBlockAfter(E, N); in TEST_F()
152 Check_Subsequence({A, C, E, D, M, K}); in TEST_F()
153 Check_Subsequence({A, C, E, N}); in TEST_F()
[all …]
/arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/
DinterfaceAssignment.ts71 e: [number, string]; property
74 var d: D5 = { a: 2, b: 3, c: "bar", d: ["foo", "bar", "baz"], e: [1, "foo"] }
76 interface E { variable
80 interface E { variable
84 interface E { variable
88 var e: E = { a: 1, b: "foo", d: function (a: number, b: string) { return {} } } variable
/arkcompiler/runtime_core/tests/checked/
Dzero_const_in_save_state.pa22 .record E {}
25 newobj v0, E
45 .function void IO.printObj(E a0) <external>
47 .function void C.static__noinline__call(E a0) <static> {
51 .function void delegate_call(E a0) {
58 newobj v1, E
/arkcompiler/runtime_core/tests/cts-generator/
Dtest-runner.rb88 opts.on('-e', '--exclude-tag TAG', Array, 'Exclude tags for tests') do |f|
226 rescue ThreadError => e # for queue.pop, suppress
227 rescue Interrupt => e
228 TestRunner.print_exception e
230 rescue SignalException => e
231 TestRunner.print_exception e
233 rescue Exception => e
234 TestRunner.print_exception e
275 rescue SignalException => e
277 TestRunner.print_exception e
[all …]
/arkcompiler/runtime_core/irtoc/lang/tests/
Dregmask_test.rb57 map = Regmap.from_hash({a: 1, b: 2, c: 3, d: 4, e: 5, f: 6})
58 mask = RegMask.new(map, :a, :b, :c, :d, :e, :f)
62 m3 = RegMask.new(map, :a, :c, :e)
64 assert_equal(m4, RegMask.new(map, :a, :b, :c, :d, :e))
71 assert_equal(RegMask.new(map, :b, :d) + :a + :c + :e + :f, mask)
72 assert_equal(mask - :c - :e - :f, RegMask.new(map, :a, :b, :d))
75 …_equal(RegMask.new(map, :b, :d) + Regmap.from_hash({a: 1, e: 5}), RegMask.new(map, :a, :b, :d, :e))
76 assert_equal(mask - Regmap.from_hash({a: 1, e: 5}), RegMask.new(map, :b, :c, :d, :f))
/arkcompiler/runtime_core/libpandabase/tests/
Dexpected_test.cpp48 int e = 1; in TEST() local
49 auto u = Unexpected(e); in TEST()
58 auto e = Expected<int, ErrorCode>(v); in TEST() local
59 EXPECT_TRUE(e); in TEST()
60 EXPECT_EQ(e.Value(), 1); in TEST()
61 EXPECT_EQ(*e, 1); in TEST()
121 auto e = Expected<int, ErrorCode>(1); in TEST() local
124 EXPECT_EQ(e.ValueOr(0), 1); in TEST()
/arkcompiler/runtime_core/assembler/tests/
Dparser_test.cpp979 Error e = p.ShowError(); in TEST() local
981 ASSERT_EQ(e.err, Error::ErrorType::ERR_BAD_FIELD_MISSING_NAME); in TEST()
982 ASSERT_EQ(e.line_number, 2U); in TEST()
983 ASSERT_EQ(e.pos, f.length()); in TEST()
984 ASSERT_EQ(e.message, "Expected field name."); in TEST()
1000 Error e = p.ShowError(); in TEST() local
1002 ASSERT_EQ(e.err, Error::ErrorType::ERR_BAD_METADATA_BOUND); in TEST()
1003 ASSERT_EQ(e.line_number, 2U); in TEST()
1004 ASSERT_EQ(e.pos, f.length()); in TEST()
1005 ASSERT_EQ(e.message, "Expected '>'."); in TEST()
[all …]

12345678910>>...21