Searched refs:countArg (Results 1 – 3 of 3) sorted by relevance
201 auto countArg = runtimeCallInfo->GetCallArgRef(1); in SetTotalNodeCount() local202 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() local233 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() local246 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 …]
175 Local<JSValueRef> countArg = runtimeCallInfo->GetCallArgRef(12); // 12: parameter index in SetBadgeParamWithNumber() local188 if (!countArg->IsNull() && countArg->IsNumber()) { in SetBadgeParamWithNumber()189 count = countArg->Int32Value(vm); in SetBadgeParamWithNumber()
6323 Local<JSValueRef> countArg = runtimeCallInfo->GetCallArgRef(argNumber + 1); in GetTapGestureValue() local6324 if (!countArg.IsNull() && !countArg->IsUndefined()) { in GetTapGestureValue()6325 auto countValue = static_cast<int32_t>(countArg->ToNumber(vm)->Value()); in GetTapGestureValue()