HomeSort by relevance Sort by last modified time
    Searched refs:FTD (Results 1 - 16 of 16) sorted by null

  /external/clang/include/clang/AST/
DeclFriend.h 138 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
139 return FTD->getSourceRange();
DeclTemplate.h     [all...]
DeclCXX.h 55 AnyFunctionDecl(FunctionTemplateDecl *FTD);
    [all...]
  /external/clang/lib/AST/
Comment.cpp 190 const FunctionTemplateDecl *FTD = cast<FunctionTemplateDecl>(CommentDecl);
193 const FunctionDecl *FD = FTD->getTemplatedDecl();
197 TemplateParameters = FTD->getTemplateParameters();
CommentSema.cpp 821 if (const FunctionTemplateDecl *FTD =
823 return FTD->getTemplatedDecl()->isVariadic();
    [all...]
DeclBase.cpp 165 if (const FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(this))
166 return FTD->getTemplatedDecl();
    [all...]
DeclPrinter.cpp 609 else if (FunctionTemplateDecl *FTD =
612 VisitFunctionTemplateDecl(FTD);
    [all...]
ASTContext.cpp 266 if (const FunctionTemplateDecl *FTD = FD->getDescribedFunctionTemplate())
267 return FTD;
274 if (const FunctionTemplateDecl *FTD = FD->getPrimaryTemplate())
275 return FTD;
    [all...]
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 222 struct FTD {
231 struct FTD ForbiddenTypeData;
  /external/clang/lib/Frontend/
ASTConsumers.cpp 446 FunctionTemplateDecl* FTD = cast<FunctionTemplateDecl>(I);
447 Out << "<function template> " << *FTD << '\n';
  /external/clang/lib/Sema/
SemaAccess.cpp 520 FunctionTemplateDecl *FTD = (*I)->getPrimaryTemplate();
521 if (!FTD)
522 FTD = (*I)->getDescribedFunctionTemplate();
523 if (!FTD)
526 FTD = FTD->getCanonicalDecl();
528 if (Friend == FTD)
531 if (EC.isDependent() && MightInstantiateTo(S, FTD, Friend))
    [all...]
SemaLookup.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/tools/libclang/
CXType.cpp 171 if (const FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D)) {
172 if (TypeSourceInfo *TSInfo = FTD->getTemplatedDecl()->getTypeSourceInfo())
174 return MakeCXType(FTD->getTemplatedDecl()->getType(), TU);
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]

Completed in 560 milliseconds