Home | History | Annotate | Download | only in Sema

Lines Matching refs:Best

2616       SmallVector<MatchResult, 4>::iterator Best = Matched.begin();
2629 for (SmallVector<MatchResult, 4>::iterator P = Best + 1,
2632 if (getMoreSpecializedPartialSpecialization(P->Partial, Best->Partial,
2635 Best = P;
2638 // Determine if the best partial specialization is more specialized than
2643 if (P != Best && getMoreSpecializedPartialSpecialization(
2644 P->Partial, Best->Partial,
2645 PointOfInstantiation) != Best->Partial) {
2652 // Instantiate using the best variable template partial specialization.
2653 InstantiationPattern = Best->Partial;
2654 InstantiationArgs = Best->Args;