HomeSort by relevance Sort by last modified time
    Searched refs:ReturnStmt (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/clang/lib/StaticAnalyzer/Checkers/
ReturnPointerRangeChecker.cpp 27 public Checker< check::PreStmt<ReturnStmt> > {
31 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const;
35 void ReturnPointerRangeChecker::checkPreStmt(const ReturnStmt *RS,
StackAddrEscapeChecker.cpp 29 class StackAddrEscapeChecker : public Checker< check::PreStmt<ReturnStmt>,
35 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const;
119 void StackAddrEscapeChecker::checkPreStmt(const ReturnStmt *RS,
ReturnUndefChecker.cpp 27 class ReturnUndefChecker : public Checker< check::PreStmt<ReturnStmt> > {
35 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const;
39 void ReturnUndefChecker::checkPreStmt(const ReturnStmt *RS,
CheckerDocumentation.cpp 37 class CheckerDocumentation : public Checker< check::PreStmt<ReturnStmt>,
71 /// check::PreStmt<ReturnStmt>
72 void checkPreStmt(const ReturnStmt *DS, CheckerContext &C) const {}
VforkChecker.cpp 46 check::Bind, check::PreStmt<ReturnStmt>> {
65 void checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const;
210 void VforkChecker::checkPreStmt(const ReturnStmt *RS, CheckerContext &C) const {
ObjCSelfInitChecker.cpp 60 check::PreStmt<ReturnStmt>,
74 void checkPreStmt(const ReturnStmt *S, CheckerContext &C) const;
210 void ObjCSelfInitChecker::checkPreStmt(const ReturnStmt *S,
IdenticalExprChecker.cpp 367 const ReturnStmt *ReturnStmt1 = cast<ReturnStmt>(Stmt1);
368 const ReturnStmt *ReturnStmt2 = cast<ReturnStmt>(Stmt2);
NullabilityChecker.cpp 105 : public Checker<check::Bind, check::PreCall, check::PreStmt<ReturnStmt>,
114 void checkPreStmt(const ReturnStmt *S, CheckerContext &C) const;
469 void NullabilityChecker::checkPreStmt(const ReturnStmt *S,
    [all...]
DeadStoresChecker.cpp 305 if (!parent || !isa<ReturnStmt>(parent))
  /frameworks/compile/slang/
slang_rs_object_ref_count.h 152 clang::ReturnStmt* RS,
203 void VisitReturnStmt(clang::ReturnStmt *RS);
slang_rs_object_ref_count.cpp 209 void VisitReturnStmt(clang::ReturnStmt *RS);
249 void DestructorVisitor::VisitReturnStmt(clang::ReturnStmt *RS) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Environment.cpp 98 const ReturnStmt *RS = cast<ReturnStmt>(S);
ExprEngineCallAndReturn.cpp 174 // reference for what to clean up if it's a ReturnStmt; otherwise, everything
178 removeDead(Pred, Dst, dyn_cast<ReturnStmt>(LastSt), LCtx,
245 if (const ReturnStmt *RS = dyn_cast_or_null<ReturnStmt>(LastSt)) {
    [all...]
BugReporterVisitors.cpp 94 if (const ReturnStmt *RS = dyn_cast<ReturnStmt>(S))
242 const ReturnStmt *Ret = dyn_cast<ReturnStmt>(SP->getStmt());
    [all...]
  /external/clang/lib/ARCMigrate/
TransUnbridgedCasts.cpp 186 isa<ReturnStmt>(StmtMap->getParentIgnoreParenCasts(E))) {
379 if (ReturnStmt *retS = dyn_cast_or_null<ReturnStmt>(parent)) {
TransAutoreleasePool.cpp 307 if (ReturnStmt *retS = dyn_cast<ReturnStmt>(*SI))
TransRetainReleaseDealloc.cpp 193 if (ReturnStmt *RetS = dyn_cast<ReturnStmt>(nextStmt))
  /external/clang/lib/Analysis/
BodyFarm.cpp 79 ReturnStmt *makeReturn(const Expr *RetVal);
159 ReturnStmt *ASTMaker::makeReturn(const Expr *RetVal) {
160 return new (C) ReturnStmt(SourceLocation(), const_cast<Expr*>(RetVal),
ReachableCode.cpp 71 if (const ReturnStmt *RS = dyn_cast<ReturnStmt>(CS->getStmt())) {
  /external/clang/include/clang/Sema/
ScopeInfo.h 39 class ReturnStmt;
146 SmallVector<ReturnStmt*, 4> Returns;
  /external/clang/lib/Sema/
SemaLambda.cpp 559 static EnumDecl *findEnumForBlockReturn(ReturnStmt *ret) {
568 static EnumDecl *findCommonEnumForBlockReturns(ArrayRef<ReturnStmt*> returns) {
569 ArrayRef<ReturnStmt*>::iterator i = returns.begin(), e = returns.end();
589 static void adjustBlockReturnsToEnum(Sema &S, ArrayRef<ReturnStmt*> returns,
591 for (ArrayRef<ReturnStmt*>::iterator
593 ReturnStmt *ret = *i;
671 SmallVectorImpl<ReturnStmt*>::iterator I = CSI.Returns.begin(),
683 const ReturnStmt *RS = *I;
    [all...]
SemaStmt.cpp     [all...]
  /external/clang/include/clang/AST/
Stmt.h     [all...]
  /external/clang/lib/AST/
Stmt.cpp 887 // ReturnStmt
888 const Expr* ReturnStmt::getRetValue() const {
891 Expr* ReturnStmt::getRetValue() {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 184 /// \p ReferenceStmt must either be a ReturnStmt or \c NULL. Otherwise,
405 void VisitReturnStmt(const ReturnStmt *R, ExplodedNode *Pred,

Completed in 432 milliseconds

1 2 3