HomeSort by: relevance | last modified time | path
    Searched refs:RetExpr (Results 1 - 10 of 10) 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/
CGStmt.cpp 1166 SaveRetExprRAII(const Expr *RetExpr, CodeGenFunction &CGF)
1167 : OldRetExpr(CGF.RetExpr), CGF(CGF) {
1168 CGF.RetExpr = RetExpr;
1170 ~SaveRetExprRAII() { CGF.RetExpr = OldRetExpr; }
CGBlocks.cpp 1075 // block expression except when the block decl is in the list of RetExpr's
1079 auto *EWC = llvm::dyn_cast_or_null<ExprWithCleanups>(RetExpr);
CodeGenFunction.h 365 const Expr *RetExpr = nullptr;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 3807 Expr *&RetExpr,
3818 if (RetExpr && isa<InitListExpr>(RetExpr)) {
3821 Diag(RetExpr->getExprLoc(),
3824 << RetExpr->getSourceRange();
3837 if (RetExpr) {
3840 DeduceAutoResult DAR = DeduceAutoType(OrigResultType, RetExpr, Deduced);
3843 Diag(RetExpr->getExprLoc(), diag::err_auto_fn_deduction_failure)
3844 << OrigResultType.getType() << RetExpr->getType();
3852 Referencer.TraverseType(RetExpr->getType())
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
NeonEmitter.cpp 1347 std::string RetExpr;
1349 RetExpr = RetVar.getName() + " = ";
1351 OS << " " << RetExpr << S;
  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 1176 : Stmt(ReturnStmtClass), RetExpr(E) {
ExprConstant.cpp 5148 const Expr *RetExpr = cast<ReturnStmt>(S)->getRetValue();
5150 if (RetExpr && RetExpr->isValueDependent()) {
5151 EvaluateDependentExpr(RetExpr, Info);
5155 if (RetExpr &&
5157 ? EvaluateInPlace(Result.Value, Info, *Result.Slot, RetExpr)
5158 : Evaluate(Result.Value, Info, RetExpr)))
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 8493 Expr *&RetExpr, AutoType *AT);

Completed in 50 milliseconds