HomeSort by: relevance | last modified time | path
    Searched defs:RetExpr (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 571 auto RetExpr = S->getRetValue();
572 if (!RetExpr)
575 if (!RetExpr->getType()->isAnyPointerType())
618 getNullabilityAnnotation(lookThroughImplicitCasts(RetExpr)->getType());
632 OS << (RetExpr->getType()->isObjCObjectPointerType() ? "nil" : "Null");
637 RetExpr);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 2737 Stmt *RetExpr;
2764 Expr *getRetValue() { return reinterpret_cast<Expr *>(RetExpr); }
2765 const Expr *getRetValue() const { return reinterpret_cast<Expr *>(RetExpr); }
2766 void setRetValue(Expr *E) { RetExpr = reinterpret_cast<Stmt *>(E); }
2792 return RetExpr ? RetExpr->getEndLoc() : getReturnLoc();
2801 if (RetExpr)
2802 return child_range(&RetExpr, &RetExpr + 1);
2807 if (RetExpr)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.h 365 const Expr *RetExpr = nullptr;

Completed in 87 milliseconds