Home | History | Annotate | Download | only in Sema

Lines Matching refs:Existing

182       // Add the new declaration before the existing declaration.
188 // Add new declaration after the existing declaration.
256 /// existing declaration.
257 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) {
259 if (Existing == New)
263 if (Existing->getKind() != New->getKind())
267 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) {
269 Decl *MostRecent = Existing->getMostRecentDecl();
270 if (Existing == MostRecent)
276 // If the existing declaration is somewhere in the previous declaration
281 if (*RD == Existing)
325 // If the existing declaration is not visible in translation unit scope,
339 // See whether this declaration is identical to any existing declarations.