OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FuncDecl
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Analysis/
ExprMutationAnalyzer.cpp
539
const auto
FuncDecl
= hasDeclaration(functionDecl().bind("func"));
544
expr(anyOf(callExpr(NonConstRefParam, IsInstantiated,
FuncDecl
,
548
FuncDecl
)))
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
FuchsiaHandleChecker.cpp
323
const FunctionDecl *
FuncDecl
= dyn_cast_or_null<FunctionDecl>(Call.getDecl());
324
if (!
FuncDecl
) {
336
if (Arg >=
FuncDecl
->getNumParams())
338
const ParmVarDecl *PVD =
FuncDecl
->getParamDecl(Arg);
366
const FunctionDecl *
FuncDecl
= dyn_cast_or_null<FunctionDecl>(Call.getDecl());
367
if (!
FuncDecl
)
378
if (const auto *TypeDefTy =
FuncDecl
->getReturnType()->getAs<TypedefType>())
383
if (hasFuchsiaAttr<AcquireHandleAttr>(
FuncDecl
)) {
385
Notes.push_back([RetSym,
FuncDecl
](BugReport &BR) -> std::string {
390
OS << "Function '" <<
FuncDecl
->getDeclName(
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Parse/
Parser.cpp
1263
Decl *
FuncDecl
= Actions.HandleDeclarator(ParentScope, D,
1265
D.complete(
FuncDecl
);
1267
if (
FuncDecl
) {
1269
StashAwayMethodOrFunctionBodyTokens(
FuncDecl
);
1271
return
FuncDecl
;
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp
1644
const auto *
FuncDecl
= cast<FunctionDecl>(D);
1645
if (!checkFunctionOrMethodParameterIndex(*this,
FuncDecl
, TmpAttr,
1654
<<
FuncDecl
->getParamDecl(Idx.getASTIndex())->getSourceRange();
Completed in 22 milliseconds
Indexes created Wed Sep 23 00:26:21 UTC 2026