Home
last modified time | relevance | path

Searched refs:StrictEqual (Results 1 – 23 of 23) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dcommon_stubs.h31 V(StrictEqual) \
Doperations_stub_builder.h39 …GateRef StrictEqual(GateRef glue, GateRef left, GateRef right, ProfileOperation callback = Profile…
Dcall_signature.h330 V(StrictEqual) \
Dcall_signature.cpp87 DEF_CALL_SIGNATURE(StrictEqual) in DEF_CALL_SIGNATURE() argument
89 BINARY_CALL_SIGNATURE(StrictEqual) in DEF_CALL_SIGNATURE()
Dcommon_stubs.cpp109 Return(operationBuilder.StrictEqual(glue, x, y)); in GenerateCircuit()
Doperations_stub_builder.cpp84 GateRef OperationsStubBuilder::StrictEqual(GateRef glue, GateRef left, GateRef right, ProfileOperat… in StrictEqual() function in panda::ecmascript::kungfu::OperationsStubBuilder
Dslowpath_lowering.cpp1445 GateRef result = builder_.CallStub(glue_, gate, CommonStubCSigns::StrictEqual, in LowerFastStrictEqual()
Dinterpreter_stub.cpp950 varAcc = builder.StrictEqual(glue, left, acc, callback); in DECLARE_ASM_HANDLER()
/arkcompiler/ets_runtime/ecmascript/jspandafile/accessor/
Dmodule_data_accessor.cpp117 if (!JSTaggedValue::StrictEqual(thread, distinctLocalName, localName)) { in EnumerateLocalExportEntry()
/arkcompiler/ets_runtime/ecmascript/tests/
Dtagged_value_test.cpp1211 HWTEST_F_L0(JSTaggedValueTest, StrictEqual) in HWTEST_F_L0() argument
1214 …ASSERT_TRUE(JSTaggedValue::StrictEqual(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(0.0)), in HWTEST_F_L0()
1216 ASSERT_FALSE(JSTaggedValue::StrictEqual( in HWTEST_F_L0()
1219 … ASSERT_FALSE(JSTaggedValue::StrictEqual(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1)), in HWTEST_F_L0()
1221 …ASSERT_FALSE(JSTaggedValue::StrictEqual(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1.0)… in HWTEST_F_L0()
1223 …ASSERT_TRUE(JSTaggedValue::StrictEqual(thread, JSHandle<JSTaggedValue>(thread, JSTaggedValue(1.0)), in HWTEST_F_L0()
Djs_typed_array_test.cpp1217 EXPECT_TRUE(JSTaggedValue::StrictEqual(thread, handleTagValValueDef, in HWTEST_F_L0()
1225 … EXPECT_TRUE(JSTaggedValue::StrictEqual(thread, descTo1.GetValue(), handleTagValValueDef)); in HWTEST_F_L0()
1264 EXPECT_TRUE(JSTaggedValue::StrictEqual(thread, handleTagValValueSet, in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_vector.cpp116 if (JSTaggedValue::StrictEqual(thread, obj, value)) { in GetIndexFrom()
163 if (JSTaggedValue::StrictEqual(thread, obj, value)) { in GetLastIndexFrom()
Djs_api_arraylist.cpp152 if (JSTaggedValue::StrictEqual(targetValue, elements->Get(i))) { in GetIndexOf()
167 if (JSTaggedValue::StrictEqual(targetValue, elements->Get(i))) { in GetLastIndexOf()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value.h454 …static bool StrictEqual(const JSThread *thread, const JSHandle<JSTaggedValue> &x, const JSHandle<J…
455 static bool StrictEqual(const JSTaggedValue &x, const JSTaggedValue &y);
Djs_tagged_value-inl.h406 inline bool JSTaggedValue::StrictEqual([[maybe_unused]] const JSThread *thread, const JSHandle<JSTa… in StrictEqual() function
409 return StrictEqual(x.GetTaggedValue(), y.GetTaggedValue()); in StrictEqual()
412 inline bool JSTaggedValue::StrictEqual(const JSTaggedValue &x, const JSTaggedValue &y) in StrictEqual() function
Djs_stable_array.cpp488 if (JSTaggedValue::StrictEqual(searchElement.GetTaggedValue(), value)) { in IndexOf()
497 if (JSTaggedValue::StrictEqual(thread, searchElement, kValueHandle)) { in IndexOf()
Djs_tagged_value.cpp242 return StrictEqual(thread, x, y); in Equal()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.cpp817 StrictEqual(node, lhs); in Condition()
902 StrictEqual(node, lhs); in Binary()
1009 void PandaGen::StrictEqual(const ir::AstNode *node, VReg lhs) in StrictEqual() function in panda::es2panda::compiler::PandaGen
1060 StrictEqual(node, tmp); in BranchIfStrictUndefined()
1080 StrictEqual(node, tmp); in BranchIfStrictNotUndefined()
Dpandagen.h336 void StrictEqual(const ir::AstNode *node, VReg lhs);
/arkcompiler/ets_runtime/ecmascript/ic/
Dic_compare_op.cpp191 … resultObj = JSTaggedValue::StrictEqual(thread, JSHandle<JSTaggedValue>(thread, left), in EqualWithIC()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_array.cpp1198 if (JSTaggedValue::StrictEqual(thread, searchElement, kValueHandle)) { in IndexOf()
1377 if (JSTaggedValue::StrictEqual(thread, searchElement, kValueHandle)) { in LastIndexOf()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp173 HWTEST_F_L0(JSNApiTests, StrictEqual) in HWTEST_F_L0() argument
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp2999 return JSTaggedValue::StrictEqual(thread, xValue, yValue); in IsStrictEquals()