Home | History | Annotate | Download | only in Sema

Lines Matching refs:Matches

1324   SmallVector<std::pair<DeclAccessPair,FunctionDecl*>, 2> Matches;
1335 // A declaration of a placement deallocation function matches the
1379 Matches.push_back(std::make_pair(D.getPair(), Fn));
1383 // [...] Any non-placement deallocation function matches a
1390 Matches.push_back(std::make_pair(D.getPair(), Fn));
1398 if (Matches.size() == 1) {
1399 OperatorDelete = Matches[0].second;
1416 Matches[0].first);
1689 SmallVector<DeclAccessPair,4> Matches;
1700 Matches.push_back(F.getPair());
1704 if (Matches.size() == 1) {
1705 Operator = cast<CXXMethodDecl>(Matches[0]->getUnderlyingDecl());
1716 Matches[0], Diagnose);
1720 } else if (!Matches.empty()) {
1726 F = Matches.begin(), FEnd = Matches.end(); F != FEnd; ++F)
2631 // so they don't require it. This matches the comments on these traits in