Lines Matching full:existing
192 // Add the new declaration before the existing declaration.
198 // Add new declaration after the existing declaration.
290 /// existing declaration.
291 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) {
293 if (Existing == New)
297 if (Existing->getKind() != New->getKind())
301 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) {
302 // If the existing declaration is somewhere in the previous declaration
307 if (*RD == Existing)
351 // If the existing declaration is not visible in translation unit scope,
365 // See whether this declaration is identical to any existing declarations.