OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getStmt
(Results
1 - 25
of
46
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/Analysis/
ConstructionContext.cpp
74
ElidedCE = cast<CXXConstructExpr>(ElidedItem.
getStmt
());
110
const auto *DS = cast<DeclStmt>(ParentItem.
getStmt
());
120
const auto *RS = cast<ReturnStmt>(ParentItem.
getStmt
());
129
const auto *MTE = cast<MaterializeTemporaryExpr>(ParentItem.
getStmt
());
145
const auto *E = cast<Expr>(ParentItem.
getStmt
());
173
const auto *DS = cast<DeclStmt>(TopItem.
getStmt
());
178
const auto *NE = cast<CXXNewExpr>(TopItem.
getStmt
());
183
const auto *RS = cast<ReturnStmt>(TopItem.
getStmt
());
187
const auto *MTE = cast<MaterializeTemporaryExpr>(TopItem.
getStmt
());
192
const auto *BTE = cast<CXXBindTemporaryExpr>(TopItem.
getStmt
());
[
all
...]
CFGStmtMap.cpp
56
CFGBlock *&Entry = SM[CS->
getStmt
()];
ProgramPoint.cpp
72
if (const ReturnStmt *RS = FEP->
getStmt
()) {
187
const Stmt *S = castAs<StmtPoint>().
getStmt
();
ReachableCode.cpp
77
if (const auto *CE = dyn_cast<CallExpr>(CS->
getStmt
())) {
94
if (const ReturnStmt *RS = dyn_cast<ReturnStmt>(CS->
getStmt
())) {
460
const Stmt *S = CS->
getStmt
();
467
const Stmt *S = T.
getStmt
();
UninitializedValues.cpp
597
if (const auto *as = dyn_cast_or_null<GCCAsmStmt>(term.
getStmt
())) {
604
return label->getLabel()->
getStmt
() == B->Label &&
857
tf.Visit(const_cast<Stmt *>(cs->
getStmt
()));
860
if (auto *as = dyn_cast_or_null<GCCAsmStmt>(terminator.
getStmt
()))
Consumed.cpp
66
return CS->
getStmt
()->getBeginLoc();
85
return CS->
getStmt
()->getBeginLoc();
1235
dyn_cast_or_null<IfStmt>(CurrBlock->getTerminator().
getStmt
())) {
1255
dyn_cast_or_null<BinaryOperator>(CurrBlock->getTerminator().
getStmt
())) {
1345
Visitor.Visit(B.castAs<CFGStmt>().
getStmt
());
PathDiagnostic.cpp
533
return PathDiagnosticLocation(Source.castAs<CFGStmt>().
getStmt
(),
689
S = SP->
getStmt
();
716
return PathDiagnosticLocation(StmtElt->
getStmt
()->getBeginLoc(), SMng);
727
return PathDiagnosticLocation(FE->
getStmt
(), SMng,
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Environment.h
40
const Stmt *
getStmt
() const { return first; }
46
ID.AddPointer(E.
getStmt
());
SymbolManager.h
98
const Stmt *
getStmt
() const { return S; }
230
const Stmt *
getStmt
() const { return S; }
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
Environment.cpp
88
const Stmt *S = Entry.
getStmt
();
198
const Expr *E = dyn_cast<Expr>(BlkExpr.
getStmt
());
263
const Stmt *S = I->first.
getStmt
();
275
const Stmt *S = I->first.
getStmt
();
ExplodedGraph.cpp
123
const Expr *Ex = dyn_cast<Expr>(progPoint.castAs<PostStmt>().
getStmt
());
144
if (CallEvent::isCallStmt(SP->
getStmt
()))
335
return SP->
getStmt
();
347
return FEP->
getStmt
();
BugReporterVisitors.cpp
838
SourceLocation BugLoc = BugPoint->
getStmt
()->getBeginLoc();
980
if (SP->
getStmt
() == S && CurrentSFC == PredSFC)
1035
const auto *Ret = dyn_cast<ReturnStmt>(SP->
getStmt
());
1573
const Stmt *S = PS->
getStmt
();
1768
CurTerminatorStmt = BE->getSrc()->getTerminator().
getStmt
();
1770
const Stmt *CurStmt = SP->
getStmt
();
1785
SourceLocation BugLoc = BugPoint->
getStmt
()->getBeginLoc();
2228
const Stmt *S = P->
getStmt
();
2311
return VisitTrueTest(cast<Expr>(PS->
getStmt
()), BRC, BR, N, TookTrue);
CoreEngine.cpp
247
RS = dyn_cast<ReturnStmt>(LastStmt->
getStmt
());
546
PostStmt Loc(CS.
getStmt
(), N->getLocationContext());
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
UndefBranchChecker.cpp
97
if (PS->
getStmt
() == Ex)
UnreachableCodeChecker.cpp
133
if (const CallExpr *CE = dyn_cast<CallExpr>(S->
getStmt
())) {
203
if (!isa<DeclStmt>(S->
getStmt
()))
204
return S->
getStmt
();
DivZeroChecker.cpp
37
const Stmt *S = N->getLocationAs<PreStmt>()->
getStmt
();
AnalyzerStatsChecker.cpp
134
PathDiagnosticLocation::createBegin(CS->
getStmt
(), SM, LC));
MallocOverflowSecurityChecker.cpp
311
if (const CallExpr *TheCall = dyn_cast<CallExpr>(CS->
getStmt
())) {
MallocChecker.cpp
160
const Stmt *
getStmt
() const { return S; }
170
return RefState(AllocatedOfSizeZero, RS->
getStmt
(),
180
return RefState(Escaped, RS->
getStmt
(), RS->getAllocationFamily());
1821
const Expr *AllocExpr = cast<Expr>(RsBase->
getStmt
());
2094
const Expr *AllocExpr = cast<Expr>(RS->
getStmt
());
2836
HandleUseZeroAlloc(C, RS->
getStmt
()->getSourceRange(), Sym);
2892
RefState::getAllocated(RS->getAllocationFamily(), RS->
getStmt
()));
3234
const Stmt *S = RSCurr->
getStmt
();
/src/external/apache2/llvm/dist/clang/lib/Sema/
JumpDiagnostics.cpp
654
if (GS->getLabel()->
getStmt
()) {
655
CheckJump(GS, GS->getLabel()->
getStmt
(), GS->getGotoLoc(),
667
CheckJump(IGS, Target->
getStmt
(), IGS->getGotoLoc(),
756
if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(TheLabel->
getStmt
())))
758
unsigned LabelScope = LabelAndGotoScopes[TheLabel->
getStmt
()];
858
S.Diag(Target->
getStmt
()->getIdentLoc(), diag::note_indirect_goto_target)
906
S.Diag(Target->
getStmt
()->getIdentLoc(), diag::note_indirect_goto_target)
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
VarBypassDetector.cpp
141
if (const LabelStmt *LS = GS->getLabel()->
getStmt
())
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/
ConstructionContext.h
139
const Stmt *
getStmt
() const {
145
return hasStatement() ?
getStmt
() : nullptr;
CFG.h
138
const Stmt *
getStmt
() const {
535
Stmt *
getStmt
() { return Data.getPointer(); }
536
const Stmt *
getStmt
() const { return Data.getPointer(); }
1050
Stmt *getTerminatorStmt() { return Terminator.
getStmt
(); }
1051
const Stmt *getTerminatorStmt() const { return Terminator.
getStmt
(); }
1397
O(const_cast<Stmt *>(stmt->
getStmt
()));
1477
return Val.
getStmt
();
ProgramPoint.h
279
const Stmt *
getStmt
() const { return (const Stmt*) getData1(); }
282
const T* getStmtAs() const { return dyn_cast<T>(
getStmt
()); }
346
const ReturnStmt *
getStmt
() const {
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Checkers/
SValExplainer.h
103
"' conjured at statement '" + printStmt(S->
getStmt
()) + "'";
Completed in 59 milliseconds
1
2
Indexes created Mon Jun 08 00:24:58 UTC 2026