Home | History | Annotate | Download | only in Sema

Lines Matching refs:Previous

374   //   arguments supplied in this or previous declarations. A
570 // have default arguments supplied in this or previous
939 // the previous derived-to-base checks we've done, but at this point
2467 // scanned past it on a previous iteration. That can only
4681 // Remove the previous declaration from the scope.
4734 // Link the anonymous namespace with its previous declaration.
5070 Previous) {
5118 if (Previous.empty()) return false;
5124 // If the target happens to be one of the previous declarations, we
5130 for (LookupResult::iterator I = Previous.begin(), E = Previous.end();
5148 switch (CheckOverload(0, FD, Previous, OldDecl, /*IsForUsingDecl*/ true)) {
5298 LookupResult Previous(*this, NameInfo, LookupUsingDeclName,
5300 Previous.setHideTags(false);
5302 LookupName(Previous, S);
5305 LookupResult::Filter F = Previous.makeFilter();
5315 LookupQualifiedName(Previous, CurContext);
5319 if (CheckUsingDeclRedeclaration(UsingLoc, IsTypeName, SS, IdentLoc, Previous))
5420 if (!CheckUsingShadowDecl(UD, *I, Previous))
5687 LookupResult Previous(*this, NameInfo, LookupOrdinaryName, ForRedeclaration);
5688 LookupName(Previous, S);
5691 if (Previous.isSingleResult() &&
5692 Previous.getFoundDecl()->isTemplateParameter()) {
5694 Previous.getFoundDecl()))
5696 Previous.clear();
5727 // Only consider previous declarations in the same scope.
5728 FilterLookupForScope(Previous, CurContext, S, /*ConsiderLinkage*/false,
5730 if (!Previous.empty()) {
5733 OldDecl = Previous.getAsSingle<TypeAliasTemplateDecl>();
5738 NamedDecl *OldD = Previous.getRepresentativeDecl();
5769 // Merge any previous default template arguments into our parameters,
5789 ActOnTypedefNameDecl(S, CurContext, NewTD, Previous, Redeclaration);
5811 // Check if we have a previous declaration with the same name.
8123 // it contains any previous declaration.
8490 LookupResult Previous(*this, NameInfo, LookupOrdinaryName,
8530 LookupQualifiedName(Previous, DC);
8533 if (isLocal || !Previous.empty())
8549 if (!Previous.empty() && DC->Equals(CurContext)
8556 // compute it and do a previous lookup there for a function
8564 LookupQualifiedName(Previous, DC);
8569 LookupResult::Filter F = Previous.makeFilter();
8578 if (Previous.empty()) {
8612 NamedDecl *ND = ActOnFunctionDeclarator(DCScope, D, DC, T, TInfo, Previous,