Lines Matching refs:it

719                                            CallSiteArrayValueIterator* it,  in PackArgumentForBootstrapMethod()  argument
722 auto type = it->GetValueType(); in PackArgumentForBootstrapMethod()
723 const JValue encoded_value = ConvertScalarBootstrapArgument(it->GetJavaValue()); in PackArgumentForBootstrapMethod()
728 switch (it->GetValueType()) { in PackArgumentForBootstrapMethod()
764 CallSiteArrayValueIterator* it, in PackCollectorArrayForBootstrapMethod() argument
777 for (int32_t i = 0; it->HasNext(); it->Next(), ++i) { \ in PackCollectorArrayForBootstrapMethod()
778 auto type = it->GetValueType(); \ in PackCollectorArrayForBootstrapMethod()
781 ConvertScalarBootstrapArgument(it->GetJavaValue()); \ in PackCollectorArrayForBootstrapMethod()
800 for (int32_t i = 0; it->HasNext(); it->Next(), ++i) { \ in PackCollectorArrayForBootstrapMethod()
801 auto type = it->GetValueType(); \ in PackCollectorArrayForBootstrapMethod()
804 ConvertScalarBootstrapArgument(it->GetJavaValue()); \ in PackCollectorArrayForBootstrapMethod()
852 CallSiteArrayValueIterator it(*dex_file, csi); in BuildCallSiteForBootstrapMethod() local
853 DCHECK_GE(it.Size(), 1u); in BuildCallSiteForBootstrapMethod()
863 static_cast<int>(it.Size()))); in BuildCallSiteForBootstrapMethod()
872 it.Next(); in BuildCallSiteForBootstrapMethod()
877 while (it.HasNext()) { in BuildCallSiteForBootstrapMethod()
878 ObjPtr<mirror::Class> ptype = GetClassForBootstrapArgument(it.GetValueType()); in BuildCallSiteForBootstrapMethod()
885 it.Next(); in BuildCallSiteForBootstrapMethod()
887 DCHECK_EQ(static_cast<size_t>(index), it.Size()); in BuildCallSiteForBootstrapMethod()
907 CallSiteArrayValueIterator it(*dex_file, csi); in InvokeBootstrapMethod() local
908 if (it.Size() < kMandatoryArgumentsCount) { in InvokeBootstrapMethod()
910 it.Size(), kMandatoryArgumentsCount); in InvokeBootstrapMethod()
914 if (it.GetValueType() != EncodedArrayValueIterator::ValueType::kMethodHandle) { in InvokeBootstrapMethod()
919 uint32_t bsm_index = static_cast<uint32_t>(it.GetJavaValue().i); in InvokeBootstrapMethod()
920 it.Next(); in InvokeBootstrapMethod()
1049 &it, in InvokeBootstrapMethod()
1054 } else if (!PackArgumentForBootstrapMethod(self, referrer, &it, &setter)) { in InvokeBootstrapMethod()
1058 it.Next(); in InvokeBootstrapMethod()
1060 DCHECK(!it.HasNext()); in InvokeBootstrapMethod()