Lines Matching defs:SCS2
117 const StandardConversionSequence& SCS2);
122 const StandardConversionSequence& SCS2);
127 const StandardConversionSequence& SCS2);
4192 const StandardConversionSequence& SCS2) {
4198 if (SCS1.isIdentityConversion() && !SCS2.isIdentityConversion())
4200 else if (!SCS1.isIdentityConversion() && SCS2.isIdentityConversion())
4203 if (SCS1.Second != SCS2.Second) {
4206 else if (SCS2.Second == ICK_Identity)
4210 } else if (!Context.hasSimilarType(SCS1.getToType(1), SCS2.getToType(1)))
4213 if (SCS1.Third == SCS2.Third) {
4214 return Context.hasSameType(SCS1.getToType(2), SCS2.getToType(2))? Result
4223 if (SCS2.Third == ICK_Identity)
4235 const StandardConversionSequence &SCS2) {
4250 SCS2.BindsImplicitObjectArgumentWithoutRefQualifier)
4254 SCS2.IsLvalueReference) ||
4256 !SCS2.IsLvalueReference && SCS2.BindsToFunctionLvalue);
4293 const StandardConversionSequence& SCS2)
4304 = compareStandardConversionSubsets(S.Context, SCS1, SCS2))
4310 ImplicitConversionRank Rank2 = SCS2.getRank();
4323 if (SCS1.isPointerConversionToBool() != SCS2.isPointerConversionToBool())
4324 return SCS2.isPointerConversionToBool()
4335 FixedEnumPromotion FEP2 = getFixedEnumPromtion(S, SCS2);
4351 = SCS2.isPointerConversionToVoidPointer(S.Context);
4361 = CompareDerivedToBaseConversions(S, Loc, SCS1, SCS2))
4364 !S.Context.hasSameType(SCS1.getFromType(), SCS2.getFromType())) {
4369 QualType FromType2 = SCS2.getFromType();
4375 if (SCS2.First == ICK_Array_To_Pointer)
4404 if (SCS1.ReferenceBinding && SCS2.ReferenceBinding) {
4406 if (isBetterReferenceBindingKind(SCS1, SCS2))
4408 else if (isBetterReferenceBindingKind(SCS2, SCS1))
4415 = CompareQualificationConversions(S, SCS1, SCS2))
4418 if (SCS1.ReferenceBinding && SCS2.ReferenceBinding) {
4426 QualType T2 = SCS2.getToType(2);
4436 SCS2.ObjCLifetimeConversionBinding) {
4470 SCS2.Second == ICK_Floating_Integral &&
4488 SCS2.Second == ICK_Vector_Conversion) {
4492 SCS2.getFromType(), SCS2.getToType(2));
4501 SCS2.Second == ICK_SVE_Vector_Conversion) {
4505 S.Context.areCompatibleSveTypes(SCS2.getFromType(), SCS2.getToType(2));
4515 SCS2.Second == ICK_RVV_Vector_Conversion) {
4519 S.Context.areCompatibleRVVTypes(SCS2.getFromType(), SCS2.getToType(2));
4536 const StandardConversionSequence& SCS2) {
4546 if (SCS1.First != SCS2.First || SCS1.Second != SCS2.Second ||
4547 SCS1.Third != SCS2.Third || SCS1.Third != ICK_Qualification)
4553 QualType T2 = SCS2.getToType(2);
4569 bool CanPick2 = !SCS2.DeprecatedStringLiteralToCharPtr;
4575 !SCS2.QualificationIncludesObjCLifetime)
4577 if (SCS2.QualificationIncludesObjCLifetime &&
4605 const StandardConversionSequence& SCS2) {
4608 QualType FromType2 = SCS2.getFromType();
4609 QualType ToType2 = SCS2.getToType(1);
4615 if (SCS2.First == ICK_Array_To_Pointer)
4631 SCS2.Second == ICK_Pointer_Conversion &&
4660 SCS2.Second == ICK_Pointer_Conversion) {
4746 if (SCS1.Second == ICK_Pointer_Member && SCS2.Second == ICK_Pointer_Member &&