Home | History | Annotate | Download | only in Sema

Lines Matching refs:Best

2722       SmallVector<MatchResult, 4>::iterator Best = Matched.begin();
2735 for (SmallVector<MatchResult, 4>::iterator P = Best + 1,
2738 if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
2741 Best = P;
2744 // Determine if the best partial specialization is more specialized than
2749 if (P != Best && getMoreSpecializedPartialSpecialization(
2750 P->Partial, Best->Partial,
2751 PointOfInstantiation) != Best->Partial) {
2758 // Instantiate using the best variable template partial specialization.
2759 InstantiationPattern = Best->Partial;
2760 InstantiationArgs = Best->Args;