Lines Matching refs:handleKeyWithString
63 JSHandle<JSTaggedValue> handleKeyWithString(factory->NewFromASCII("key")); in HWTEST_F_L0() local
88 ObjectOperator handleOp2(thread, handleKeyWithString); in HWTEST_F_L0()
91 icRuntime1.UpdateLoadHandler(handleOp2, handleKeyWithString, handleReceiver); in HWTEST_F_L0()
106 JSHandle<JSTaggedValue> handleKeyWithString(factory->NewFromASCII("key")); in HWTEST_F_L0() local
135 ObjectOperator handleOp2(thread, handleReceiver, handleKeyWithString, OperatorType::OWN); in HWTEST_F_L0()
141 icRuntime1.UpdateStoreHandler(handleOp2, handleKeyWithString, handleReceiver); in HWTEST_F_L0()
153 JSHandle<JSTaggedValue> handleKeyWithString(factory->NewFromASCII("key")); in HWTEST_F_L0() local
160 icRuntime.TraceIC(handleReceiver, handleKeyWithString); in HWTEST_F_L0()
173 JSHandle<JSTaggedValue> handleKeyWithString(factory->NewFromASCII("key")); in HWTEST_F_L0() local
179 storeICRuntime.StoreMiss(handleReceiver, handleKeyWithString, handleValueWithElement); in HWTEST_F_L0()
180 …EXPECT_EQ(JSObject::GetProperty(thread, handleReceiver, handleKeyWithString).GetValue(), handleVal… in HWTEST_F_L0()
184 SlowRuntimeStub::StGlobalRecord(thread, handleKeyWithString.GetTaggedValue(), in HWTEST_F_L0()
185 handleKeyWithString.GetTaggedValue(), false); in HWTEST_F_L0()
187 storeICRuntime.StoreMiss(handleReceiver1, handleKeyWithString, handleValueWithElement); in HWTEST_F_L0()
200 JSHandle<JSTaggedValue> handleKeyWithString(factory->NewFromASCII("key")); in HWTEST_F_L0() local
202 JSObject::SetProperty(thread, handleReceiver, handleKeyWithString, handleValueWithElement); in HWTEST_F_L0()
207 …EXPECT_EQ(loadICRuntime.LoadMiss(handleReceiver, handleKeyWithString), handleValueWithElement.GetT… in HWTEST_F_L0()