Home
last modified time | relevance | path

Searched full:intvalue (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/runtime/tooling/inspector/tests/
Djson_property_test.cpp42 int intValue = 0; in TEST() local
43 EXPECT_TRUE(GetProperty<JsonObject::NumT>(intValue, object, "a")); in TEST()
44 EXPECT_EQ(intValue, 1); in TEST()
57 EXPECT_FALSE(GetProperty<JsonObject::NumT>(intValue, object, "b", "s", "x")); in TEST()
58 EXPECT_EQ(intValue, 1); in TEST()
60 EXPECT_FALSE(GetProperty<JsonObject::NumT>(intValue, object, "c")); in TEST()
61 EXPECT_EQ(intValue, 1); in TEST()
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dlda.str.yaml283 .function i32 panda.Integer.intValue(panda.Integer a0) <external>
291 call.short panda.Integer.intValue, v0
Dstarr.obj.yaml1679 .function i32 panda.Integer.intValue(panda.Integer a0) <external>
1693 call.virt.short panda.Integer.intValue, v0
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp1024 Local<IntegerRef> intValue = IntegerRef::New(vm_, 0); in HWTEST_F_L0() local
1025 EXPECT_EQ(intValue->Value(), 0); in HWTEST_F_L0()
1027 Local<JSValueRef> jsValue = intValue->GetValue(vm_); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value.cpp113 int32_t intvalue = base::NumberHelper::DoubleToInt(doubleValue, base::INT32_BITS); in WithinInt32() local
114 return doubleValue == static_cast<double>(intvalue); in WithinInt32()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h658 int32_t intValue = number.GetInt(); in RuntimeNeg() local
659 if (intValue == 0) { in RuntimeNeg()
662 if (intValue == INT32_MIN) { in RuntimeNeg()
665 return JSTaggedValue(-intValue); in RuntimeNeg()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.cpp3894 auto intValue = GetInt32OfTInt(value); in FastToBoolean() local
3895 Branch(Int32Equal(intValue, Int32(0)), &returnFalse, &returnTrue); in FastToBoolean()