Lines Matching refs:EncodedArrayValueIterator
543 static ObjPtr<mirror::Class> GetClassForBootstrapArgument(EncodedArrayValueIterator::ValueType type) in GetClassForBootstrapArgument()
548 case EncodedArrayValueIterator::ValueType::kBoolean: in GetClassForBootstrapArgument()
549 case EncodedArrayValueIterator::ValueType::kByte: in GetClassForBootstrapArgument()
550 case EncodedArrayValueIterator::ValueType::kChar: in GetClassForBootstrapArgument()
551 case EncodedArrayValueIterator::ValueType::kShort: in GetClassForBootstrapArgument()
555 case EncodedArrayValueIterator::ValueType::kInt: in GetClassForBootstrapArgument()
557 case EncodedArrayValueIterator::ValueType::kLong: in GetClassForBootstrapArgument()
559 case EncodedArrayValueIterator::ValueType::kFloat: in GetClassForBootstrapArgument()
561 case EncodedArrayValueIterator::ValueType::kDouble: in GetClassForBootstrapArgument()
563 case EncodedArrayValueIterator::ValueType::kMethodType: in GetClassForBootstrapArgument()
565 case EncodedArrayValueIterator::ValueType::kMethodHandle: in GetClassForBootstrapArgument()
567 case EncodedArrayValueIterator::ValueType::kString: in GetClassForBootstrapArgument()
569 case EncodedArrayValueIterator::ValueType::kType: in GetClassForBootstrapArgument()
571 case EncodedArrayValueIterator::ValueType::kField: in GetClassForBootstrapArgument()
572 case EncodedArrayValueIterator::ValueType::kMethod: in GetClassForBootstrapArgument()
573 case EncodedArrayValueIterator::ValueType::kEnum: in GetClassForBootstrapArgument()
574 case EncodedArrayValueIterator::ValueType::kArray: in GetClassForBootstrapArgument()
575 case EncodedArrayValueIterator::ValueType::kAnnotation: in GetClassForBootstrapArgument()
576 case EncodedArrayValueIterator::ValueType::kNull: in GetClassForBootstrapArgument()
578 case EncodedArrayValueIterator::ValueType::kEndOfInput: in GetClassForBootstrapArgument()
586 EncodedArrayValueIterator::ValueType type, in GetArgumentForBootstrapMethod()
593 case EncodedArrayValueIterator::ValueType::kInt: in GetArgumentForBootstrapMethod()
594 case EncodedArrayValueIterator::ValueType::kFloat: in GetArgumentForBootstrapMethod()
597 case EncodedArrayValueIterator::ValueType::kLong: in GetArgumentForBootstrapMethod()
598 case EncodedArrayValueIterator::ValueType::kDouble: in GetArgumentForBootstrapMethod()
601 case EncodedArrayValueIterator::ValueType::kMethodType: { in GetArgumentForBootstrapMethod()
616 case EncodedArrayValueIterator::ValueType::kMethodHandle: { in GetArgumentForBootstrapMethod()
627 case EncodedArrayValueIterator::ValueType::kString: { in GetArgumentForBootstrapMethod()
638 case EncodedArrayValueIterator::ValueType::kType: { in GetArgumentForBootstrapMethod()
649 case EncodedArrayValueIterator::ValueType::kBoolean: in GetArgumentForBootstrapMethod()
650 case EncodedArrayValueIterator::ValueType::kByte: in GetArgumentForBootstrapMethod()
651 case EncodedArrayValueIterator::ValueType::kChar: in GetArgumentForBootstrapMethod()
652 case EncodedArrayValueIterator::ValueType::kShort: in GetArgumentForBootstrapMethod()
653 case EncodedArrayValueIterator::ValueType::kField: in GetArgumentForBootstrapMethod()
654 case EncodedArrayValueIterator::ValueType::kMethod: in GetArgumentForBootstrapMethod()
655 case EncodedArrayValueIterator::ValueType::kEnum: in GetArgumentForBootstrapMethod()
656 case EncodedArrayValueIterator::ValueType::kArray: in GetArgumentForBootstrapMethod()
657 case EncodedArrayValueIterator::ValueType::kAnnotation: in GetArgumentForBootstrapMethod()
658 case EncodedArrayValueIterator::ValueType::kNull: in GetArgumentForBootstrapMethod()
662 case EncodedArrayValueIterator::ValueType::kEndOfInput: in GetArgumentForBootstrapMethod()
680 case EncodedArrayValueIterator::ValueType::kInt: in PackArgumentForBootstrapMethod()
681 case EncodedArrayValueIterator::ValueType::kFloat: in PackArgumentForBootstrapMethod()
684 case EncodedArrayValueIterator::ValueType::kLong: in PackArgumentForBootstrapMethod()
685 case EncodedArrayValueIterator::ValueType::kDouble: in PackArgumentForBootstrapMethod()
688 case EncodedArrayValueIterator::ValueType::kMethodType: in PackArgumentForBootstrapMethod()
689 case EncodedArrayValueIterator::ValueType::kMethodHandle: in PackArgumentForBootstrapMethod()
690 case EncodedArrayValueIterator::ValueType::kString: in PackArgumentForBootstrapMethod()
691 case EncodedArrayValueIterator::ValueType::kType: in PackArgumentForBootstrapMethod()
694 case EncodedArrayValueIterator::ValueType::kBoolean: in PackArgumentForBootstrapMethod()
695 case EncodedArrayValueIterator::ValueType::kByte: in PackArgumentForBootstrapMethod()
696 case EncodedArrayValueIterator::ValueType::kChar: in PackArgumentForBootstrapMethod()
697 case EncodedArrayValueIterator::ValueType::kShort: in PackArgumentForBootstrapMethod()
698 case EncodedArrayValueIterator::ValueType::kField: in PackArgumentForBootstrapMethod()
699 case EncodedArrayValueIterator::ValueType::kMethod: in PackArgumentForBootstrapMethod()
700 case EncodedArrayValueIterator::ValueType::kEnum: in PackArgumentForBootstrapMethod()
701 case EncodedArrayValueIterator::ValueType::kArray: in PackArgumentForBootstrapMethod()
702 case EncodedArrayValueIterator::ValueType::kAnnotation: in PackArgumentForBootstrapMethod()
703 case EncodedArrayValueIterator::ValueType::kNull: in PackArgumentForBootstrapMethod()
707 case EncodedArrayValueIterator::ValueType::kEndOfInput: in PackArgumentForBootstrapMethod()
732 DCHECK_EQ(type, EncodedArrayValueIterator::ValueType::k ## Type); \ in PackCollectorArrayForBootstrapMethod()
755 DCHECK_EQ(type, EncodedArrayValueIterator::ValueType::k ## Type); \ in PackCollectorArrayForBootstrapMethod()
869 if (it.GetValueType() != EncodedArrayValueIterator::ValueType::kMethodHandle) { in InvokeBootstrapMethod()