Home
last modified time | relevance | path

Searched refs:hasPrototype (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DWebAssembly.cpp83 if (!FD->doesThisDeclarationHaveABody() && !FD->hasPrototype()) in setTargetAttributes()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaSYCL.cpp419 assert(FD->hasPrototype()); in BuildSYCLKernelCallStmt()
H A DDeclSpec.cpp193 I.Fun.hasPrototype = hasProto; in getFunction()
H A DSemaType.cpp764 declarator.getFunctionTypeInfo().hasPrototype = true; in maybeSynthesizeBlockSignature()
5243 } else if (!FTI.hasPrototype) { in GetFullTypeForDeclarator()
5436 if (!FTI.hasPrototype && FTI.NumParams == 0 && !FTI.isVariadic && in GetFullTypeForDeclarator()
H A DSemaDecl.cpp4176 if (Old->hasPrototype() && !New->hasWrittenPrototype() && NewDeclIsDefn && in MergeFunctionDecl()
4284 Old->hasPrototype() && !New->hasPrototype() && in MergeFunctionDecl()
9390 (D.isFunctionDeclarator() && D.getFunctionTypeInfo().hasPrototype) || in CreateNewFunctionDecl()
15600 if (!FTI.hasPrototype) { in ActOnFinishKNRParamDeclarations()
H A DSemaExpr.cpp3440 if (!cast<FunctionDecl>(VD)->hasPrototype() && isa<FunctionProtoType>(fty)) in BuildDeclarationNameExpr()
7009 if (!FDecl->hasPrototype()) in BuildResolvedCallExpr()
21056 false /*isInlineSpecified*/, FD->hasPrototype(), in resolveDecl()
H A DSemaDeclAttr.cpp8090 FD->hasPrototype(), ConstexprSpecKind::Unspecified, in DeclClonePragmaWeak()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp447 if (CallExprDecl->hasPrototype() || !Definition->hasPrototype()) in castArgToParamTypeIfNeeded()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGPointerAuth.cpp492 if (!FD->hasPrototype()) in getFunctionPointer()
H A DCGDebugInfo.cpp2283 if (Method->hasPrototype()) in CreateCXXMemberFunction()
4248 if (FD->hasPrototype()) in collectFunctionDeclProps()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp773 } else if (D->doesThisDeclarationHaveABody() && !D->hasPrototype()) { in VisitFunctionDecl()
873 if (!D->hasPrototype() && D->getNumParams()) { in VisitFunctionDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1361 unsigned hasPrototype : 1;
1507 bool isKNRPrototype() const { return !hasPrototype && NumParams != 0; } in isKNRPrototype()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h2422 bool hasPrototype() const { in hasPrototype() function