HomeSort by relevance Sort by last modified time
    Searched refs:FunctionTemplateDecl (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/clang/include/clang/AST/
ASTMutationListener.h 25 class FunctionTemplateDecl;
65 virtual void AddedCXXTemplateSpecialization(const FunctionTemplateDecl *TD,
ASTLambda.h 56 if (FunctionTemplateDecl *F = dyn_cast<FunctionTemplateDecl>(D))
DeclTemplate.h 30 class FunctionTemplateDecl;
291 FunctionTemplateDecl *Template,
304 Create(ASTContext &C, FunctionDecl *FD, FunctionTemplateDecl *Template,
318 llvm::PointerIntPair<FunctionTemplateDecl *, 2> Template;
332 FunctionTemplateDecl *getTemplate() const { return Template.getPointer(); }
482 FunctionTemplateDecl * const *getTemplates() const {
483 return reinterpret_cast<FunctionTemplateDecl*const*>(this+1);
498 FunctionTemplateDecl *getTemplate(unsigned I) const {
690 /// \c X<int>::f is a FunctionTemplateDecl that describes the function
698 /// getInstantiatedFromMemberTemplate() on this FunctionTemplateDecl wil
    [all...]
DeclFriend.h 138 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
Decl.h 36 class FunctionTemplateDecl;
    [all...]
  /external/clang/lib/AST/
DeclFriend.cpp 37 isa<FunctionTemplateDecl>(D) ||
DeclTemplate.cpp 218 // FunctionTemplateDecl Implementation
221 void FunctionTemplateDecl::DeallocateCommon(void *Ptr) {
225 FunctionTemplateDecl *FunctionTemplateDecl::Create(ASTContext &C,
232 return new (C, DC) FunctionTemplateDecl(C, DC, L, Name, Params, Decl);
235 FunctionTemplateDecl *FunctionTemplateDecl::CreateDeserialized(ASTContext &C,
237 return new (C, ID) FunctionTemplateDecl(C, nullptr, SourceLocation(),
242 FunctionTemplateDecl::newCommon(ASTContext &C) const {
248 void FunctionTemplateDecl::LoadLazySpecializations() const
    [all...]
Comment.cpp 190 const FunctionTemplateDecl *FTD = cast<FunctionTemplateDecl>(CommentDecl);
Decl.cpp 380 FunctionTemplateDecl *temp = specInfo->getTemplate();
    [all...]
DeclCXX.cpp 436 FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(D);
    [all...]
  /external/lldb/include/lldb/Core/
ClangForward.h 70 class FunctionTemplateDecl;
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 145 class FunctionTemplateDecl;
849 FunctionTemplateDecl *FunctionTemplate;
860 OverloadCandidate(FunctionTemplateDecl *FunctionTemplateDecl)
861 : Kind(CK_FunctionTemplate), FunctionTemplate(FunctionTemplateDecl) { }
874 FunctionTemplateDecl *getFunctionTemplate() const {
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 402 FunctionTemplateDecl *const TemplateMethod = TemplateParams ?
403 FunctionTemplateDecl::Create(Context, Class,
    [all...]
SemaTemplateDeduction.cpp     [all...]
SemaAccess.cpp 394 FunctionTemplateDecl *Context,
395 FunctionTemplateDecl *Friend) {
512 FunctionTemplateDecl *Friend) {
520 FunctionTemplateDecl *FTD = (*I)->getPrimaryTemplate();
559 if (isa<FunctionTemplateDecl>(Friend))
560 return MatchesFriend(S, EC, cast<FunctionTemplateDecl>(Friend));
    [all...]
SemaOverload.cpp 942 if (!isa<FunctionTemplateDecl>(OldD) &&
    [all...]
SemaLookup.cpp 322 isa<FunctionTemplateDecl>((*begin())->getUnderlyingDecl())));
367 if (isa<FunctionTemplateDecl>(D))
429 } else if (isa<FunctionTemplateDecl>(D)) {
702 FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(*U);
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
  /external/lldb/include/lldb/Symbol/
ClangASTContext.h 266 clang::FunctionTemplateDecl *
274 clang::FunctionTemplateDecl *Template,
  /external/clang/lib/Index/
USRGeneration.cpp 81 void VisitFunctionTemplateDecl(const FunctionTemplateDecl *D);
201 if (FunctionTemplateDecl *FunTmpl = D->getDescribedFunctionTemplate()) {
296 void USRGenerator::VisitFunctionTemplateDecl(const FunctionTemplateDecl *D) {
  /external/clang/lib/Frontend/
ASTConsumers.cpp 446 FunctionTemplateDecl* FTD = cast<FunctionTemplateDecl>(I);
MultiplexConsumer.cpp 99 void AddedCXXTemplateSpecialization(const FunctionTemplateDecl *TD,
147 const FunctionTemplateDecl *TD, const FunctionDecl *D) {
  /external/clang/tools/libclang/
IndexingContext.h 22 class FunctionTemplateDecl;
428 bool handleFunctionTemplate(const FunctionTemplateDecl *D);
CursorVisitor.h 217 bool VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
IndexingContext.cpp 640 bool IndexingContext::handleFunctionTemplate(const FunctionTemplateDecl *D) {
825 if (FunctionTemplateDecl *TemplD = FD->getDescribedFunctionTemplate())
843 } else if (const FunctionTemplateDecl *
844 FuncTempl = dyn_cast<FunctionTemplateDecl>(D)) {
    [all...]

Completed in 409 milliseconds

1 2 3