Home | History | Annotate | Download | only in Sema

Lines Matching refs:Matches

1588   SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches;
1599 // A declaration of a placement deallocation function matches the
1643 Matches.push_back(std::make_pair(D.getPair(), Fn));
1647 // [...] Any non-placement deallocation function matches a
1654 Matches.push_back(std::make_pair(D.getPair(), Fn));
1662 if (Matches.size() == 1) {
1663 OperatorDelete = Matches[0].second;
1680 Matches[0].first);
1962 SmallVector<DeclAccessPair,4> Matches;
1973 Matches.push_back(F.getPair());
1977 if (Matches.size() == 1) {
1978 Operator = cast<CXXMethodDecl>(Matches[0]->getUnderlyingDecl());
1989 Matches[0], Diagnose) == AR_inaccessible)
1995 } else if (!Matches.empty()) {
2001 F = Matches.begin(), FEnd = Matches.end(); F != FEnd; ++F)
2919 // so they don't require it. This matches the comments on these traits in