Searched refs:toValue (Results 1 - 10 of 10) sorted by relevance
/arkcompiler/ets_runtime/test/fuzztest/tonativepointer_fuzzer/ |
H A D | tonativepointer_fuzzer.cpp | 35 Local<JSValueRef> toValue(toString); in ToNativePointerFuzzTest() 36 toValue->ToNativePointer(vm); in ToNativePointerFuzzTest()
|
/arkcompiler/ets_runtime/test/fuzztest/jsvaluereftonumbervalue_fuzzer/ |
H A D | jsvaluereftonumbervalue_fuzzer.cpp | 36 Local<JSValueRef> toValue(toString); in JSValueRefToNumberValueFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
H A D | heap_snapshot.cpp | 1055 JSTaggedValue toValue = it.value_; in FillEdges() local 1056 if (toValue.IsNumber() && !captureNumericValue_) { in FillEdges() 1060 EdgeType type = toValue.IsWeak() ? EdgeType::WEAK : (EdgeType)it.type_; in FillEdges() 1061 if (toValue.IsWeak()) { in FillEdges() 1062 toValue.RemoveWeakTag(); in FillEdges() 1064 if (toValue.IsHeapObject()) { in FillEdges() 1065 auto *to = toValue.GetTaggedObject(); in FillEdges() 1069 entryTo = GenerateNode(toValue, 0, true, isSimplify); in FillEdges() 1102 JSTaggedValue toValue = it.value_; in FillEdgesForBinMod() local 1103 if (toValue in FillEdgesForBinMod() [all...] |
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | jsnapi_first_tests.cpp | 468 Local<JSValueRef> toValue(toString); in HWTEST_F_L0() 472 ASSERT_EQ(toValue->ToString(vm_)->ToString(vm_), "-123.3"); in HWTEST_F_L0() 473 ASSERT_TRUE(toValue->ToObject(vm_)->IsObject(vm_)); in HWTEST_F_L0() 480 Local<JSValueRef> toValue(toString); in HWTEST_F_L0() 1626 Local<JSValueRef> toValue(tostring); in HWTEST_F_L0() 1810 Local<JSValueRef> toValue(toString); in HWTEST_F_L0() 1813 ASSERT_EQ(toValue->ToString(vm_)->ToString(vm_), "-123.3"); in HWTEST_F_L0() 1814 ASSERT_TRUE(toValue->ToObject(vm_)->IsObject(vm_)); in HWTEST_F_L0() 1815 Local<NativePointerRef> res = toValue->ToNativePointer(vm_); in HWTEST_F_L0() 2013 Local<JSValueRef> toValue(toStrin in HWTEST_F_L0() [all...] |
H A D | jsnapi_second_tests.cpp | 1304 Local<JSValueRef> toValue(toString); in HWTEST_F_L0() 1305 EXPECT_FALSE(toValue->ToBigInt(vm_)->IsBigInt(vm_)); in HWTEST_F_L0()
|
H A D | ffi_workload.cpp | 4867 Local<JSValueRef> toValue(toString); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/ |
H A D | constantfold.cpp | 1150 MIRFloatConst *toValue = GlobalTables::GetFpConstTable().GetOrCreateFloatConst(floatValue); in FoldTypeCvtMIRConst() local 1151 toConst = toValue; in FoldTypeCvtMIRConst() 1157 MIRDoubleConst *toValue = GlobalTables::GetFpConstTable().GetOrCreateDoubleConst(doubleValue); in FoldTypeCvtMIRConst() local 1158 toConst = toValue; in FoldTypeCvtMIRConst()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_shared_array.cpp | 2190 JSHandle<JSTaggedValue> toValue = GetCallArg(argv, j); in Unshift() local 2191 if (!toValue->IsSharedType()) { in Unshift() 2195 JSSharedArray::FastSetPropertyByValue(thread, thisObjVal, toKey, toValue); in Unshift()
|
H A D | builtins_array.cpp | 2801 JSHandle<JSTaggedValue> toValue = GetCallArg(argv, j); in Unshift() local 2802 JSArray::FastSetPropertyByValue(thread, thisObjVal, toKey, toValue); in Unshift()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | dump.cpp | 48 static bool HasEdge(std::vector<Reference> &vec, JSTaggedValue toValue) in HasEdge() argument 51 if (ref.value_ == toValue) { in HasEdge() 71 JSTaggedValue toValue = JSTaggedValue(slot.GetTaggedType()); in AddAnonymousEdge() 72 if (!toValue.IsHeapObject()) { in AddAnonymousEdge() 75 if (HasEdge(vec, toValue)) { in AddAnonymousEdge() 80 vec.emplace_back(ConvertToString(name), toValue); in AddAnonymousEdge()
|
Completed in 41 milliseconds