Searched refs:FriendTemplateDecl (Results 1 - 8 of 8) sorted by relevance
/external/clang/lib/AST/ |
H A D | DeclTemplate.cpp | 860 // FriendTemplateDecl Implementation 863 void FriendTemplateDecl::anchor() { } 865 FriendTemplateDecl *FriendTemplateDecl::Create(ASTContext &Context, 872 FriendTemplateDecl *Result 873 = new (Context) FriendTemplateDecl(DC, L, NParams, Params, Friend, FLoc); 877 FriendTemplateDecl *FriendTemplateDecl::CreateDeserialized(ASTContext &C, 879 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FriendTemplateDecl)); 880 return new (Mem) FriendTemplateDecl(EmptyShel [all...] |
/external/clang/include/clang/AST/ |
H A D | DeclTemplate.h | 1994 /// will yield a FriendDecl, not a FriendTemplateDecl. 1995 class FriendTemplateDecl : public Decl { class in class:clang::TemplateParameterList 2014 FriendTemplateDecl(DeclContext *DC, SourceLocation Loc, function in class:clang::TemplateParameterList::FriendTemplateDecl 2026 FriendTemplateDecl(EmptyShell Empty) function in class:clang::TemplateParameterList::FriendTemplateDecl 2033 static FriendTemplateDecl *Create(ASTContext &Context, 2040 static FriendTemplateDecl *CreateDeserialized(ASTContext &C, unsigned ID); 2073 static bool classof(const FriendTemplateDecl *D) { return true; }
|
H A D | RecursiveASTVisitor.h | 1278 DEF_TRAVERSE_DECL(FriendTemplateDecl, {
|
/external/clang/lib/Serialization/ |
H A D | ASTWriterDecl.cpp | 102 void VisitFriendTemplateDecl(FriendTemplateDecl *D); 1018 void ASTDeclWriter::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
|
H A D | ASTReaderDecl.cpp | 268 void VisitFriendTemplateDecl(FriendTemplateDecl *D); 1263 void ASTDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) { 1985 D = FriendTemplateDecl::CreateDeserialized(Context, ID);
|
/external/clang/tools/libclang/ |
H A D | RecursiveASTVisitor.h | 1214 DEF_TRAVERSE_DECL(FriendTemplateDecl, {
|
H A D | CIndex.cpp | 4483 if (NamedDecl *Friend = cast<FriendTemplateDecl>(D)->getFriendDecl())
|
/external/clang/lib/Sema/ |
H A D | SemaDeclCXX.cpp | 10092 D = FriendTemplateDecl::Create(Context, CurContext, Loc,
|
Completed in 1910 milliseconds