Searched refs:intValue (Results 1 – 6 of 6) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/ |
D | js_object-inl.h | 241 int intValue = value.GetInt(); in ConvertValueWithRep() local 242 return std::pair(true, JSTaggedValue(static_cast<JSTaggedType>(intValue))); in ConvertValueWithRep()
|
D | object_operator.cpp | 463 int intValue = value->GetInt(); in ConvertOrTransitionWithRep() local 465 return JSTaggedValue(static_cast<JSTaggedType>(intValue)); in ConvertOrTransitionWithRep()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
D | jsnapi_tests.cpp | 1085 Local<IntegerRef> intValue = IntegerRef::New(vm_, 0); in HWTEST_F_L0() local 1086 EXPECT_EQ(intValue->Value(), 0); in HWTEST_F_L0() 1088 Local<JSValueRef> jsValue = intValue->GetValue(vm_); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs-inl.h | 729 int32_t intValue = number.GetInt(); in RuntimeNeg() local 730 if (intValue == 0) { in RuntimeNeg() 733 if (intValue == INT32_MIN) { in RuntimeNeg() 736 return JSTaggedValue(-intValue); in RuntimeNeg()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | stub_builder.cpp | 4314 auto intValue = GetInt32OfTInt(value); in FastToBoolean() local 4315 Branch(Int32Equal(intValue, Int32(0)), &returnFalse, &returnTrue); in FastToBoolean()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
D | cocos_worker_test.js | 118523 (p = new t.EventData(o.readStringRef())).intValue = o.readInt(!1); 118946 X.intValue = i.readInt(!1); 119805 (p = new t.EventData(N)).intValue = this.getValue(L, "int", 0); 120171 et.intValue = this.getValue($, "int", tt.intValue);
|