Home | History | Annotate | Download | only in AST

Lines Matching refs:ND

41   void mangleName(const NamedDecl *ND);
48 void mangleUnqualifiedName(const NamedDecl *ND) {
49 mangleUnqualifiedName(ND, ND->getDeclName());
51 void mangleUnqualifiedName(const NamedDecl *ND, DeclarationName Name);
249 void MicrosoftCXXNameMangler::mangleName(const NamedDecl *ND) {
251 const DeclContext *DC = ND->getDeclContext();
254 mangleUnqualifiedName(ND);
258 if (isa<FunctionDecl>(DC) && ND->hasLinkage())
293 MicrosoftCXXNameMangler::mangleUnqualifiedName(const NamedDecl *ND,
306 assert(ND && "mangling empty name without declaration");
308 if (const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(ND)) {
316 const TagDecl *TD = cast<TagDecl>(ND);