OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getBody
(Results
1 - 25
of
124
) sorted by relevancy
1
2
3
4
5
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/
CodeInjector.h
28
/// The
getBody
function will be called each time the static analyzer examines a
40
virtual Stmt *
getBody
(const FunctionDecl *D) = 0;
41
virtual Stmt *
getBody
(const ObjCMethodDecl *D) = 0;
BodyFarm.h
36
Stmt *
getBody
(const FunctionDecl *D);
39
Stmt *
getBody
(const ObjCMethodDecl *D);
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.h
41
Stmt *
getBody
(const FunctionDecl *D) override;
42
Stmt *
getBody
(const ObjCMethodDecl *D) override;
ModelConsumer.cpp
37
Bodies.insert(std::make_pair(func->getName(), func->
getBody
()));
ModelInjector.cpp
31
Stmt *ModelInjector::
getBody
(const FunctionDecl *D) {
36
Stmt *ModelInjector::
getBody
(const ObjCMethodDecl *D) {
/src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Extract/
SourceExtraction.cpp
36
return isSemicolonRequiredAfter(While->
getBody
());
38
return isSemicolonRequiredAfter(For->
getBody
());
40
return isSemicolonRequiredAfter(CXXFor->
getBody
());
42
return isSemicolonRequiredAfter(ObjCFor->
getBody
());
44
return isSemicolonRequiredAfter(Switch->
getBody
());
/src/external/apache2/llvm/dist/clang/lib/Analysis/
AnalysisDeclContext.cpp
93
Stmt *AnalysisDeclContext::
getBody
(bool &IsAutosynthesized) const {
96
Stmt *Body = FD->
getBody
();
98
Body = CoroBody->
getBody
();
100
Stmt *SynthesizedBody = ADCMgr->getBodyFarm().
getBody
(FD);
109
Stmt *Body = MD->
getBody
();
111
Stmt *SynthesizedBody = ADCMgr->getBodyFarm().
getBody
(MD);
119
return BD->
getBody
();
121
return FunTmpl->getTemplatedDecl()->
getBody
();
126
Stmt *AnalysisDeclContext::
getBody
() const {
128
return
getBody
(Tmp)
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp
115
if (!S->
getBody
())
117
return Visit(S->
getBody
());
125
if (!S->
getBody
())
127
return Visit(S->
getBody
());
135
if (!S->
getBody
())
137
return Visit(S->
getBody
());
TransBlockObjCVariable.cpp
93
bool onlyValueOfVarIsNeeded = checker.TraverseStmt(block->
getBody
());
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenPGO.cpp
194
CounterMap[D->
getBody
()] = NextCounter++;
410
uint64_t BodyCount = setCount(PGO.getRegionCount(D->
getBody
()));
411
CountMap[D->
getBody
()] = BodyCount;
412
Visit(D->
getBody
());
422
uint64_t BodyCount = setCount(PGO.getRegionCount(D->
getBody
()));
423
CountMap[D->
getBody
()] = BodyCount;
424
Visit(D->
getBody
());
429
uint64_t BodyCount = setCount(PGO.getRegionCount(D->
getBody
()));
430
CountMap[D->
getBody
()] = BodyCount;
431
Visit(D->
getBody
());
[
all
...]
CoverageMappingGen.cpp
489
auto Body = D->
getBody
();
991
Stmt *Body = D->
getBody
();
1019
Visit(S->
getBody
());
1081
extendRegion(S->
getBody
());
1082
Counter BackedgeCount = propagateCounts(BodyCount, S->
getBody
());
1095
auto Gap = findGapAreaBetween(S->getRParenLoc(), getStart(S->
getBody
()));
1120
extendRegion(S->
getBody
());
1122
propagateCounts(addCounters(ParentCount, BodyCount), S->
getBody
());
1160
extendRegion(S->
getBody
());
1161
Counter BackedgeCount = propagateCounts(BodyCount, S->
getBody
());
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp
46
Scan(M, BE->
getBody
());
80
Scan(M, I->
getBody
());
102
Scan(M, FD->
getBody
());
CheckSizeofPointer.cpp
85
walker.Visit(D->
getBody
());
GCDAntipatternChecker.cpp
212
auto Matches = match(SemaphoreMatcherM, *D->
getBody
(), AM.getASTContext());
217
Matches = match(GroupMatcherM, *D->
getBody
(), AM.getASTContext());
ObjCMissingSuperCallChecker.cpp
189
if (MD->
getBody
())
197
PathDiagnosticLocation::createEnd(MD->
getBody
(),
MallocOverflowSecurityChecker.cpp
246
return this->Visit(S->
getBody
());
249
return this->Visit(S->
getBody
());
252
return this->Visit(S->
getBody
());
278
c.Visit(mgr.getAnalysisDeclContext(D)->
getBody
());
UndefCapturedBlockVarChecker.cpp
87
if (const Expr *Ex = FindBlockDeclRefExpr(BE->
getBody
(), VD))
IdenticalExprChecker.cpp
388
if (!isIdenticalStmt(Ctx, ForStmt1->
getBody
(), ForStmt2->
getBody
(),
400
if (!isIdenticalStmt(Ctx, DStmt1->
getBody
(), DStmt2->
getBody
(),
412
if (!isIdenticalStmt(Ctx, WStmt1->
getBody
(), WStmt2->
getBody
(),
OSObjectCStyleCast.cpp
114
match(stmt(forEachDescendant(CastM)), *D->
getBody
(), AM.getASTContext());
/src/external/apache2/llvm/dist/clang/lib/Sema/
UsedDeclVisitor.h
93
if (auto *S = CD->
getBody
()) {
97
if (auto *S = CD->
getBody
()) {
/src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtCXX.h
169
Stmt *
getBody
() { return SubExprs[BODY]; }
189
const Stmt *
getBody
() const { return SubExprs[BODY]; }
378
Stmt *
getBody
() const {
422
return
getBody
() ?
getBody
()->getBeginLoc()
426
return
getBody
() ?
getBody
()->getEndLoc() : getPromiseDecl()->getEndLoc();
ASTNodeTraverser.h
416
Visit(D->
getBody
());
451
void VisitCapturedDecl(const CapturedDecl *D) { Visit(D->
getBody
()); }
622
Visit(D->
getBody
());
644
Visit(D->
getBody
());
706
Visit(Node->
getBody
());
737
Visit(Node->
getBody
());
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Nodes.h
248
Statement *
getBody
();
258
Statement *
getBody
();
267
Statement *
getBody
();
288
Statement *
getBody
();
297
Statement *
getBody
();
332
Statement *
getBody
();
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
LoopWidening.cpp
73
*LCtx->getDecl()->
getBody
(), ASTCtx);
/src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
Nodes.cpp
226
syntax::Statement *syntax::SwitchStatement::
getBody
() {
241
syntax::Statement *syntax::CaseStatement::
getBody
() {
251
syntax::Statement *syntax::DefaultStatement::
getBody
() {
280
syntax::Statement *syntax::ForStatement::
getBody
() {
290
syntax::Statement *syntax::WhileStatement::
getBody
() {
320
syntax::Statement *syntax::RangeBasedForStatement::
getBody
() {
Completed in 43 milliseconds
1
2
3
4
5
Indexes created Sat Sep 19 00:25:42 UTC 2026