reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/AST/DeclBase.h
 1154   const FunctionType *getFunctionType(bool BlocksToo = true) const;

References

gen/tools/clang/include/clang/Sema/AttrParsedAttrImpl.inc
  237     return (S->getFunctionType(true) != nullptr &&
  238                               isa<FunctionProtoType>(S->getFunctionType())) ||
  320     return S->getFunctionType(false) != nullptr;
tools/clang/lib/Sema/SemaDeclAttr.cpp
   59   return (D->getFunctionType() != nullptr) || isa<ObjCMethodDecl>(D);
   80   if (const FunctionType *FnTy = D->getFunctionType())
   89   if (const FunctionType *FnTy = D->getFunctionType())
  108   if (const FunctionType *FnTy = D->getFunctionType())
  123   if (const FunctionType *FnTy = D->getFunctionType())
  137   if (const FunctionType *FnTy = D->getFunctionType())
 1493     if (D->getFunctionType()) {
 2704        ? D->getFunctionType()
 2725   if (D->getFunctionType() &&
 2726       D->getFunctionType()->getReturnType()->isVoidType() &&
 5726   if (D->getFunctionType() == nullptr) {
tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
  750   const FunctionType *FuncType = Decl->getFunctionType();