Home
last modified time | relevance | path

Searched refs:countArg (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_node_adapter_bridge.cpp201 auto countArg = runtimeCallInfo->GetCallArgRef(1); in SetTotalNodeCount() local
202 CHECK_NULL_RETURN(countArg->IsNumber(), panda::JSValueRef::Undefined(vm)); in SetTotalNodeCount()
203 adapter->SetTotalNodeCount(countArg->Uint32Value(vm)); in SetTotalNodeCount()
232 auto countArg = runtimeCallInfo->GetCallArgRef(2); in NotifyItemChanged() local
233 CHECK_NULL_RETURN(countArg->IsNumber(), panda::JSValueRef::Undefined(vm)); in NotifyItemChanged()
234 adapter->NotifyItemChanged(startArg->Uint32Value(vm), countArg->Uint32Value(vm)); in NotifyItemChanged()
245 auto countArg = runtimeCallInfo->GetCallArgRef(2); in NotifyItemRemoved() local
246 CHECK_NULL_RETURN(countArg->IsNumber(), panda::JSValueRef::Undefined(vm)); in NotifyItemRemoved()
247 adapter->NotifyItemRemoved(startArg->Uint32Value(vm), countArg->Uint32Value(vm)); in NotifyItemRemoved()
258 auto countArg = runtimeCallInfo->GetCallArgRef(2); in NotifyItemInserted() local
[all …]
H A Darkts_native_badge_bridge.cpp175 Local<JSValueRef> countArg = runtimeCallInfo->GetCallArgRef(12); // 12: parameter index in SetBadgeParamWithNumber() local
188 if (!countArg->IsNull() && countArg->IsNumber()) { in SetBadgeParamWithNumber()
189 count = countArg->Int32Value(vm); in SetBadgeParamWithNumber()
H A Darkts_native_common_bridge.cpp6323 Local<JSValueRef> countArg = runtimeCallInfo->GetCallArgRef(argNumber + 1); in GetTapGestureValue() local
6324 if (!countArg.IsNull() && !countArg->IsUndefined()) { in GetTapGestureValue()
6325 auto countValue = static_cast<int32_t>(countArg->ToNumber(vm)->Value()); in GetTapGestureValue()